-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpom.xml
154 lines (142 loc) · 5.97 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
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
<?xml version="1.0" encoding="UTF-8"?>
<!--
COMMON DEVELOPMENT AND DISTRIBUTION LICENSE (CDDL) Notice
The contents of this file are subject to the COMMON DEVELOPMENT AND DISTRIBUTION LICENSE (CDDL)
Version 1.0 (the "License"); you may not use this file except in
compliance with the License. A copy of the License is available at
http://www.opensource.org/licenses/cddl1.txt
The Original Code is SoftSmithy Utility Library. The Initial Developer of the
Original Code is Florian Brunner (Sourceforge.net user: puce). All Rights Reserved.
Contributor(s): .
-->
<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>
<parent>
<groupId>org.softsmithy.lib</groupId>
<artifactId>softsmithy-lib-parent</artifactId>
<version>3.0.0-SNAPSHOT</version>
<relativePath>softsmithy-lib-parent/pom.xml</relativePath>
</parent>
<artifactId>softsmithy-lib</artifactId>
<packaging>pom</packaging>
<name>SoftSmithy Utility Library</name>
<description>A Java utility library.</description>
<inceptionYear>2002</inceptionYear>
<!-- required for Javadoc (apidocs) linking -->
<url>https://www.softsmithy.org/softsmithy-lib/lib/${project.version}/docs/site</url>
<scm>
<connection>${scm.connection}</connection>
<developerConnection>${scm.developerConnection}</developerConnection>
<url>${scm.url}</url>
<tag>HEAD</tag>
</scm>
<distributionManagement>
<site>
<id>github</id>
<url>${distributionManagement.parent.url}/</url>
</site>
</distributionManagement>
<properties>
<scm.connection>${scm.parent.connection}</scm.connection>
<scm.developerConnection>${scm.parent.developerConnection}</scm.developerConnection>
<scm.url>${scm.parent.url}</scm.url>
</properties>
<modules>
<module>softsmithy-lib-parent</module>
<module>softsmithy-lib-core</module>
<module>softsmithy-lib-compiler</module>
<module>softsmithy-lib-beans</module>
<module>softsmithy-lib-awt</module>
<module>softsmithy-lib-swing</module>
<module>softsmithy-lib-swing-customizer</module>
<module>softsmithy-lib-persistence</module>
<module>softsmithy-lib-time</module>
<module>softsmithy-lib-samples</module>
<module>softsmithy-devlib</module>
<module>softsmithy-lib-docs</module>
</modules>
<dependencyManagement>
<dependencies>
<dependency>
<groupId>${project.groupId}</groupId>
<artifactId>softsmithy-lib-core</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>${project.groupId}</groupId>
<artifactId>softsmithy-lib-compiler</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>${project.groupId}</groupId>
<artifactId>softsmithy-lib-beans</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>${project.groupId}</groupId>
<artifactId>softsmithy-lib-awt</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>${project.groupId}</groupId>
<artifactId>softsmithy-lib-swing</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>${project.groupId}</groupId>
<artifactId>softsmithy-lib-swing-customizer</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>${project.groupId}</groupId>
<artifactId>softsmithy-lib-persistence</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>${project.groupId}</groupId>
<artifactId>softsmithy-lib-time</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>org.softsmithy.devlib</groupId>
<artifactId>softsmithy-devlib</artifactId>
<version>${project.version}</version>
<type>pom</type>
<scope>import</scope>
</dependency>
</dependencies>
</dependencyManagement>
<profiles>
<profile>
<id>release-profile</id>
<activation>
<property>
<name>performRelease</name>
<value>true</value>
</property>
</activation>
<build>
<plugins>
<plugin>
<artifactId>maven-assembly-plugin</artifactId>
<executions>
<execution>
<id>dist-assembly</id>
<phase>package</phase>
<goals>
<goal>single</goal>
</goals>
<configuration>
<descriptors>
<descriptor>src/main/assembly/dist.xml</descriptor>
</descriptors>
<attach>false</attach>
</configuration>
</execution>
</executions>
</plugin>
</plugins>
</build>
</profile>
</profiles>
</project>