Skip to content

Commit e8fec2c

Browse files
committed
release 7.2.0
1 parent 80a21a1 commit e8fec2c

File tree

7 files changed

+43
-11
lines changed

7 files changed

+43
-11
lines changed

README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,17 +1,17 @@
11
![Logo](assets/github1280x640.png)
22

33
[![License Apache 2.0](https://img.shields.io/badge/license-Apache%20License%202.0-green.svg)](http://www.apache.org/licenses/LICENSE-2.0)
4-
[![Maven central](https://maven-badges.herokuapp.com/maven-central/com.igormaznitsa/jcp/badge.svg)](http://search.maven.org/#artifactdetails|com.igormaznitsa|jcp|7.1.2|jar)
5-
[![Java 1.8+](https://img.shields.io/badge/java-1.8%2b-green.svg)](http://www.oracle.com/technetwork/java/javase/downloads/index.html)
4+
[![Maven central](https://maven-badges.herokuapp.com/maven-central/com.igormaznitsa/jcp/badge.svg)](http://search.maven.org/#artifactdetails|com.igormaznitsa|jcp|7.2.0|jar)
5+
[![Java 11+](https://img.shields.io/badge/java-11%2b-green.svg)](http://www.oracle.com/technetwork/java/javase/downloads/index.html)
66
[![Maven 3.0+](https://img.shields.io/badge/maven-3.0%2b-green.svg)](https://maven.apache.org/)
7-
[![Gradle 3.0+](https://img.shields.io/badge/gradle-3.0%2b-green.svg)](https://gradle.org/)
7+
[![Gradle 6.0+](https://img.shields.io/badge/gradle-6.0%2b-green.svg)](https://gradle.org/)
88
[![Ant 1.8.2+](https://img.shields.io/badge/ant-1.8.2%2b-green.svg)](http://ant.apache.org/)
99
[![PayPal donation](https://img.shields.io/badge/donation-PayPal-cyan.svg)](https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&hosted_button_id=AHWJHJFBAWGL2)
1010
[![YooMoney donation](https://img.shields.io/badge/donation-Yoo.money-blue.svg)](https://yoomoney.ru/to/41001158080699)
1111

1212
# Changelog
1313

14-
__7.2.0 (SNAPSHOT)__
14+
__7.2.0 (13-jul-2025)__
1515

1616
- minimum JDK version 11
1717
- added support for external processors calls during uncommenting actions `//$` and `//$$`, processors can be provided

assets/documap.png

88.7 KB
Loading

changelog.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
__7.2.0 (SNAPSHOT)__
1+
__7.2.0 (13-jul-2025)__
22
- minimum JDK version 11
33
- added support for external processors calls during uncommenting actions `//$` and `//$$`, processors can be provided as services
44
- removed support of Gradle 5

jcp-tests/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
<packaging>pom</packaging>
99

1010
<properties>
11-
<jcp.test.version>7.2.0-SNAPSHOT</jcp.test.version>
11+
<jcp.test.version>7.2.0</jcp.test.version>
1212
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
1313
<junit.version>5.13.3</junit.version>
1414
<maven.compiler.release>11</maven.compiler.release>

jcp/pom.xml

Lines changed: 29 additions & 1 deletion
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.2.0-SNAPSHOT</version>
8+
<version>7.2.0</version>
99
</parent>
1010

1111
<artifactId>jcp</artifactId>
@@ -158,6 +158,34 @@
158158
</executions>
159159
</plugin>
160160

161+
<plugin>
162+
<groupId>net.nicoulaj.maven.plugins</groupId>
163+
<artifactId>checksum-maven-plugin</artifactId>
164+
<version>1.11</version>
165+
<executions>
166+
<execution>
167+
<phase>verify</phase>
168+
<goals>
169+
<goal>files</goal>
170+
</goals>
171+
<configuration>
172+
<fileSets>
173+
<fileSet>
174+
<directory>${project.build.directory}</directory>
175+
<includes>
176+
<include>*.jar</include>
177+
<include>*.pom</include>
178+
</includes>
179+
</fileSet>
180+
</fileSets>
181+
<algorithms>
182+
<algorithm>SHA-1</algorithm>
183+
<algorithm>MD5</algorithm>
184+
</algorithms>
185+
</configuration>
186+
</execution>
187+
</executions>
188+
</plugin>
161189
</plugins>
162190
</build>
163191
</profile>

jcp/src/assemble/bundle.xml

Lines changed: 7 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -7,17 +7,21 @@
77
<includeSiteDirectory>false</includeSiteDirectory>
88

99
<formats>
10-
<format>jar</format>
10+
<format>tar.gz</format>
1111
</formats>
1212
<fileSets>
1313
<fileSet>
1414
<directory>${project.build.directory}</directory>
15-
<outputDirectory>/</outputDirectory>
15+
<outputDirectory>/com/igormaznitsa/${project.artifactId}/${project.version}</outputDirectory>
1616
<includes>
17-
<include>*.jar.asc</include>
1817
<include>*.jar</include>
18+
<include>*.jar.asc</include>
19+
<include>*.jar.sha1</include>
20+
<include>*.jar.md5</include>
1921
<include>*.pom</include>
2022
<include>*.pom.asc</include>
23+
<include>*.pom.sha1</include>
24+
<include>*.pom.md5</include>
2125
</includes>
2226
<excludes>
2327
<exclude>original*.*</exclude>

pom.xml

Lines changed: 1 addition & 1 deletion
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.2.0-SNAPSHOT</version>
8+
<version>7.2.0</version>
99
<packaging>pom</packaging>
1010

1111
<url>https://github.com/raydac/java-comment-preprocessor</url>

0 commit comments

Comments
 (0)