Skip to content

Commit 1611c00

Browse files
committed
move gui sources to a separate maven module
1 parent edba5bd commit 1611c00

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

75 files changed

+62
-25
lines changed

gui/pom.xml

+58
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,58 @@
1+
<?xml version="1.0" encoding="UTF-8"?>
2+
<project
3+
xmlns="http://maven.apache.org/POM/4.0.0"
4+
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
5+
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
6+
7+
<modelVersion>4.0.0</modelVersion>
8+
9+
<parent>
10+
<groupId>eu.alicebob</groupId>
11+
<artifactId>usbscope50</artifactId>
12+
<version>1.0.0</version>
13+
</parent>
14+
15+
<artifactId>usbscope50-gui</artifactId>
16+
17+
<properties>
18+
<java.version>1.8</java.version>
19+
<maven.compiler.target>1.8</maven.compiler.target>
20+
<maven.compiler.source>1.8</maven.compiler.source>
21+
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
22+
</properties>
23+
24+
<dependencies>
25+
<dependency>
26+
<groupId>com.lowagie</groupId>
27+
<artifactId>itext</artifactId>
28+
<version>0.99</version>
29+
</dependency>
30+
<dependency>
31+
<groupId>org.jfree</groupId>
32+
<artifactId>jfreechart</artifactId>
33+
<version>1.0.19</version>
34+
</dependency>
35+
<dependency>
36+
<groupId>javax.help</groupId>
37+
<artifactId>javahelp</artifactId>
38+
<version>2.0.05</version>
39+
</dependency>
40+
</dependencies>
41+
42+
<build>
43+
<plugins>
44+
<plugin>
45+
<groupId>org.apache.maven.plugins</groupId>
46+
<artifactId>maven-jar-plugin</artifactId>
47+
<configuration>
48+
<archive>
49+
<manifest>
50+
<mainClass>usbscope50software.USBFamily_Main</mainClass>
51+
</manifest>
52+
</archive>
53+
</configuration>
54+
</plugin>
55+
</plugins>
56+
</build>
57+
58+
</project>

pom.xml

+4-25
Original file line numberDiff line numberDiff line change
@@ -8,35 +8,14 @@
88
<groupId>eu.alicebob</groupId>
99
<artifactId>usbscope50</artifactId>
1010
<version>1.0.0</version>
11+
<packaging>pom</packaging>
1112

1213
<properties>
13-
<java.version>1.8</java.version>
14-
<maven.compiler.target>1.8</maven.compiler.target>
15-
<maven.compiler.source>1.8</maven.compiler.source>
1614
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
1715
</properties>
1816

19-
<dependencies>
20-
<dependency>
21-
<groupId>com.lowagie</groupId>
22-
<artifactId>itext</artifactId>
23-
<version>0.99</version>
24-
</dependency>
25-
<dependency>
26-
<groupId>org.jfree</groupId>
27-
<artifactId>jfreechart</artifactId>
28-
<version>1.0.19</version>
29-
</dependency>
30-
<dependency>
31-
<groupId>javax.help</groupId>
32-
<artifactId>javahelp</artifactId>
33-
<version>2.0.05</version>
34-
</dependency>
35-
</dependencies>
36-
37-
<build>
38-
<plugins>
39-
</plugins>
40-
</build>
17+
<modules>
18+
<module>gui</module>
19+
</modules>
4120

4221
</project>

0 commit comments

Comments
 (0)