File: checkerReleasePom.xml

package info (click to toggle)
checker-framework-java 3.2.0%2Bds-3
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 23,104 kB
  • sloc: java: 145,916; xml: 839; sh: 518; makefile: 404; perl: 26
file content (67 lines) | stat: -rw-r--r-- 2,616 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
         xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">

    <modelVersion>4.0.0</modelVersion>
    <packaging>jar</packaging>

    <name>Checker Framework</name>
    <url>https://checkerframework.org</url>
    <description>
        The Checker Framework enhances Java's type system to
        make it more powerful and useful. This lets software developers
        detect and prevent errors in their Java programs.
        The Checker Framework includes compiler plug-ins ("checkers")
        that find bugs or verify their absence. It also permits you to
        write your own compiler plug-ins.
    </description>

    <groupId>org.checkerframework</groupId>
    <artifactId>checker</artifactId>

    <licenses>
        <license>
            <name>GNU General Public License, version 2 (GPL2), with the classpath exception</name>
            <url>http://www.gnu.org/software/classpath/license.html</url>
            <distribution>repo</distribution>
        </license>
    </licenses>

    <!-- The comments in the version number are used to do a text substitution. Don't remove them.
         See checker-framework/bin/poms/updateVersion.sh -->
    <version><!-- checker-framework-version -->3.2.0<!-- /checker-framework-version --></version>

    <scm>
        <url>https://github.com/typetools/checker-framework.git</url>
        <connection>https://github.com/typetools/checker-framework.git</connection>
    </scm>

    <developers>

        <developer>
            <id>mernst</id>
            <name>Michael Ernst</name>
            <email>mernst@cs.washington.edu</email>
            <url>https://homes.cs.washington.edu/~mernst/</url>
            <organization>University of Washington</organization>
            <organizationUrl>https://www.cs.washington.edu/</organizationUrl>
        </developer>

        <developer>
            <id>wmdietl</id>
            <name>Werner M. Dietl</name>
            <email>wdietl@uwaterloo.ca</email>
            <organization>University of Waterloo</organization>
            <organizationUrl>http://uwaterloo.ca/</organizationUrl>
        </developer>

        <developer>
            <id>smillst</id>
            <name>Suzanne Millstein</name>
            <email>smillst@cs.washington.edu</email>
            <organization>University of Washington</organization>
            <organizationUrl>https://www.cs.washington.edu/research/plse/</organizationUrl>
        </developer>

    </developers>

</project>