You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
- 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)
15
15
@@ -44,7 +44,7 @@ The Preprocessor is published in the Maven Central so that can be added in Maven
44
44
<plugin>
45
45
<groupId>com.igormaznitsa</groupId>
46
46
<artifactId>jcp</artifactId>
47
-
<version>6.1.2</version>
47
+
<version>6.1.3</version>
48
48
<executions>
49
49
<execution>
50
50
<id>preprocessSources</id>
@@ -69,13 +69,13 @@ The Preprocessor is published in the Maven Central so that can be added in Maven
69
69
# How to use from command line
70
70
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:
71
71
```
72
-
java -jar jcp-6.1.2.jar --i:./test --o:./result
72
+
java -jar jcp-6.1.3.jar --i:./test --o:./result
73
73
```
74
74
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)
- --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
129
129
# How to remove all coments from sources
130
130
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
Copy file name to clipboardExpand all lines: changelog.txt
+1-1Lines changed: 1 addition & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -1,4 +1,4 @@
1
-
6.1.3-SNAPSHOT
1
+
6.1.3 (29 apr 2018)
2
2
- added automatic module name `igormaznitsa.jcp`
3
3
- 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)
0 commit comments