File tree Expand file tree Collapse file tree 7 files changed +9
-10
lines changed
main/java/com/igormaznitsa/jcp
test/resources/com/igormaznitsa/jcp
it/maven/dummy_maven_project Expand file tree Collapse file tree 7 files changed +9
-10
lines changed Original file line number Diff line number Diff line change 99
1010# Changelog
1111
12- - ** 6.1.2-SNAPSHOT (under development) **
12+ - ** 6.1.2**
1313 - CORE: added STR TRIMLINES(STR) function to trim lines represented as string and removing empty lines
1414 - CORE: added ` /A ` command line option (` copyFileAttributes ` in Maven and ANT) to copy file attributes
1515 - CORE: added ` /ED: ` command line option to exclude sub-folders from preprocessing (` excludedFolders ` in Maven and ANT) with ANT pattern support.
Original file line number Diff line number Diff line change 1- 6.1.2-SNAPSHOT (under development )
1+ 6.1.2 (02 apr 2017 )
22 - CORE: added STR TRIMLINES(STR) function to trim lines represented as string and removing empty lines
33 - CORE: added `/A` command line option (`copyFileAttributes` in Maven and ANT) to copy file attributes
44 - CORE: added `/ED:` command line option to exclude sub-folders from preprocessing (`excludedFolders` in Maven and ANT) with ANT pattern support.
Original file line number Diff line number Diff line change 88
99 <groupId >com.igormaznitsa</groupId >
1010 <artifactId >jcp</artifactId >
11- <version >6.1.2-SNAPSHOT </version >
11+ <version >6.1.2</version >
1212 <packaging >maven-plugin</packaging >
1313
1414 <name >Java Comment Preprocessor</name >
110110 </build >
111111 </profile >
112112 <profile >
113- <id >prepare-distributive </id >
113+ <id >publish </id >
114114 <build >
115115 <plugins >
116116 <plugin >
162162 <!-- <failOnError>false</failOnError>-->
163163 <sourceFileExcludes >
164164 <exclude >HelpMojo.java</exclude >
165+ <exclude >**/AntPathMatcher.java</exclude >
165166 </sourceFileExcludes >
166167 </configuration >
167168 </execution >
Original file line number Diff line number Diff line change @@ -896,7 +896,7 @@ public boolean isCopyFileAttributes() {
896896
897897 /**
898898 * Set the flag to copy file attributes.
899- *
899+ * @param value true if file attributes must be copied, false otherwise.
900900 * @return the preprocessor context
901901 */
902902 @ Nonnull
Original file line number Diff line number Diff line change @@ -123,8 +123,8 @@ public AntPathMatcher(String pathSeparator) {
123123
124124 /**
125125 * Set the path separator to use for pattern parsing.
126- * <p>
127126 * Default is "/", as in Ant.
127+ * @param pathSeparator value to be used as path separator
128128 */
129129 public void setPathSeparator (String pathSeparator ) {
130130 this .pathSeparator = (pathSeparator != null ? pathSeparator : DEFAULT_PATH_SEPARATOR );
@@ -136,8 +136,6 @@ public void setPathSeparator(String pathSeparator) {
136136 * <p>
137137 * Default is {@code true}. Switch this to {@code false} for case-insensitive
138138 * matching.
139- *
140- * @since 4.2
141139 */
142140 public void setCaseSensitive (boolean caseSensitive ) {
143141 this .caseSensitive = caseSensitive ;
Original file line number Diff line number Diff line change 4343 <plugin >
4444 <groupId >com.igormaznitsa</groupId >
4545 <artifactId >jcp</artifactId >
46- <version >6.1.2-SNAPSHOT </version >
46+ <version >6.1.2</version >
4747 <executions >
4848 <execution >
4949 <id >generateSources</id >
Original file line number Diff line number Diff line change 2020 <plugin >
2121 <groupId >com.igormaznitsa</groupId >
2222 <artifactId >jcp</artifactId >
23- <version >6.1.2-SNAPSHOT </version >
23+ <version >6.1.2</version >
2424 <configuration >
2525 <source >/</source >
2626 <copyFileAttributes >true</copyFileAttributes >
You can’t perform that action at this time.
0 commit comments