Skip to content

Commit fef18fe

Browse files
committed
release 7.0.0
1 parent e40b7fd commit fef18fe

File tree

8 files changed

+14
-17
lines changed

8 files changed

+14
-17
lines changed

README.md

+5-8
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,16 @@
11
[![License Apache 2.0](https://img.shields.io/badge/license-Apache%20License%202.0-green.svg)](http://www.apache.org/licenses/LICENSE-2.0)
2-
[![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)
2+
[![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)
33
[![Codacy Badge](https://api.codacy.com/project/badge/grade/c6acda63097a40c68d8ca8eaef6180d8)](https://www.codacy.com/app/rrg4400/java-comment-preprocessor)
4-
[![Java 6.0+](https://img.shields.io/badge/java-6.0%2b-green.svg)](http://www.oracle.com/technetwork/java/javase/downloads/index.html)
4+
[![Java 1.8+](https://img.shields.io/badge/java-1.8%2b-green.svg)](http://www.oracle.com/technetwork/java/javase/downloads/index.html)
55
[![Maven 3.0+](https://img.shields.io/badge/maven-3.0%2b-green.svg)](https://maven.apache.org/)
6+
[![Gradle 3.0+](https://img.shields.io/badge/gradle-3.0%2b-green.svg)](https://gradle.org/)
67
[![Ant 1.8.2+](https://img.shields.io/badge/ant-1.8.2%2b-green.svg)](http://ant.apache.org/)
78
[![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)
89
[![Yandex.Money donation](https://img.shields.io/badge/donation-Я.деньги-yellow.svg)](http://yasobe.ru/na/iamoss)
910

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

23-
- **6.1.3 (29 apr 2018)**
24-
- added automatic module name `igormaznitsa.jcp`
25-
- 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)
26-
2724
[Full changelog](https://github.com/raydac/java-comment-preprocessor/blob/master/changelog.txt)
2825

2926
# Introduction

changelog.txt

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
1-
7.0.0 (SNAPSHOT)
2-
- added embedded Gradle plugin `com.igormaznitsa.jcp`
1+
7.0.0 (31 mar 2019)
32
- reworked some parameters for Maven and ANT plug-ins
3+
- added embedded Gradle plugin `com.igormaznitsa.jcp`
44
- added function `STR esc(STR)`
55
- fixed build under JDK 9+
66
- XML functions work through embedded [Apache Xalan](https://xalan.apache.org/) and [Apache Xerces](http://xerces.apache.org/)

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.0-SNAPSHOT"
6+
classpath "com.igormaznitsa:jcp:7.0.0"
77
}
88
}
99

jcp-tests/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.0-SNAPSHOT</version>
8+
<version>7.0.0</version>
99
</parent>
1010

1111
<artifactId>jcp-tests</artifactId>

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.0-SNAPSHOT</version>
8+
<version>7.0.0</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.0-SNAPSHOT";
51+
return "v7.0.0";
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.0-SNAPSHOT</version>
23+
<version>7.0.0</version>
2424
<goals>
2525
<goal>preprocess</goal>
2626
</goals>

pom.xml

+2-2
Original file line numberDiff line numberDiff line change
@@ -4,14 +4,14 @@
44

55
<groupId>com.igormaznitsa</groupId>
66
<artifactId>jcp-pom</artifactId>
7-
<version>7.0.0-SNAPSHOT</version>
7+
<version>7.0.0</version>
88
<packaging>pom</packaging>
99

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

1212
<properties>
1313
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
14-
<jcp.test.version>7.0.0-SNAPSHOT</jcp.test.version>
14+
<jcp.test.version>7.0.0</jcp.test.version>
1515
<main.project.version>${project.version}</main.project.version>
1616
<timestamp>${maven.build.timestamp}</timestamp>
1717
<maven.build.timestamp.format>yyyyMMddHHmm</maven.build.timestamp.format>

0 commit comments

Comments
 (0)