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
@@ -58,7 +58,7 @@ The preprocessor has been published in [the Maven Central](https://search.maven.
58
58
<plugin>
59
59
<groupId>com.igormaznitsa</groupId>
60
60
<artifactId>jcp</artifactId>
61
-
<version>7.1.0</version>
61
+
<version>7.1.1</version>
62
62
<executions>
63
63
<execution>
64
64
<id>preprocessSources</id>
@@ -77,13 +77,13 @@ The preprocessor has been published in [the Maven Central](https://search.maven.
77
77
# How to use from command line
78
78
The uber-jar can be started directly under Java through CLI interface. Let's take a look at short example below how to start it in command line under Linux:
79
79
```
80
-
java -jar jcp-7.1.0.jar --i:./test --o:./result
80
+
java -jar jcp-7.1.1.jar --i:./test --o:./result
81
81
```
82
82
The example above just preprocessing files from ./test folder (which extensions allowed to be preprocessed by default), and placing result files into ./result folder. Keep in your mind that the preprocessor processing not all files, for instance XML files will not be preprocessed by default. Files which extension not marked for preprocessing will be just copied (of course if the extensions is not in the excluded extension list)
- --r remove all Java-style comments from preprocessed result files
@@ -142,6 +142,6 @@ In opposite a regular document, a Java document has as minimum two sections - pr
142
142
# How to remove all comments from sources
143
143
Sometimes it is very useful to remove totally all comments from sources, such possibility included into JCP and can be activated with either a special flag or command line switcher. The example below shows how to remove all comments with CLI use:
0 commit comments