Skip to content

Commit 842c58b

Browse files
committed
release 7.1.2
1 parent ef53ea9 commit 842c58b

File tree

3 files changed

+56
-53
lines changed

3 files changed

+56
-53
lines changed

jcp-tests/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99

1010
<properties>
1111
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
12-
<jcp.test.version>7.1.2-SNAPSHOT</jcp.test.version>
12+
<jcp.test.version>7.1.2</jcp.test.version>
1313
<junit.version>5.4.2</junit.version>
1414
<maven.compiler.source>1.8</maven.compiler.source>
1515
<maven.compiler.target>1.8</maven.compiler.target>

jcp/pom.xml

Lines changed: 54 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
<parent>
66
<groupId>com.igormaznitsa</groupId>
77
<artifactId>jcp-pom</artifactId>
8-
<version>7.1.2-SNAPSHOT</version>
8+
<version>7.1.2</version>
99
</parent>
1010

1111
<artifactId>jcp</artifactId>
@@ -30,6 +30,56 @@
3030
<id>publish</id>
3131
<build>
3232
<plugins>
33+
<plugin>
34+
<groupId>org.apache.maven.plugins</groupId>
35+
<artifactId>maven-enforcer-plugin</artifactId>
36+
<executions>
37+
<execution>
38+
<id>jcp-check-enforce-rules</id>
39+
<configuration>
40+
<rules>
41+
<banDuplicatePomDependencyVersions/>
42+
<enforceBytecodeVersion>
43+
<maxJdkVersion>${maven.compiler.target}</maxJdkVersion>
44+
</enforceBytecodeVersion>
45+
<banCircularDependencies/>
46+
<reactorModuleConvergence>
47+
<ignoreModuleDependencies>true</ignoreModuleDependencies>
48+
</reactorModuleConvergence>
49+
<requireJavaVersion>
50+
<version>${maven.compiler.target}</version>
51+
</requireJavaVersion>
52+
<requireMavenVersion>
53+
<version>[${min.maven.api}},)</version>
54+
</requireMavenVersion>
55+
<banDuplicateClasses>
56+
<scopes>
57+
<scope>compile</scope>
58+
</scopes>
59+
<findAllDuplicates>true</findAllDuplicates>
60+
<ignoreWhenIdentical>true</ignoreWhenIdentical>
61+
</banDuplicateClasses>
62+
</rules>
63+
</configuration>
64+
<goals>
65+
<goal>enforce</goal>
66+
</goals>
67+
</execution>
68+
</executions>
69+
<dependencies>
70+
<dependency>
71+
<groupId>org.codehaus.mojo</groupId>
72+
<artifactId>extra-enforcer-rules</artifactId>
73+
<version>1.7.0</version>
74+
</dependency>
75+
<dependency>
76+
<groupId>org.apache.maven.shared</groupId>
77+
<artifactId>maven-dependency-tree</artifactId>
78+
<version>3.2.1</version>
79+
</dependency>
80+
</dependencies>
81+
</plugin>
82+
3383
<plugin>
3484
<groupId>org.apache.maven.plugins</groupId>
3585
<artifactId>maven-assembly-plugin</artifactId>
@@ -143,17 +193,17 @@
143193
<dependency>
144194
<groupId>commons-io</groupId>
145195
<artifactId>commons-io</artifactId>
146-
<version>2.15.1</version>
196+
<version>2.16.1</version>
147197
</dependency>
148198
<dependency>
149199
<groupId>org.apache.commons</groupId>
150200
<artifactId>commons-text</artifactId>
151-
<version>1.11.0</version>
201+
<version>1.12.0</version>
152202
</dependency>
153203
<dependency>
154204
<groupId>commons-codec</groupId>
155205
<artifactId>commons-codec</artifactId>
156-
<version>1.16.0</version>
206+
<version>1.17.0</version>
157207
</dependency>
158208
<dependency>
159209
<groupId>xerces</groupId>

pom.xml

Lines changed: 1 addition & 48 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55

66
<groupId>com.igormaznitsa</groupId>
77
<artifactId>jcp-pom</artifactId>
8-
<version>7.1.2-SNAPSHOT</version>
8+
<version>7.1.2</version>
99
<packaging>pom</packaging>
1010

1111
<url>https://github.com/raydac/java-comment-preprocessor</url>
@@ -165,53 +165,6 @@
165165
</plugins>
166166
</pluginManagement>
167167
<plugins>
168-
<plugin>
169-
<groupId>org.apache.maven.plugins</groupId>
170-
<artifactId>maven-enforcer-plugin</artifactId>
171-
<executions>
172-
<execution>
173-
<id>enforce</id>
174-
<configuration>
175-
<rules>
176-
<banDuplicatePomDependencyVersions/>
177-
<enforceBytecodeVersion>
178-
<maxJdkVersion>${maven.compiler.target}</maxJdkVersion>
179-
</enforceBytecodeVersion>
180-
<banCircularDependencies/>
181-
<reactorModuleConvergence/>
182-
<requireJavaVersion>
183-
<version>${maven.compiler.target}</version>
184-
</requireJavaVersion>
185-
<requireMavenVersion>
186-
<version>[${min.maven.api}},)</version>
187-
</requireMavenVersion>
188-
<banDuplicateClasses>
189-
<scopes>
190-
<scope>compile</scope>
191-
</scopes>
192-
<findAllDuplicates>true</findAllDuplicates>
193-
<ignoreWhenIdentical>true</ignoreWhenIdentical>
194-
</banDuplicateClasses>
195-
</rules>
196-
</configuration>
197-
<goals>
198-
<goal>enforce</goal>
199-
</goals>
200-
</execution>
201-
</executions>
202-
<dependencies>
203-
<dependency>
204-
<groupId>org.codehaus.mojo</groupId>
205-
<artifactId>extra-enforcer-rules</artifactId>
206-
<version>1.7.0</version>
207-
</dependency>
208-
<dependency>
209-
<groupId>org.apache.maven.shared</groupId>
210-
<artifactId>maven-dependency-tree</artifactId>
211-
<version>3.2.1</version>
212-
</dependency>
213-
</dependencies>
214-
</plugin>
215168
<plugin>
216169
<groupId>org.codehaus.mojo</groupId>
217170
<artifactId>build-helper-maven-plugin</artifactId>

0 commit comments

Comments
 (0)