|
1 |
| -<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/xsd/maven-4.0.0.xsd"> |
2 |
| - <modelVersion>4.0.0</modelVersion> |
3 |
| - <groupId>deoldsax</groupId> |
4 |
| - <artifactId>Ilias</artifactId> |
5 |
| - <version>v0.5.0</version> |
6 |
| - |
7 |
| - <properties> |
8 |
| - <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> |
9 |
| - </properties> |
10 |
| - |
11 |
| - <organization> |
12 |
| - <name>DeOldSax</name> |
13 |
| - </organization> |
14 |
| - |
15 |
| - <dependencies> |
16 |
| - |
17 |
| - <dependency> |
18 |
| - <groupId>junit</groupId> |
19 |
| - <artifactId>junit</artifactId> |
20 |
| - <version>4.10</version> |
21 |
| - </dependency> |
22 |
| - |
23 |
| - <dependency> |
24 |
| - <groupId>log4j</groupId> |
25 |
| - <artifactId>log4j</artifactId> |
26 |
| - <version>1.2.17</version> |
27 |
| - </dependency> |
28 |
| - |
29 |
| - <dependency> |
30 |
| - <groupId>org.jsoup</groupId> |
31 |
| - <artifactId>jsoup</artifactId> |
32 |
| - <version>1.7.2</version> |
33 |
| - </dependency> |
34 |
| - |
35 |
| - <dependency> |
36 |
| - <groupId>org.apache.httpcomponents</groupId> |
37 |
| - <artifactId>httpcore</artifactId> |
38 |
| - <version>4.2.4</version> |
39 |
| - </dependency> |
40 |
| - |
41 |
| - <dependency> |
42 |
| - <groupId>org.apache.httpcomponents</groupId> |
43 |
| - <artifactId>httpclient</artifactId> |
44 |
| - <version>4.2.5</version> |
45 |
| - </dependency> |
46 |
| - |
47 |
| - <dependency> |
48 |
| - <groupId>commons-logging</groupId> |
49 |
| - <artifactId>commons-logging</artifactId> |
50 |
| - <version>1.1.1</version> |
51 |
| - </dependency> |
52 |
| - |
53 |
| - <dependency> |
54 |
| - <groupId>org.controlsfx</groupId> |
55 |
| - <artifactId>controlsfx</artifactId> |
56 |
| - <version>8.20.8</version> |
57 |
| - </dependency> |
58 |
| - |
59 |
| - </dependencies> |
60 |
| - |
61 |
| - <build> |
62 |
| - <plugins> |
63 |
| - |
64 |
| - <plugin> |
65 |
| - <artifactId>maven-assembly-plugin</artifactId> |
66 |
| - <executions> |
67 |
| - <execution> |
68 |
| - <phase>package</phase> |
69 |
| - <goals> |
70 |
| - <goal>single</goal> |
71 |
| - </goals> |
72 |
| - <configuration> |
73 |
| - <descriptorRefs> |
74 |
| - <descriptorRef>jar-with-dependencies</descriptorRef> |
75 |
| - </descriptorRefs> |
76 |
| - <archive> |
77 |
| - <manifest> |
78 |
| - <mainClass>view.Dashboard</mainClass> |
79 |
| - </manifest> |
80 |
| - </archive> |
81 |
| - </configuration> |
82 |
| - </execution> |
83 |
| - </executions> |
84 |
| - </plugin> |
85 |
| - |
86 |
| - <plugin> |
87 |
| - <artifactId>maven-antrun-plugin</artifactId> |
88 |
| - <version>1.7</version> |
89 |
| - <executions> |
90 |
| - <execution> |
91 |
| - <phase>install</phase> |
92 |
| - <goals> |
93 |
| - <goal>run</goal> |
94 |
| - </goals> |
95 |
| - <configuration> |
96 |
| - <tasks> |
97 |
| - <copy file="target/Ilias-${project.version}-jar-with-dependencies.jar" |
98 |
| - tofile="release/IliasDownloaderTool-${project.version}/Ilias-${project.version}.jar"> |
99 |
| - </copy> |
100 |
| - </tasks> |
101 |
| - </configuration> |
102 |
| - </execution> |
103 |
| - </executions> |
104 |
| - </plugin> |
105 |
| - <plugin> |
106 |
| - <groupId>org.apache.maven.plugins</groupId> |
107 |
| - <artifactId>maven-compiler-plugin</artifactId> |
108 |
| - <configuration> |
109 |
| - <source>1.8</source> |
110 |
| - <target>1.8</target> |
111 |
| - </configuration> |
112 |
| - </plugin> |
113 |
| - |
114 |
| - </plugins> |
115 |
| - </build> |
116 |
| -</project> |
| 1 | +<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/xsd/maven-4.0.0.xsd"> |
| 2 | + <modelVersion>4.0.0</modelVersion> |
| 3 | + <groupId>deoldsax</groupId> |
| 4 | + <artifactId>Ilias</artifactId> |
| 5 | + <version>v0.6.0</version> |
| 6 | + |
| 7 | + <properties> |
| 8 | + <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> |
| 9 | + </properties> |
| 10 | + |
| 11 | + <organization> |
| 12 | + <name>DeOldSax</name> |
| 13 | + </organization> |
| 14 | + |
| 15 | + <dependencies> |
| 16 | + |
| 17 | + <dependency> |
| 18 | + <groupId>junit</groupId> |
| 19 | + <artifactId>junit</artifactId> |
| 20 | + <version>4.10</version> |
| 21 | + </dependency> |
| 22 | + |
| 23 | + <dependency> |
| 24 | + <groupId>log4j</groupId> |
| 25 | + <artifactId>log4j</artifactId> |
| 26 | + <version>1.2.17</version> |
| 27 | + </dependency> |
| 28 | + |
| 29 | + <dependency> |
| 30 | + <groupId>org.jsoup</groupId> |
| 31 | + <artifactId>jsoup</artifactId> |
| 32 | + <version>1.7.2</version> |
| 33 | + </dependency> |
| 34 | + |
| 35 | + <dependency> |
| 36 | + <groupId>org.apache.httpcomponents</groupId> |
| 37 | + <artifactId>httpcore</artifactId> |
| 38 | + <version>4.2.4</version> |
| 39 | + </dependency> |
| 40 | + |
| 41 | + <dependency> |
| 42 | + <groupId>org.apache.httpcomponents</groupId> |
| 43 | + <artifactId>httpclient</artifactId> |
| 44 | + <version>4.2.5</version> |
| 45 | + </dependency> |
| 46 | + |
| 47 | + <dependency> |
| 48 | + <groupId>commons-logging</groupId> |
| 49 | + <artifactId>commons-logging</artifactId> |
| 50 | + <version>1.1.1</version> |
| 51 | + </dependency> |
| 52 | + |
| 53 | + <dependency> |
| 54 | + <groupId>org.controlsfx</groupId> |
| 55 | + <artifactId>controlsfx</artifactId> |
| 56 | + <version>8.20.8</version> |
| 57 | + </dependency> |
| 58 | + |
| 59 | + </dependencies> |
| 60 | + |
| 61 | + <build> |
| 62 | + <plugins> |
| 63 | + |
| 64 | + <plugin> |
| 65 | + <artifactId>maven-assembly-plugin</artifactId> |
| 66 | + <executions> |
| 67 | + <execution> |
| 68 | + <phase>package</phase> |
| 69 | + <goals> |
| 70 | + <goal>single</goal> |
| 71 | + </goals> |
| 72 | + <configuration> |
| 73 | + <descriptorRefs> |
| 74 | + <descriptorRef>jar-with-dependencies</descriptorRef> |
| 75 | + </descriptorRefs> |
| 76 | + <archive> |
| 77 | + <manifest> |
| 78 | + <mainClass>view.Dashboard</mainClass> |
| 79 | + </manifest> |
| 80 | + </archive> |
| 81 | + </configuration> |
| 82 | + </execution> |
| 83 | + </executions> |
| 84 | + </plugin> |
| 85 | + |
| 86 | + <plugin> |
| 87 | + <artifactId>maven-antrun-plugin</artifactId> |
| 88 | + <version>1.7</version> |
| 89 | + <executions> |
| 90 | + <execution> |
| 91 | + <phase>install</phase> |
| 92 | + <goals> |
| 93 | + <goal>run</goal> |
| 94 | + </goals> |
| 95 | + <configuration> |
| 96 | + <tasks> |
| 97 | + <copy file="target/Ilias-${project.version}-jar-with-dependencies.jar" |
| 98 | + tofile="release/IliasDownloaderTool-${project.version}/Ilias-${project.version}.jar"> |
| 99 | + </copy> |
| 100 | + </tasks> |
| 101 | + </configuration> |
| 102 | + </execution> |
| 103 | + </executions> |
| 104 | + </plugin> |
| 105 | + <plugin> |
| 106 | + <groupId>org.apache.maven.plugins</groupId> |
| 107 | + <artifactId>maven-compiler-plugin</artifactId> |
| 108 | + <configuration> |
| 109 | + <source>1.8</source> |
| 110 | + <target>1.8</target> |
| 111 | + </configuration> |
| 112 | + </plugin> |
| 113 | + |
| 114 | + </plugins> |
| 115 | + </build> |
| 116 | +</project> |
0 commit comments