Skip to content

Commit

Permalink
#1561 - Upgrade dependencies
Browse files Browse the repository at this point in the history
- uima 3.4.0 -> 3.4.1
- spring 5.3.24 -> 5.3.25
  • Loading branch information
reckart committed Mar 7, 2023
1 parent 2bab7b0 commit e6df23e
Show file tree
Hide file tree
Showing 2 changed files with 26 additions and 2 deletions.
11 changes: 11 additions & 0 deletions dkpro-core-api-xml-asl/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -44,5 +44,16 @@
<groupId>org.slf4j</groupId>
<artifactId>slf4j-api</artifactId>
</dependency>

<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.assertj</groupId>
<artifactId>assertj-core</artifactId>
<scope>test</scope>
</dependency>
</dependencies>
</project>
17 changes: 15 additions & 2 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -53,8 +53,8 @@
<slf4j.version>1.7.36</slf4j.version>
<snakeyaml.version>1.33</snakeyaml.version>
<!-- The Spring version should be at least whatever uimaFIT requires -->
<spring.version>5.3.24</spring.version>
<uima.version>3.3.1</uima.version>
<spring.version>5.3.25</spring.version>
<uima.version>3.4.1</uima.version>
<uimafit.version>3.3.0</uimafit.version>
<uimafit.plugin.version>${uimafit.version}</uimafit.plugin.version>
</properties>
Expand Down Expand Up @@ -431,6 +431,19 @@
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-enforcer-plugin</artifactId>
<executions>
<execution>
<id>enforce-maven</id>
<goals>
<goal>enforce</goal>
</goals>
<configuration>
<rules>
<requireJavaVersion>
<version>[11,)</version>
</requireJavaVersion>
</rules>
</configuration>
</execution>
<execution>
<id>enforce-banned-dependencies</id>
<goals>
Expand Down

0 comments on commit e6df23e

Please sign in to comment.