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
@@ -51,7 +51,7 @@ The Preprocessor is published in the Maven Central so that can be added in Maven
51
51
<plugin>
52
52
<groupId>com.igormaznitsa</groupId>
53
53
<artifactId>jcp</artifactId>
54
-
<version>7.0.0</version>
54
+
<version>7.0.1</version>
55
55
<executions>
56
56
<execution>
57
57
<id>preprocessSources</id>
@@ -70,13 +70,13 @@ The Preprocessor is published in the Maven Central so that can be added in Maven
70
70
# How to use from command line
71
71
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:
72
72
```
73
-
java -jar jcp-7.0.0.jar --i:./test --o:./result
73
+
java -jar jcp-7.0.1.jar --i:./test --o:./result
74
74
```
75
75
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
@@ -130,5 +130,5 @@ Java sources usually have sections, there are the import section and the main se
130
130
# How to remove all coments from sources
131
131
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
0 commit comments