|
4 | 4 |
|
5 | 5 | <groupId>com.igormaznitsa</groupId>
|
6 | 6 | <artifactId>java-prolog-parser</artifactId>
|
7 | | - <version>2.2.0-SNAPSHOT</version> |
| 7 | + <version>2.2.0</version> |
8 | 8 | <packaging>jar</packaging>
|
9 | 9 |
|
10 | 10 | <name>Edinburgh Prolog parser</name>
|
|
74 | 74 | <version>5.11.4</version>
|
75 | 75 | <scope>test</scope>
|
76 | 76 | </dependency>
|
77 | | - <dependency> |
78 | | - <groupId>net.bytebuddy</groupId> |
79 | | - <artifactId>byte-buddy-agent</artifactId> |
80 | | - <version>1.14.15</version> |
81 | | - <scope>test</scope> |
82 | | - </dependency> |
83 | | - <dependency> |
84 | | - <groupId>net.bytebuddy</groupId> |
85 | | - <artifactId>byte-buddy</artifactId> |
86 | | - <version>1.14.15</version> |
87 | | - <scope>test</scope> |
88 | | - </dependency> |
89 | 77 | <dependency>
|
90 | 78 | <groupId>org.mockito</groupId>
|
91 | 79 | <artifactId>mockito-core</artifactId>
|
92 | | - <version>5.12.0</version> |
| 80 | + <version>5.15.2</version> |
93 | 81 | <scope>test</scope>
|
94 | | - <exclusions> |
95 | | - <exclusion> |
96 | | - <groupId>net.bytebuddy</groupId> |
97 | | - <artifactId>byte-buddy-agent</artifactId> |
98 | | - </exclusion> |
99 | | - <exclusion> |
100 | | - <groupId>net.bytebuddy</groupId> |
101 | | - <artifactId>byte-buddy</artifactId> |
102 | | - </exclusion> |
103 | | - </exclusions> |
104 | 82 | </dependency>
|
105 | 83 | </dependencies>
|
106 | 84 |
|
|
205 | 183 | <artifactId>maven-resources-plugin</artifactId>
|
206 | 184 | <version>3.3.1</version>
|
207 | 185 | </plugin>
|
| 186 | + <plugin> |
| 187 | + <groupId>org.apache.maven.plugins</groupId> |
| 188 | + <artifactId>maven-enforcer-plugin</artifactId> |
| 189 | + <version>3.5.0</version> |
| 190 | + <executions> |
| 191 | + <execution> |
| 192 | + <id>enforcer-verify</id> |
| 193 | + <phase>validate</phase> |
| 194 | + <goals> |
| 195 | + <goal>enforce</goal> |
| 196 | + </goals> |
| 197 | + <inherited>true</inherited> |
| 198 | + </execution> |
| 199 | + </executions> |
| 200 | + <configuration> |
| 201 | + <failFast>true</failFast> |
| 202 | + <rules> |
| 203 | + <dependencyConvergence/> |
| 204 | + <banDuplicateClasses/> |
| 205 | + <banCircularDependencies/> |
| 206 | + <enforceBytecodeVersion> |
| 207 | + <maxJdkVersion>11</maxJdkVersion> |
| 208 | + <ignoredScopes> |
| 209 | + <ignoredScope>test</ignoredScope> |
| 210 | + </ignoredScopes> |
| 211 | + </enforceBytecodeVersion> |
| 212 | + </rules> |
| 213 | + </configuration> |
| 214 | + <dependencies> |
| 215 | + <dependency> |
| 216 | + <groupId>org.codehaus.mojo</groupId> |
| 217 | + <artifactId>extra-enforcer-rules</artifactId> |
| 218 | + <version>1.9.0</version> |
| 219 | + </dependency> |
| 220 | + </dependencies> |
| 221 | + </plugin> |
208 | 222 | <plugin>
|
209 | 223 | <groupId>org.apache.maven.plugins</groupId>
|
210 | 224 | <artifactId>maven-compiler-plugin</artifactId>
|
|
218 | 232 | <showWarnings>true</showWarnings>
|
219 | 233 | </configuration>
|
220 | 234 | </plugin>
|
221 | | - |
222 | 235 | <plugin>
|
223 | 236 | <groupId>org.apache.maven.plugins</groupId>
|
224 | 237 | <artifactId>maven-jar-plugin</artifactId>
|
|
0 commit comments