forked from Torridity/dsworkbench
-
Notifications
You must be signed in to change notification settings - Fork 3
/
pom.xml
238 lines (231 loc) · 9.05 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
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
<?xml version="1.0" encoding="UTF-8"?>
<project xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://maven.apache.org/POM/4.0.0"
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>de.tor.dswb</groupId>
<artifactId>dsworkbench</artifactId>
<name>DSWorkbench</name>
<packaging>pom</packaging>
<version>${revision}</version>
<description>
Parent project for DS Workbench. The project contains two modules: core and plugins which are put together
during the assembly process.
Furthermore, all dependencies are managed by this parent project.
</description>
<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<release.version>${project.version}</release.version>
<revision>4.3.3</revision>
</properties>
<repositories>
<repository>
<id>localRepository</id>
<url>file://${basedir}/lib/</url>
</repository>
<repository>
<id>central</id>
<url>https://repo1.maven.org/maven2</url>
</repository>
</repositories>
<dependencies>
<dependency>
<groupId>de.tor</groupId>
<artifactId>help</artifactId>
<version>1.0</version>
</dependency>
<dependency>
<groupId>org.apache.logging.log4j</groupId>
<artifactId>log4j-core</artifactId>
<version>2.17.2</version>
</dependency>
<dependency>
<groupId>org.apache.logging.log4j</groupId>
<artifactId>log4j-api</artifactId>
<version>2.17.2</version>
</dependency>
<dependency><!--dependency for log4j-->
<groupId>xerces</groupId>
<artifactId>xercesImpl</artifactId>
<version>2.12.2</version>
</dependency>
<dependency>
<groupId>org.apache.commons</groupId>
<artifactId>commons-collections4</artifactId>
<version>4.4</version>
</dependency>
<dependency>
<groupId>org.apache.commons</groupId>
<artifactId>commons-lang3</artifactId>
<version>3.12.0</version>
</dependency>
<dependency>
<groupId>org.apache.commons</groupId>
<artifactId>commons-configuration2</artifactId>
<version>2.8.0</version>
</dependency>
<dependency>
<groupId>commons-io</groupId>
<artifactId>commons-io</artifactId>
<version>2.11.0</version>
</dependency>
<dependency>
<groupId>org.swinglabs.swingx</groupId>
<artifactId>swingx-core</artifactId>
<version>1.6.5-1</version>
</dependency>
<dependency>
<groupId>org.jdom</groupId>
<artifactId>jdom2</artifactId>
<version>2.0.6.1</version>
</dependency>
<dependency>
<groupId>netbeans</groupId>
<artifactId>wizard</artifactId>
<version>1.0</version>
</dependency>
<dependency>
<groupId>php-parser</groupId>
<artifactId>php-parser</artifactId>
<version>0.3</version>
</dependency>
<dependency>
<groupId>org.json</groupId>
<artifactId>json</artifactId>
<version>20220320</version>
</dependency>
<dependency>
<groupId>com.sun.woodstock.dependlibs</groupId>
<artifactId>jhall</artifactId>
<version>2.0</version>
</dependency>
<dependency>
<groupId>flamingo</groupId>
<artifactId>flamingo</artifactId>
<version>1.0</version>
</dependency>
<dependency>
<groupId>org.pushingpixels</groupId>
<artifactId>trident</artifactId>
<version>1.3</version>
</dependency>
<dependency>
<groupId>bislider</groupId>
<artifactId>bislider</artifactId>
<version>1.0</version>
</dependency>
<dependency>
<groupId>colorchooser</groupId>
<artifactId>colorchooser</artifactId>
<version>1.0</version>
</dependency>
<dependency>
<groupId>org.jfree</groupId>
<artifactId>jfreechart</artifactId>
<version>1.5.3</version>
</dependency>
</dependencies>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<version>2.5.1</version>
<configuration>
<source>1.8</source>
<target>1.8</target>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-jar-plugin</artifactId>
<version>2.1</version>
<configuration>
<archive>
<manifest>
<addDefaultImplementationEntries>true</addDefaultImplementationEntries>
</manifest>
<manifestEntries>
<Implementation-Build>${release.version}</Implementation-Build>
</manifestEntries>
</archive>
</configuration>
</plugin>
<plugin>
<artifactId>maven-assembly-plugin</artifactId>
<version>2.5.5</version>
<configuration>
<descriptors>
<descriptor>src/main/assemble/distribution.xml</descriptor>
</descriptors>
<outputDirectory>release</outputDirectory>
<appendAssemblyId>false</appendAssemblyId>
<finalName>DSWorkbench-${release.version}</finalName>
</configuration>
</plugin>
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>appassembler-maven-plugin</artifactId>
<version>1.8</version>
<configuration>
<!-- set alternative assemble directory -->
<assembleDirectory>${project.build.directory}</assembleDirectory>
<!-- alternative name used instead of 'repo' -->
<repositoryName>lib</repositoryName>
<!-- add the root dir to the classpath which is
useful to find e.g. the graphics. -->
<configurationDirectory>.</configurationDirectory>
<!-- allows the project jar to be placed first in classpath.
This is important due to configuration files which may
occur more than once. -->
<endorsedDir>lib</endorsedDir>
<!--suppress MavenModelInspection -->
<!-- This solved my problem configuring the logback. -->
<extraJvmArguments>-Dlog4j.configuration=@BASEDIR@/log4j.xml -Xmx512m</extraJvmArguments>
<platforms>
<platform>windows</platform>
<platform>unix</platform>
</platforms>
<repositoryLayout>flat</repositoryLayout>
<useWildcardClassPath>true</useWildcardClassPath>
<programs>
<program>
<mainClass>de.tor.tribes.ui.windows.DSWorkbenchSplashScreen</mainClass>
<id>DSWorkbench</id>
</program>
</programs>
</configuration>
<executions>
<execution>
<id>package-executable</id>
<goals>
<goal>assemble</goal>
</goals>
<phase>package</phase>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-checkstyle-plugin</artifactId>
<version>2.17</version>
<dependencies>
<dependency>
<groupId>com.puppycrawl.tools</groupId>
<artifactId>checkstyle</artifactId>
<version>[8.18,)</version>
</dependency>
</dependencies>
<configuration>
<configLocation>checkstyle.xml</configLocation>
</configuration>
</plugin>
</plugins>
</build>
<scm>
<developerConnection>https://github.com/Torridity/dsworkbench.git</developerConnection>
</scm>
<modules>
<module>Core</module>
<module>ParserPlugin</module>
</modules>
</project>