Skip to content

Commit 5041690

Browse files
committed
release 6.1.3
1 parent cf1dc40 commit 5041690

File tree

5 files changed

+10
-10
lines changed

5 files changed

+10
-10
lines changed

README.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
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.2|jar)
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.3|jar)
33
[![Codacy Badge](https://api.codacy.com/project/badge/grade/c6acda63097a40c68d8ca8eaef6180d8)](https://www.codacy.com/app/rrg4400/java-comment-preprocessor)
44
[![Java 6.0+](https://img.shields.io/badge/java-6.0%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/)
@@ -9,7 +9,7 @@
99

1010
# Changelog
1111

12-
- **6.1.3-SNAPSHOT**
12+
- **6.1.3 (29 apr 2018)**
1313
- added automatic module name `igormaznitsa.jcp`
1414
- 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)
1515

@@ -44,7 +44,7 @@ The Preprocessor is published in the Maven Central so that can be added in Maven
4444
<plugin>
4545
<groupId>com.igormaznitsa</groupId>
4646
<artifactId>jcp</artifactId>
47-
<version>6.1.2</version>
47+
<version>6.1.3</version>
4848
<executions>
4949
<execution>
5050
<id>preprocessSources</id>
@@ -69,13 +69,13 @@ The Preprocessor is published in the Maven Central so that can be added in Maven
6969
# How to use from command line
7070
The Preprocessor jar can be started under Java as a console application. Let's take a look at short example below how to start in command line under Linux The Easy variant of usage:
7171
```
72-
java -jar jcp-6.1.2.jar --i:./test --o:./result
72+
java -jar jcp-6.1.3.jar --i:./test --o:./result
7373
```
7474
The Example just preprocess files from ./test folder which extensions allowed to be preprocessed by default, and places result into ./result folder, but keep in your mind that the preprocessor copies not all files, XML files will not be preprocessed by default. Files which extension are not marked for preprocessing will be just copied (of course if the extensions is not in the list of excluded file extensions)
7575

7676
More complex example:
7777
```
78-
java -jar jcp-6.1.2.jar --c --r --v --f:java,xml --ef:none --i:./test --o:./result '--p:HelloWorld=$Hello world$'
78+
java -jar jcp-6.1.3.jar --c --r --v --f:java,xml --ef:none --i:./test --o:./result '--p:HelloWorld=$Hello world$'
7979
```
8080
- --c clear the destination folder before work
8181
- --r remove all Java-style comments from preprocessed result files
@@ -129,5 +129,5 @@ Java sources usually have sections, there are the import section and the main se
129129
# How to remove all coments from sources
130130
Sometime it is very useful to remove all comments from my sources at all, JCP has such feature which can be turned on by special flag or command line switcher (see wiki). The Example of use for comment removing through CLI interface
131131
```
132-
java -jar ./jcp-6.1.2.jar --i:/sourceFolder --o:/resultFolder -ef:none --r
132+
java -jar ./jcp-6.1.3.jar --i:/sourceFolder --o:/resultFolder -ef:none --r
133133
```

changelog.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
6.1.3-SNAPSHOT
1+
6.1.3 (29 apr 2018)
22
- added automatic module name `igormaznitsa.jcp`
33
- 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)
44

pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44

55
<groupId>com.igormaznitsa</groupId>
66
<artifactId>jcp</artifactId>
7-
<version>6.1.3-SNAPSHOT</version>
7+
<version>6.1.3</version>
88
<packaging>maven-plugin</packaging>
99

1010
<name>Java Comment Preprocessor</name>

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@
4343
<plugin>
4444
<groupId>com.igormaznitsa</groupId>
4545
<artifactId>jcp</artifactId>
46-
<version>6.1.3-SNAPSHOT</version>
46+
<version>6.1.3</version>
4747
<executions>
4848
<execution>
4949
<id>generateSources</id>

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

Lines changed: 1 addition & 1 deletion
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>6.1.3-SNAPSHOT</version>
23+
<version>6.1.3</version>
2424
<configuration>
2525
<source>/</source>
2626
<copyFileAttributes>true</copyFileAttributes>

0 commit comments

Comments
 (0)