-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathpom.xml
132 lines (122 loc) · 3.76 KB
/
pom.xml
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
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
<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">
<modelVersion>4.0.0</modelVersion>
<groupId>net.java.balloontip</groupId>
<artifactId>balloontip-parent</artifactId>
<packaging>pom</packaging>
<!-- Retrieve java.net repository info from parent POM -->
<parent>
<groupId>net.java</groupId>
<artifactId>jvnet-parent</artifactId>
<version>1</version>
</parent>
<modules>
<module>balloontip</module>
<module>balloontip-examples</module>
</modules>
<!-- Project info -->
<name>Balloon tip project</name>
<version>1.2.5-SNAPSHOT</version>
<description>Provides balloon tips for use in Java Swing applications.</description>
<url>https://balloontip.dev.java.net/</url>
<licenses>
<license>
<name>3-Clause BSD License</name>
<url>http://www.opensource.org/licenses/BSD-3-Clause</url>
</license>
</licenses>
<inceptionYear>2007</inceptionYear>
<developers>
<developer>
<id>nferno</id>
<name>Tim Molderez</name>
<email>nferno@dev.java.net</email>
</developer>
<developer>
<id>bernhard_pauler</id>
<name>Bernhard Pauler</name>
<email>bernhard_pauler@dev.java.net</email>
</developer>
</developers>
<!-- Environment settings -->
<issueManagement>
<system>JIRA</system>
<url>http://java.net/jira/browse/BALLOONTIP</url>
</issueManagement>
<scm>
<connection>scm:svn:http://svn.java.net/svn/balloontip~svn/trunk</connection>
<developerConnection>scm:svn:https://svn.java.net/svn/balloontip~svn/trunk</developerConnection>
<url>http://java.net/projects/balloontip/sources/svn/show/trunk</url>
</scm>
<!-- Profile-specific settings -->
<profiles>
<profile>
<id>release-sign-artifacts</id>
<activation>
<property>
<name>performRelease</name>
<value>true</value>
</property>
</activation>
<build>
<plugins>
<!-- When releasing, sign artifacts with GPG key -->
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-gpg-plugin</artifactId>
<version>1.1</version>
<executions>
<execution>
<id>sign-artifacts</id>
<phase>verify</phase>
<goals>
<goal>sign</goal>
</goals>
</execution>
</executions>
</plugin>
</plugins>
</build>
</profile>
</profiles>
<!-- Build settings -->
<build>
<plugins>
<!-- Compile Balloon tip for Java 1.5 -->
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<configuration>
<source>1.5</source>
<target>1.5</target>
</configuration>
</plugin>
<!-- Set UTF-8 encoding for resources -->
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-resources-plugin</artifactId>
<configuration>
<encoding>UTF-8</encoding>
</configuration>
</plugin>
<!-- Place the project's URL at the bottom of javadoc pages -->
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-javadoc-plugin</artifactId>
<configuration>
<bottom><![CDATA[<a href="${project.url}">${project.url}</a>]]></bottom>
</configuration>
</plugin>
<!-- Import the assembly descriptor -->
<plugin>
<artifactId>maven-assembly-plugin</artifactId>
<configuration>
<descriptors>
<descriptor>distribution/assembly.xml</descriptor>
</descriptors>
<finalName>balloontip_${project.version}</finalName>
<appendAssemblyId>false</appendAssemblyId>
</configuration>
</plugin>
</plugins>
</build>
</project>