pom.xml

changeset 22
5432f41c4988
parent 0
38775db5fdf5
child 28
98a259eabbf2
equal deleted inserted replaced
21:34ebff7ddd43 22:5432f41c4988
1 <?xml version="1.0" encoding="UTF-8"?> 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"> 2 <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
3 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 <modelVersion>4.0.0</modelVersion>
4 <groupId>de.unixwork</groupId> 5 <groupId>de.unixwork</groupId>
5 <artifactId>uwproj</artifactId> 6 <artifactId>uwproj</artifactId>
6 <version>0.1</version> 7 <version>0.1</version>
7 <packaging>jar</packaging> 8 <packaging>jar</packaging>
8 <properties> 9 <properties>
9 <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> 10 <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> 11 </properties>
12 <dependencies>
13 <dependency>
14 <groupId>org.apache.velocity</groupId>
15 <artifactId>velocity-engine-core</artifactId>
16 <version>2.3</version>
17 </dependency>
18 </dependencies>
13 <build> 19 <build>
14 <plugins> 20 <plugins>
15 <plugin> 21 <plugin>
16 <groupId>org.apache.maven.plugins</groupId> 22 <groupId>org.apache.maven.plugins</groupId>
23 <artifactId>maven-compiler-plugin</artifactId>
24 <version>3.11.0</version>
25 <configuration>
26 <release>11</release>
27 </configuration>
28 </plugin>
29 <plugin>
30 <groupId>org.apache.maven.plugins</groupId>
17 <artifactId>maven-assembly-plugin</artifactId> 31 <artifactId>maven-assembly-plugin</artifactId>
32 <version>3.6.0</version>
18 <executions> 33 <executions>
19 <execution> 34 <execution>
20 <phase>package</phase> 35 <phase>package</phase>
21 <goals> 36 <goals>
22 <goal>single</goal> 37 <goal>single</goal>
23 </goals> 38 </goals>
24 <configuration> 39 <configuration>
25 <archive> 40 <archive>
26 <manifest> 41 <manifest>
27 <mainClass> 42 <mainClass>
28 de.unixwork.uwproj.Main 43 de.unixwork.uwproj.Main
29 </mainClass> 44 </mainClass>
30 </manifest> 45 </manifest>
31 </archive> 46 </archive>
32 <descriptorRefs> 47 <descriptorRefs>
33 <descriptorRef>jar-with-dependencies</descriptorRef> 48 <descriptorRef>jar-with-dependencies</descriptorRef>
34 </descriptorRefs> 49 </descriptorRefs>
35 </configuration> 50 </configuration>
36 </execution> 51 </execution>
37 </executions> 52 </executions>
38 </plugin> 53 </plugin>
54 <plugin>
55 <groupId>org.apache.maven.plugins</groupId>
56 <artifactId>maven-enforcer-plugin</artifactId>
57 <version>3.3.0</version>
58 <executions>
59 <execution>
60 <id>enforce-maven</id>
61 <goals>
62 <goal>enforce</goal>
63 </goals>
64 <configuration>
65 <rules>
66 <requireMavenVersion>
67 <version>3.2.5</version>
68 </requireMavenVersion>
69 </rules>
70 </configuration>
71 </execution>
72 </executions>
73 </plugin>
74 <plugin>
75 <groupId>org.apache.maven.plugins</groupId>
76 <artifactId>maven-site-plugin</artifactId>
77 <version>3.12.1</version>
78 </plugin>
79 <plugin>
80 <groupId>org.apache.maven.plugins</groupId>
81 <artifactId>maven-project-info-reports-plugin</artifactId>
82 <version>3.4.5</version>
83 </plugin>
84 <plugin>
85 <groupId>org.codehaus.mojo</groupId>
86 <artifactId>versions-maven-plugin</artifactId>
87 <version>2.16.0</version>
88 </plugin>
39 </plugins> 89 </plugins>
40 </build> 90 </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> 91 </project>

mercurial