Skip to content

Commit abf5802

Browse files
committed
release 7.0.1
1 parent 180c192 commit abf5802

File tree

8 files changed

+14
-8
lines changed

8 files changed

+14
-8
lines changed

README.md

+5-2
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,9 @@
1111
![Logo](assets/logo.png)
1212

1313
# Changelog
14+
- **7.0.1 (19 apr 2019)**
15+
- minor refactoring
16+
1417
- **7.0.0 (31 mar 2019)**
1518
- **reworked and renamed some parameters for Maven and ANT plug-ins**
1619
- **removed maven `clear` goal**
@@ -35,9 +38,9 @@ On start the preprocessor was implemented as a CLI tool but then Maven, ANT and
3538
[The Full list of the preprocessor directives can be found in the wiki.](https://github.com/raydac/java-comment-preprocessor/wiki/PreprocessorDirectives)
3639

3740
The Preprocessor can be used by different ways:
38-
- as ANT task, and with Android SDK
41+
- as ANT task
3942
- as Maven plugin
40-
- [with Gradle through ANT task](https://github.com/raydac/java-comment-preprocessor/wiki/AndroidGradlePreprocessing)
43+
- [with Gradle](https://github.com/raydac/java-comment-preprocessor/wiki/AndroidGradlePreprocessing)
4144
- as Java framework with direct class calls
4245
- as external utility through CLI (command line interface)
4346
The Preprocessor is published in the Maven Central so that can be added in Maven projects without any problems

changelog.txt

+3
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
1+
7.0.1 (19 apr 2019)
2+
- minor refactoring
3+
14
7.0.0 (31 mar 2019)
25
- reworked some parameters for Maven and ANT plug-ins
36
- added embedded Gradle plugin `com.igormaznitsa.jcp`

jcp-tests/jcp-test-gradle/build.gradle

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ buildscript {
33
flatDir dirs: "../../jcp/target"
44
}
55
dependencies {
6-
classpath "com.igormaznitsa:jcp:7.0.1-SNAPSHOT"
6+
classpath "com.igormaznitsa:jcp:7.0.1"
77
}
88
}
99

jcp-tests/pom.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
<packaging>pom</packaging>
99

1010
<properties>
11-
<jcp.test.version>7.0.1-SNAPSHOT</jcp.test.version>
11+
<jcp.test.version>7.0.1</jcp.test.version>
1212
<junit.version>5.4.2</junit.version>
1313
<maven.compiler.source>1.8</maven.compiler.source>
1414
<maven.compiler.target>1.8</maven.compiler.target>

jcp/pom.xml

+1-1
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.0.1-SNAPSHOT</version>
8+
<version>7.0.1</version>
99
</parent>
1010

1111
<artifactId>jcp</artifactId>

jcp/src/main/java/com/igormaznitsa/jcp/InfoHelper.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ private InfoHelper() {
4848

4949
@Nonnull
5050
public static String getVersion() {
51-
return "v7.0.1-SNAPSHOT";
51+
return "v7.0.1";
5252
}
5353

5454
@Nonnull

jcp/src/test/resources/com/igormaznitsa/jcp/maven/test.pom.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@
2020
<plugin>
2121
<groupId>com.igormaznitsa</groupId>
2222
<artifactId>jcp</artifactId>
23-
<version>7.0.1-SNAPSHOT</version>
23+
<version>7.0.1</version>
2424
<goals>
2525
<goal>preprocess</goal>
2626
</goals>

pom.xml

+1-1
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.0.1-SNAPSHOT</version>
8+
<version>7.0.1</version>
99
<packaging>pom</packaging>
1010

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

0 commit comments

Comments
 (0)