pom.xml

changeset 0
38775db5fdf5
child 22
5432f41c4988
equal deleted inserted replaced
-1:000000000000 0:38775db5fdf5
1 <?xml version="1.0" encoding="UTF-8"?>
2 <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">
3 <modelVersion>4.0.0</modelVersion>
4 <groupId>de.unixwork</groupId>
5 <artifactId>uwproj</artifactId>
6 <version>0.1</version>
7 <packaging>jar</packaging>
8 <properties>
9 <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
10 <maven.compiler.source>1.8</maven.compiler.source>
11 <maven.compiler.target>1.8</maven.compiler.target>
12 </properties>
13 <build>
14 <plugins>
15 <plugin>
16 <groupId>org.apache.maven.plugins</groupId>
17 <artifactId>maven-assembly-plugin</artifactId>
18 <executions>
19 <execution>
20 <phase>package</phase>
21 <goals>
22 <goal>single</goal>
23 </goals>
24 <configuration>
25 <archive>
26 <manifest>
27 <mainClass>
28 de.unixwork.uwproj.Main
29 </mainClass>
30 </manifest>
31 </archive>
32 <descriptorRefs>
33 <descriptorRef>jar-with-dependencies</descriptorRef>
34 </descriptorRefs>
35 </configuration>
36 </execution>
37 </executions>
38 </plugin>
39 </plugins>
40 </build>
41 <dependencies>
42 <dependency>
43 <groupId>org.apache.velocity</groupId>
44 <artifactId>velocity-engine-core</artifactId>
45 <version>2.0</version>
46 </dependency>
47 </dependencies>
48 </project>

mercurial