Skip to content

Commit

Permalink
release 7.0.0
Browse files Browse the repository at this point in the history
  • Loading branch information
raydac committed Mar 31, 2019
1 parent e40b7fd commit fef18fe
Show file tree
Hide file tree
Showing 8 changed files with 14 additions and 17 deletions.
13 changes: 5 additions & 8 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,15 +1,16 @@
[![License Apache 2.0](https://img.shields.io/badge/license-Apache%20License%202.0-green.svg)](http://www.apache.org/licenses/LICENSE-2.0)
[![Maven central](https://maven-badges.herokuapp.com/maven-central/com.igormaznitsa/jcp/badge.svg)](http://search.maven.org/#artifactdetails|com.igormaznitsa|jcp|6.1.4|jar)
[![Maven central](https://maven-badges.herokuapp.com/maven-central/com.igormaznitsa/jcp/badge.svg)](http://search.maven.org/#artifactdetails|com.igormaznitsa|jcp|7.0.0|jar)
[![Codacy Badge](https://api.codacy.com/project/badge/grade/c6acda63097a40c68d8ca8eaef6180d8)](https://www.codacy.com/app/rrg4400/java-comment-preprocessor)
[![Java 6.0+](https://img.shields.io/badge/java-6.0%2b-green.svg)](http://www.oracle.com/technetwork/java/javase/downloads/index.html)
[![Java 1.8+](https://img.shields.io/badge/java-1.8%2b-green.svg)](http://www.oracle.com/technetwork/java/javase/downloads/index.html)
[![Maven 3.0+](https://img.shields.io/badge/maven-3.0%2b-green.svg)](https://maven.apache.org/)
[![Gradle 3.0+](https://img.shields.io/badge/gradle-3.0%2b-green.svg)](https://gradle.org/)
[![Ant 1.8.2+](https://img.shields.io/badge/ant-1.8.2%2b-green.svg)](http://ant.apache.org/)
[![PayPal donation](https://img.shields.io/badge/donation-PayPal-red.svg)](https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&hosted_button_id=AHWJHJFBAWGL2)
[![Yandex.Money donation](https://img.shields.io/badge/donation-Я.деньги-yellow.svg)](http://yasobe.ru/na/iamoss)

# Changelog
- **7.0.0 (SNAPSHOT)**
- reworked some parameters for Maven and ANT plug-ins
- **7.0.0 (31 mar 2019)**
- **reworked some parameters for Maven and ANT plug-ins**
- added embedded Gradle plugin `com.igormaznitsa.jcp`
- added function `STR esc(STR)`
- fixed build under JDK 9+
Expand All @@ -20,10 +21,6 @@
- **6.1.4 (16 jun 2018)**
- [#19](https://github.com/raydac/java-comment-preprocessor/issues/19) removed dependencies to meta packages (their sources moved into project)

- **6.1.3 (29 apr 2018)**
- added automatic module name `igormaznitsa.jcp`
- CORE: added `/U` key to turn on mode to interpret unknown variables as FALSE (in Maven and ANT `unknownVarAsFalse`), [#17](https://github.com/raydac/java-comment-preprocessor/issues/17)

[Full changelog](https://github.com/raydac/java-comment-preprocessor/blob/master/changelog.txt)

# Introduction
Expand Down
4 changes: 2 additions & 2 deletions changelog.txt
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
7.0.0 (SNAPSHOT)
- added embedded Gradle plugin `com.igormaznitsa.jcp`
7.0.0 (31 mar 2019)
- reworked some parameters for Maven and ANT plug-ins
- added embedded Gradle plugin `com.igormaznitsa.jcp`
- added function `STR esc(STR)`
- fixed build under JDK 9+
- XML functions work through embedded [Apache Xalan](https://xalan.apache.org/) and [Apache Xerces](http://xerces.apache.org/)
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.0-SNAPSHOT"
classpath "com.igormaznitsa:jcp:7.0.0"
}
}

Expand Down
2 changes: 1 addition & 1 deletion jcp-tests/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.0-SNAPSHOT</version>
<version>7.0.0</version>
</parent>

<artifactId>jcp-tests</artifactId>
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.0-SNAPSHOT</version>
<version>7.0.0</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.0-SNAPSHOT";
return "v7.0.0";
}

@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.0-SNAPSHOT</version>
<version>7.0.0</version>
<goals>
<goal>preprocess</goal>
</goals>
Expand Down
4 changes: 2 additions & 2 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -4,14 +4,14 @@

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

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

<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<jcp.test.version>7.0.0-SNAPSHOT</jcp.test.version>
<jcp.test.version>7.0.0</jcp.test.version>
<main.project.version>${project.version}</main.project.version>
<timestamp>${maven.build.timestamp}</timestamp>
<maven.build.timestamp.format>yyyyMMddHHmm</maven.build.timestamp.format>
Expand Down

0 comments on commit fef18fe

Please sign in to comment.