~hudson-ubuntu/+junk/sezpoz

« back to all changes in this revision

Viewing changes to pom.xml

  • Committer: James Page
  • Date: 2010-11-24 13:57:41 UTC
  • Revision ID: james.page@canonical.com-20101124135741-8ntgqh7ltywqy3x2
InitialĀ releaseĀ 

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
<?xml version="1.0" encoding="UTF-8"?>
 
2
<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/maven-v4_0_0.xsd">
 
3
    <modelVersion>4.0.0</modelVersion>
 
4
    <groupId>net.java.sezpoz</groupId>
 
5
    <artifactId>pom</artifactId>
 
6
    <packaging>pom</packaging>
 
7
    <version>1.8</version>
 
8
    <name>SezPoz</name>
 
9
    <url>https://sezpoz.dev.java.net/</url>
 
10
    <description>SezPoz is a lightweight and simple-to-learn library that lets you perform modular service lookups.</description>
 
11
    <developers>
 
12
        <developer>
 
13
            <email>jesse.glick@sun.com</email>
 
14
            <name>Jesse Glick</name>
 
15
            <id>jglick</id>
 
16
        </developer>
 
17
    </developers>
 
18
    <scm>
 
19
        <connection>scm:svn:https://sezpoz.dev.java.net/svn/sezpoz/tags/pom-1.8</connection>
 
20
        <url>https://sezpoz.dev.java.net/source/browse/sezpoz/tags/pom-1.8</url>
 
21
    </scm>
 
22
    <issueManagement>
 
23
        <system>Issuezilla</system>
 
24
        <url>https://sezpoz.dev.java.net/nonav/issues/</url>
 
25
    </issueManagement>
 
26
    <licenses>
 
27
        <license>
 
28
            <name>CDDL or GPL 2 with Classpath Exception</name>
 
29
            <url>http://www.netbeans.org/cddl-gplv2.html</url>
 
30
        </license>
 
31
    </licenses>
 
32
    <build>
 
33
        <pluginManagement>
 
34
            <plugins>
 
35
                <plugin>
 
36
                    <artifactId>maven-compiler-plugin</artifactId>
 
37
                    <version>2.3.1</version>
 
38
                    <configuration>
 
39
                        <source>1.5</source>
 
40
                        <target>1.5</target>
 
41
                    </configuration>
 
42
                </plugin>
 
43
                <plugin>
 
44
                    <artifactId>maven-release-plugin</artifactId>
 
45
                    <version>2.0</version>
 
46
                </plugin>
 
47
                <plugin>
 
48
                    <artifactId>maven-jar-plugin</artifactId>
 
49
                    <version>2.3.1</version>
 
50
                </plugin>
 
51
                <plugin>
 
52
                    <artifactId>maven-javadoc-plugin</artifactId>
 
53
                    <version>2.7</version>
 
54
                </plugin>
 
55
                <plugin>
 
56
                    <artifactId>maven-resources-plugin</artifactId>
 
57
                    <version>2.4.3</version>
 
58
                </plugin>
 
59
                <plugin>
 
60
                    <artifactId>maven-surefire-plugin</artifactId>
 
61
                    <version>2.5</version>
 
62
                </plugin>
 
63
                <plugin>
 
64
                    <artifactId>maven-clean-plugin</artifactId>
 
65
                    <version>2.4.1</version>
 
66
                </plugin>
 
67
                <plugin>
 
68
                    <artifactId>maven-deploy-plugin</artifactId>
 
69
                    <version>2.5</version>
 
70
                </plugin>
 
71
                <plugin>
 
72
                    <artifactId>maven-install-plugin</artifactId>
 
73
                    <version>2.3.1</version>
 
74
                </plugin>
 
75
                <plugin>
 
76
                    <artifactId>maven-site-plugin</artifactId>
 
77
                    <version>2.1.1</version>
 
78
                </plugin>
 
79
                <plugin>
 
80
                    <groupId>org.codehaus.mojo</groupId>
 
81
                    <artifactId>exec-maven-plugin</artifactId>
 
82
                    <version>1.2</version>
 
83
                </plugin>
 
84
            </plugins>
 
85
        </pluginManagement>
 
86
        <extensions>
 
87
            <extension>
 
88
                <groupId>org.jvnet.wagon-svn</groupId>
 
89
                <artifactId>wagon-svn</artifactId>
 
90
                <version>1.9</version>
 
91
            </extension>
 
92
        </extensions>
 
93
    </build>
 
94
    <reporting>
 
95
        <plugins>
 
96
            <plugin>
 
97
                <artifactId>maven-javadoc-plugin</artifactId>
 
98
                <version>2.7</version>
 
99
            </plugin>
 
100
        </plugins>
 
101
    </reporting>
 
102
    <properties>
 
103
        <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
 
104
    </properties>
 
105
    <modules>
 
106
        <module>sezpoz</module>
 
107
        <module>perftest</module>
 
108
        <module>demo</module>
 
109
    </modules>
 
110
    <distributionManagement>
 
111
        <repository>
 
112
            <id>java.net-m2-repository</id>
 
113
            <url>java-net:/maven2-repository/trunk/repository/</url>
 
114
        </repository>
 
115
    </distributionManagement>
 
116
    <repositories>
 
117
        <repository>
 
118
            <id>maven2-repository.dev.java.net</id>
 
119
            <name>Java.net Repository for Maven</name>
 
120
            <url>http://download.java.net/maven/2/</url>
 
121
        </repository>
 
122
    </repositories>
 
123
</project>