Skip to content

Commit dbc270b

Browse files
committed
removed spring as dependency, variant of optimized AntPathMatcher based on Spring one created in utils
1 parent 205292e commit dbc270b

4 files changed

Lines changed: 369 additions & 17 deletions

File tree

jcp/pom.xml

Lines changed: 0 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -240,12 +240,6 @@
240240
<scope>provided</scope>
241241
</dependency>
242242

243-
<dependency>
244-
<groupId>org.springframework</groupId>
245-
<artifactId>spring-core</artifactId>
246-
<version>5.1.6.RELEASE</version>
247-
<scope>compile</scope>
248-
</dependency>
249243
<dependency>
250244
<groupId>org.gradle</groupId>
251245
<artifactId>gradle-core</artifactId>
@@ -472,15 +466,6 @@
472466
<exclude>META-INF/services/org.xml.*</exclude>
473467
</excludes>
474468
</filter>
475-
<filter>
476-
<artifact>org.springframework:spring-core</artifact>
477-
<includes>
478-
<include>org/springframework/util/StringUtils*.class</include>
479-
<include>org/springframework/util/PathMatcher*.class</include>
480-
<include>org/springframework/util/AntPathMatcher*.class</include>
481-
<include>org/springframework/lang/Nullable.class</include>
482-
</includes>
483-
</filter>
484469
</filters>
485470
</configuration>
486471
</execution>

jcp/src/main/java/com/igormaznitsa/jcp/JcpPreprocessor.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -71,7 +71,7 @@
7171
import lombok.Data;
7272
import org.apache.commons.io.FileUtils;
7373
import org.apache.commons.io.FilenameUtils;
74-
import org.springframework.util.AntPathMatcher;
74+
import com.igormaznitsa.jcp.utils.AntPathMatcher;
7575

7676
/**
7777
* The main class implements the Java Comment Preprocessor, it has the main

0 commit comments

Comments
 (0)