Skip to content

Commit e40b7fd

Browse files
committed
refactoring
1 parent cef47eb commit e40b7fd

File tree

5 files changed

+7
-21
lines changed

5 files changed

+7
-21
lines changed

.projectKnowledge/doc1.mmd

+3-5
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ Mind Map generated by NB MindMap plugin
22
> __version__=`1.1`,showJumps=`true`
33
---
44

5-
# JCP<br/>v 6\.1\.4
5+
# JCP<br/>v 7\.0\.0
66
> mmd.emoticon=`teapot`
77

88

@@ -20,11 +20,9 @@ Mind Map generated by NB MindMap plugin
2020
> topicLinkUID=`155B0D1A29FA`
2121

2222

23-
### Gradle
23+
### Gradle plugin
2424

25-
#### just use the ANT task<br/>in script
26-
- TOPIC
27-
<pre>155B0D1A29FA</pre>
25+
#### com\.igormaznitsa\.jcp
2826

2927
### Maven plugin<br/>\(MAVEN version\>=3\.0\)
3028
> topicLinkUID=`155B0A81B4AA`

README.md

+2
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,8 @@
99

1010
# Changelog
1111
- **7.0.0 (SNAPSHOT)**
12+
- reworked some parameters for Maven and ANT plug-ins
13+
- added embedded Gradle plugin `com.igormaznitsa.jcp`
1214
- added function `STR esc(STR)`
1315
- fixed build under JDK 9+
1416
- XML functions work through embedded [Apache Xalan](https://xalan.apache.org/) and [Apache Xerces](http://xerces.apache.org/)

changelog.txt

+2
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,6 @@
11
7.0.0 (SNAPSHOT)
2+
- added embedded Gradle plugin `com.igormaznitsa.jcp`
3+
- reworked some parameters for Maven and ANT plug-ins
24
- added function `STR esc(STR)`
35
- fixed build under JDK 9+
46
- XML functions work through embedded [Apache Xalan](https://xalan.apache.org/) and [Apache Xerces](http://xerces.apache.org/)

jcp/src/main/java/com/igormaznitsa/jcp/context/PreprocessorContext.java

-6
Original file line numberDiff line numberDiff line change
@@ -240,12 +240,6 @@ public void setTarget(@Nonnull final File file) {
240240
this.target = file.isAbsolute() ? file : new File(this.getBaseDir(), file.getPath());
241241
}
242242

243-
/**
244-
* Get patterns for excluded folders.
245-
*
246-
* @return array of patterns in Ant pattern format
247-
*/
248-
249243
/**
250244
* Check that the preprocessor context is a clone of another context.
251245
*

jcp/src/main/java/com/igormaznitsa/jcp/utils/antpathmatcher/PathMatcher.java

-10
Original file line numberDiff line numberDiff line change
@@ -26,16 +26,6 @@
2626

2727
/**
2828
* Strategy interface for {@code String}-based path matching.
29-
*
30-
* <p>
31-
* Used by {@link org.springframework.core.io.support.PathMatchingResourcePatternResolver},
32-
* {@link org.springframework.web.servlet.handler.AbstractUrlHandlerMapping},
33-
* and {@link org.springframework.web.servlet.mvc.WebContentInterceptor}.
34-
*
35-
* <p>
36-
* The default implementation is {@link AntPathMatcher}, supporting the
37-
* Ant-style pattern syntax.
38-
*
3929
* @author Juergen Hoeller
4030
* @see AntPathMatcher
4131
* @since 1.2

0 commit comments

Comments
 (0)