|
68 | 68 | <commons-io.version>2.18.0</commons-io.version> |
69 | 69 | <junit.version>4.13.2</junit.version> |
70 | 70 | <mockito-core.version>5.6.0</mockito-core.version> |
71 | | - <pug4j.version>2.3.0</pug4j.version> |
| 71 | + <pug4j.version>2.3.1</pug4j.version> |
72 | 72 | <maven-gpg-plugin.version>3.1.0</maven-gpg-plugin.version> |
73 | 73 | <maven-release-plugin.version>3.0.1</maven-release-plugin.version> |
74 | 74 | <maven-compiler-plugin.version>3.11.0</maven-compiler-plugin.version> |
75 | 75 | <maven-surefire-plugin.version>3.0.0</maven-surefire-plugin.version> |
76 | 76 | <maven-source-plugin.version>3.3.0</maven-source-plugin.version> |
77 | 77 | <maven-javadoc-plugin.version>3.6.0</maven-javadoc-plugin.version> |
78 | | - <maven-deploy-plugin.version>3.1.1</maven-deploy-plugin.version> |
| 78 | + <maven-deploy-plugin.version>3.1.3</maven-deploy-plugin.version> |
79 | 79 | </properties> |
80 | 80 |
|
81 | 81 | <profiles> |
|
135 | 135 | <version>${maven-surefire-plugin.version}</version> |
136 | 136 | <configuration> |
137 | 137 | <useFile>false</useFile> |
| 138 | + <useModulePath>false</useModulePath> |
138 | 139 | <trimStackTrace>false</trimStackTrace> |
| 140 | + <forkNode implementation="org.apache.maven.plugin.surefire.extensions.SurefireForkNodeFactory" /> |
139 | 141 | </configuration> |
140 | 142 | </plugin> |
141 | 143 | <plugin> |
|
164 | 166 | </execution> |
165 | 167 | </executions> |
166 | 168 | </plugin> |
| 169 | + <plugin> |
| 170 | + <groupId>org.apache.maven.plugins</groupId> |
| 171 | + <artifactId>maven-enforcer-plugin</artifactId> |
| 172 | + <version>3.4.1</version> |
| 173 | + <executions> |
| 174 | + <execution> |
| 175 | + <id>enforce-maven</id> |
| 176 | + <goals> |
| 177 | + <goal>enforce</goal> |
| 178 | + </goals> |
| 179 | + <configuration> |
| 180 | + <rules> |
| 181 | + <requireMavenVersion> |
| 182 | + <version>3.0</version> |
| 183 | + </requireMavenVersion> |
| 184 | + </rules> |
| 185 | + </configuration> |
| 186 | + </execution> |
| 187 | + </executions> |
| 188 | + </plugin> |
167 | 189 | <plugin> |
168 | 190 | <!-- explicitly define maven-deploy-plugin after other to force exec order --> |
169 | 191 | <groupId>org.apache.maven.plugins</groupId> |
|
179 | 201 | </execution> |
180 | 202 | </executions> |
181 | 203 | </plugin> |
182 | | - </plugins> |
183 | | - </build> |
| 204 | + <plugin> |
| 205 | + <artifactId>maven-clean-plugin</artifactId> |
| 206 | + <version>3.3.2</version> |
| 207 | + </plugin> |
| 208 | + <plugin> |
| 209 | + <artifactId>maven-install-plugin</artifactId> |
| 210 | + <version>3.1.3</version> |
| 211 | + </plugin> |
| 212 | +<!-- <plugin>--> |
| 213 | +<!-- <groupId>org.apache.maven.plugins</groupId>--> |
| 214 | +<!-- <artifactId>maven-jar-plugin</artifactId>--> |
| 215 | +<!-- <version>3.4.2</version>--> |
| 216 | +<!-- <configuration>--> |
| 217 | +<!-- <archive>--> |
| 218 | +<!-- <manifestEntries>--> |
| 219 | +<!-- <!– For Java 11 Modules, specify a module name. Do not create module-info.java until all--> |
| 220 | +<!-- our dependencies specify a module name. –>--> |
| 221 | +<!-- <Automatic-Module-Name>de.neuland.pug4j.spring</Automatic-Module-Name>--> |
| 222 | +<!-- </manifestEntries>--> |
| 223 | +<!-- </archive>--> |
| 224 | +<!-- </configuration>--> |
| 225 | +<!-- </plugin>--> |
| 226 | + </plugins> |
| 227 | + </build> |
184 | 228 |
|
185 | 229 | <dependencies> |
186 | 230 | <dependency> |
|
230 | 274 | <version>${commons-io.version}</version> |
231 | 275 | </dependency> |
232 | 276 |
|
233 | | - <!-- Other dependencies --> |
234 | | - <dependency> |
235 | | - <groupId>org.slf4j</groupId> |
236 | | - <artifactId>slf4j-api</artifactId> |
| 277 | + <!-- Other dependencies --> |
| 278 | + <dependency> |
| 279 | + <groupId>org.slf4j</groupId> |
| 280 | + <artifactId>slf4j-api</artifactId> |
237 | 281 | <version>${slf4j-api.version}</version> |
238 | | - </dependency> |
| 282 | + </dependency> |
239 | 283 |
|
240 | 284 | <!-- Test --> |
241 | 285 | <dependency> |
|
0 commit comments