File tree 4 files changed +18
-10
lines changed
src/main/java/com/igormaznitsa/jcp/context
4 files changed +18
-10
lines changed Original file line number Diff line number Diff line change 9
9
10
10
<properties >
11
11
<project .build.sourceEncoding>UTF-8</project .build.sourceEncoding>
12
- <jcp .test.version>7.1.1-SNAPSHOT </jcp .test.version>
12
+ <jcp .test.version>7.1.1</jcp .test.version>
13
13
<junit .version>5.4.2</junit .version>
14
14
<maven .compiler.source>1.8</maven .compiler.source>
15
15
<maven .compiler.target>1.8</maven .compiler.target>
Original file line number Diff line number Diff line change 5
5
<parent >
6
6
<groupId >com.igormaznitsa</groupId >
7
7
<artifactId >jcp-pom</artifactId >
8
- <version >7.1.1-SNAPSHOT </version >
8
+ <version >7.1.1</version >
9
9
</parent >
10
10
11
11
<artifactId >jcp</artifactId >
143
143
<dependency >
144
144
<groupId >commons-io</groupId >
145
145
<artifactId >commons-io</artifactId >
146
- <version >2.13.0 </version >
146
+ <version >2.15.1 </version >
147
147
</dependency >
148
148
<dependency >
149
149
<groupId >org.apache.commons</groupId >
150
150
<artifactId >commons-text</artifactId >
151
- <version >1.10 .0</version >
151
+ <version >1.11 .0</version >
152
152
</dependency >
153
153
<dependency >
154
154
<groupId >commons-codec</groupId >
455
455
<exclude >META-INF/services/org.apache.*</exclude >
456
456
<exclude >META-INF/services/org.w3c.*</exclude >
457
457
<exclude >META-INF/services/org.xml.*</exclude >
458
+ <exclude >META-INF/versions/9/module-info.class</exclude >
458
459
</excludes >
459
460
</filter >
460
461
</filters >
Original file line number Diff line number Diff line change @@ -27,7 +27,7 @@ public enum CommentRemoverType {
27
27
*/
28
28
public static String makeListOfAllRemoverIds () {
29
29
return Arrays .stream (CommentRemoverType .values ())
30
- .map (Enum ::toString ).collect (Collectors .joining ("," ));
30
+ .map (Enum ::name ).collect (Collectors .joining ("," ));
31
31
}
32
32
33
33
}
Original file line number Diff line number Diff line change 5
5
6
6
<groupId >com.igormaznitsa</groupId >
7
7
<artifactId >jcp-pom</artifactId >
8
- <version >7.1.1-SNAPSHOT </version >
8
+ <version >7.1.1</version >
9
9
<packaging >pom</packaging >
10
10
11
11
<url >https://github.com/raydac/java-comment-preprocessor</url >
140
140
<plugin >
141
141
<groupId >org.codehaus.mojo</groupId >
142
142
<artifactId >animal-sniffer-maven-plugin</artifactId >
143
- <version >1.22 </version >
143
+ <version >1.23 </version >
144
144
</plugin >
145
145
<plugin >
146
146
<groupId >org.apache.maven.plugins</groupId >
147
147
<artifactId >maven-enforcer-plugin</artifactId >
148
- <version >3.1.0 </version >
148
+ <version >3.4.1 </version >
149
149
</plugin >
150
150
<plugin >
151
151
<groupId >org.apache.maven.plugins</groupId >
180
180
<requireMavenVersion >
181
181
<version >[${min.maven.api} },)</version >
182
182
</requireMavenVersion >
183
+ <banDuplicateClasses >
184
+ <scopes >
185
+ <scope >compile</scope >
186
+ </scopes >
187
+ <findAllDuplicates >true</findAllDuplicates >
188
+ <ignoreWhenIdentical >true</ignoreWhenIdentical >
189
+ </banDuplicateClasses >
183
190
</rules >
184
191
</configuration >
185
192
<goals >
191
198
<dependency >
192
199
<groupId >org.codehaus.mojo</groupId >
193
200
<artifactId >extra-enforcer-rules</artifactId >
194
- <version >1.3 </version >
201
+ <version >1.7.0 </version >
195
202
</dependency >
196
203
<dependency >
197
204
<groupId >org.apache.maven.shared</groupId >
198
205
<artifactId >maven-dependency-tree</artifactId >
199
- <version >2.2 </version >
206
+ <version >3.2.1 </version >
200
207
</dependency >
201
208
</dependencies >
202
209
</plugin >
You can’t perform that action at this time.
0 commit comments