Skip to content

Commit

Permalink
release 7.1.1
Browse files Browse the repository at this point in the history
  • Loading branch information
raydac committed Jan 13, 2024
1 parent 0c0e05e commit e406c59
Show file tree
Hide file tree
Showing 4 changed files with 18 additions and 10 deletions.
2 changes: 1 addition & 1 deletion jcp-tests/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@

<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<jcp.test.version>7.1.1-SNAPSHOT</jcp.test.version>
<jcp.test.version>7.1.1</jcp.test.version>
<junit.version>5.4.2</junit.version>
<maven.compiler.source>1.8</maven.compiler.source>
<maven.compiler.target>1.8</maven.compiler.target>
Expand Down
7 changes: 4 additions & 3 deletions jcp/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<parent>
<groupId>com.igormaznitsa</groupId>
<artifactId>jcp-pom</artifactId>
<version>7.1.1-SNAPSHOT</version>
<version>7.1.1</version>
</parent>

<artifactId>jcp</artifactId>
Expand Down Expand Up @@ -143,12 +143,12 @@
<dependency>
<groupId>commons-io</groupId>
<artifactId>commons-io</artifactId>
<version>2.13.0</version>
<version>2.15.1</version>
</dependency>
<dependency>
<groupId>org.apache.commons</groupId>
<artifactId>commons-text</artifactId>
<version>1.10.0</version>
<version>1.11.0</version>
</dependency>
<dependency>
<groupId>commons-codec</groupId>
Expand Down Expand Up @@ -455,6 +455,7 @@
<exclude>META-INF/services/org.apache.*</exclude>
<exclude>META-INF/services/org.w3c.*</exclude>
<exclude>META-INF/services/org.xml.*</exclude>
<exclude>META-INF/versions/9/module-info.class</exclude>
</excludes>
</filter>
</filters>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ public enum CommentRemoverType {
*/
public static String makeListOfAllRemoverIds() {
return Arrays.stream(CommentRemoverType.values())
.map(Enum::toString).collect(Collectors.joining(","));
.map(Enum::name).collect(Collectors.joining(","));
}

}
17 changes: 12 additions & 5 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@

<groupId>com.igormaznitsa</groupId>
<artifactId>jcp-pom</artifactId>
<version>7.1.1-SNAPSHOT</version>
<version>7.1.1</version>
<packaging>pom</packaging>

<url>https://github.com/raydac/java-comment-preprocessor</url>
Expand Down Expand Up @@ -140,12 +140,12 @@
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>animal-sniffer-maven-plugin</artifactId>
<version>1.22</version>
<version>1.23</version>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-enforcer-plugin</artifactId>
<version>3.1.0</version>
<version>3.4.1</version>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
Expand Down Expand Up @@ -180,6 +180,13 @@
<requireMavenVersion>
<version>[${min.maven.api}},)</version>
</requireMavenVersion>
<banDuplicateClasses>
<scopes>
<scope>compile</scope>
</scopes>
<findAllDuplicates>true</findAllDuplicates>
<ignoreWhenIdentical>true</ignoreWhenIdentical>
</banDuplicateClasses>
</rules>
</configuration>
<goals>
Expand All @@ -191,12 +198,12 @@
<dependency>
<groupId>org.codehaus.mojo</groupId>
<artifactId>extra-enforcer-rules</artifactId>
<version>1.3</version>
<version>1.7.0</version>
</dependency>
<dependency>
<groupId>org.apache.maven.shared</groupId>
<artifactId>maven-dependency-tree</artifactId>
<version>2.2</version>
<version>3.2.1</version>
</dependency>
</dependencies>
</plugin>
Expand Down

0 comments on commit e406c59

Please sign in to comment.