106:7aa59deee50c | 107:b7d6b31e381d |
---|---|
4 <modelVersion>4.0.0</modelVersion> | 4 <modelVersion>4.0.0</modelVersion> |
5 <groupId>de.unixwork</groupId> | 5 <groupId>de.unixwork</groupId> |
6 <artifactId>uwproj</artifactId> | 6 <artifactId>uwproj</artifactId> |
7 <version>0.2.0-SNAPSHOT</version> | 7 <version>0.2.0-SNAPSHOT</version> |
8 <packaging>jar</packaging> | 8 <packaging>jar</packaging> |
9 <description> | |
10 Makefile configuration tool. | |
11 </description> | |
12 <developers> | |
13 <developer> | |
14 <name>Olaf Wintermann</name> | |
15 <email>olaf.wintermann@gmail.com</email> | |
16 </developer> | |
17 </developers> | |
18 <contributors> | |
19 <contributor> | |
20 <name>Mike Becker</name> | |
21 <email>universe@uap-core.de</email> | |
22 </contributor> | |
23 </contributors> | |
24 <licenses> | |
25 <license> | |
26 <name>BSD-2-Clause</name> | |
27 <url>https://code.unixwork.de/hg/uwproj/file/tip/LICENSE.txt</url> | |
28 <distribution>manual</distribution> | |
29 </license> | |
30 </licenses> | |
9 <properties> | 31 <properties> |
10 <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> | 32 <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> |
11 </properties> | 33 </properties> |
12 <dependencies> | 34 <dependencies> |
13 <dependency> | 35 <dependency> |
22 so do NOT upgrade this version unless | 44 so do NOT upgrade this version unless |
23 velocity does! | 45 velocity does! |
24 --> | 46 --> |
25 <version>1.7.36</version> | 47 <version>1.7.36</version> |
26 </dependency> | 48 </dependency> |
27 <dependency> | |
28 <groupId>org.junit.jupiter</groupId> | |
29 <artifactId>junit-jupiter</artifactId> | |
30 <version>5.10.0</version> | |
31 <scope>test</scope> | |
32 </dependency> | |
33 </dependencies> | 49 </dependencies> |
34 <build> | 50 <build> |
35 <resources> | 51 <resources> |
36 <resource> | 52 <resource> |
37 <directory>dist.src</directory> | 53 <directory>dist.src</directory> |
40 </resource> | 56 </resource> |
41 <resource> | 57 <resource> |
42 <directory>src/main/resources</directory> | 58 <directory>src/main/resources</directory> |
43 </resource> | 59 </resource> |
44 </resources> | 60 </resources> |
61 <pluginManagement> | |
62 <plugins> | |
63 <plugin> | |
64 <groupId>org.apache.maven.plugins</groupId> | |
65 <artifactId>maven-dependency-plugin</artifactId> | |
66 <version>3.6.1</version> | |
67 </plugin> | |
68 </plugins> | |
69 </pluginManagement> | |
45 <plugins> | 70 <plugins> |
46 <plugin> | 71 <plugin> |
47 <groupId>org.apache.maven.plugins</groupId> | 72 <groupId>org.apache.maven.plugins</groupId> |
73 <artifactId>maven-clean-plugin</artifactId> | |
74 <version>3.3.2</version> | |
75 </plugin> | |
76 <plugin> | |
77 <groupId>org.apache.maven.plugins</groupId> | |
48 <artifactId>maven-compiler-plugin</artifactId> | 78 <artifactId>maven-compiler-plugin</artifactId> |
49 <version>3.11.0</version> | 79 <version>3.12.1</version> |
50 <configuration> | 80 <configuration> |
51 <release>17</release> | 81 <release>17</release> |
52 </configuration> | 82 </configuration> |
53 </plugin> | 83 </plugin> |
54 <plugin> | 84 <plugin> |
77 </executions> | 107 </executions> |
78 </plugin> | 108 </plugin> |
79 <plugin> | 109 <plugin> |
80 <groupId>org.apache.maven.plugins</groupId> | 110 <groupId>org.apache.maven.plugins</groupId> |
81 <artifactId>maven-enforcer-plugin</artifactId> | 111 <artifactId>maven-enforcer-plugin</artifactId> |
82 <version>3.3.0</version> | 112 <version>3.4.1</version> |
83 <executions> | 113 <executions> |
84 <execution> | 114 <execution> |
85 <id>enforce-maven</id> | 115 <id>enforce-maven</id> |
86 <goals> | 116 <goals> |
87 <goal>enforce</goal> | 117 <goal>enforce</goal> |
94 </rules> | 124 </rules> |
95 </configuration> | 125 </configuration> |
96 </execution> | 126 </execution> |
97 </executions> | 127 </executions> |
98 </plugin> | 128 </plugin> |
129 </plugins> | |
130 </build> | |
131 <reporting> | |
132 <plugins> | |
99 <plugin> | 133 <plugin> |
100 <groupId>org.apache.maven.plugins</groupId> | 134 <groupId>org.apache.maven.plugins</groupId> |
101 <artifactId>maven-site-plugin</artifactId> | 135 <artifactId>maven-site-plugin</artifactId> |
102 <version>3.12.1</version> | 136 <version>3.12.1</version> |
103 </plugin> | 137 </plugin> |
108 </plugin> | 142 </plugin> |
109 <plugin> | 143 <plugin> |
110 <groupId>org.codehaus.mojo</groupId> | 144 <groupId>org.codehaus.mojo</groupId> |
111 <artifactId>versions-maven-plugin</artifactId> | 145 <artifactId>versions-maven-plugin</artifactId> |
112 <version>2.16.0</version> | 146 <version>2.16.0</version> |
147 <reportSets> | |
148 <reportSet> | |
149 <reports> | |
150 <report>dependency-updates-report</report> | |
151 <report>plugin-updates-report</report> | |
152 </reports> | |
153 </reportSet> | |
154 </reportSets> | |
113 </plugin> | 155 </plugin> |
114 </plugins> | 156 </plugins> |
115 </build> | 157 </reporting> |
116 </project> | 158 </project> |