Skip to content

Commit

Permalink
release 7.0.1
Browse files Browse the repository at this point in the history
  • Loading branch information
raydac committed Apr 19, 2019
1 parent 180c192 commit abf5802
Show file tree
Hide file tree
Showing 8 changed files with 14 additions and 8 deletions.
7 changes: 5 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,9 @@
![Logo](assets/logo.png)

# Changelog
- **7.0.1 (19 apr 2019)**
- minor refactoring

- **7.0.0 (31 mar 2019)**
- **reworked and renamed some parameters for Maven and ANT plug-ins**
- **removed maven `clear` goal**
Expand All @@ -35,9 +38,9 @@ On start the preprocessor was implemented as a CLI tool but then Maven, ANT and
[The Full list of the preprocessor directives can be found in the wiki.](https://github.com/raydac/java-comment-preprocessor/wiki/PreprocessorDirectives)

The Preprocessor can be used by different ways:
- as ANT task, and with Android SDK
- as ANT task
- as Maven plugin
- [with Gradle through ANT task](https://github.com/raydac/java-comment-preprocessor/wiki/AndroidGradlePreprocessing)
- [with Gradle](https://github.com/raydac/java-comment-preprocessor/wiki/AndroidGradlePreprocessing)
- as Java framework with direct class calls
- as external utility through CLI (command line interface)
The Preprocessor is published in the Maven Central so that can be added in Maven projects without any problems
Expand Down
3 changes: 3 additions & 0 deletions changelog.txt
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
7.0.1 (19 apr 2019)
- minor refactoring

7.0.0 (31 mar 2019)
- reworked some parameters for Maven and ANT plug-ins
- added embedded Gradle plugin `com.igormaznitsa.jcp`
Expand Down
2 changes: 1 addition & 1 deletion jcp-tests/jcp-test-gradle/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ buildscript {
flatDir dirs: "../../jcp/target"
}
dependencies {
classpath "com.igormaznitsa:jcp:7.0.1-SNAPSHOT"
classpath "com.igormaznitsa:jcp:7.0.1"
}
}

Expand Down
2 changes: 1 addition & 1 deletion jcp-tests/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
<packaging>pom</packaging>

<properties>
<jcp.test.version>7.0.1-SNAPSHOT</jcp.test.version>
<jcp.test.version>7.0.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
2 changes: 1 addition & 1 deletion 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.0.1-SNAPSHOT</version>
<version>7.0.1</version>
</parent>

<artifactId>jcp</artifactId>
Expand Down
2 changes: 1 addition & 1 deletion jcp/src/main/java/com/igormaznitsa/jcp/InfoHelper.java
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ private InfoHelper() {

@Nonnull
public static String getVersion() {
return "v7.0.1-SNAPSHOT";
return "v7.0.1";
}

@Nonnull
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
<plugin>
<groupId>com.igormaznitsa</groupId>
<artifactId>jcp</artifactId>
<version>7.0.1-SNAPSHOT</version>
<version>7.0.1</version>
<goals>
<goal>preprocess</goal>
</goals>
Expand Down
2 changes: 1 addition & 1 deletion 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.0.1-SNAPSHOT</version>
<version>7.0.1</version>
<packaging>pom</packaging>

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

0 comments on commit abf5802

Please sign in to comment.