Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion uimaj-documentation/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -286,7 +286,7 @@
<dependency>
<groupId>org.jruby</groupId>
<artifactId>jruby</artifactId>
<version>9.4.3.0</version>
<version>9.4.12.1</version>
</dependency>
<dependency>
<groupId>org.asciidoctor</groupId>
Expand Down
55 changes: 30 additions & 25 deletions uimaj-parent-internal/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -48,38 +48,38 @@
Local configurations within plugins should be avoided. Where plugins do not pick up default
properties already, they should be injected manually into the plugins.
-->
<maven.compiler.target>17</maven.compiler.target>
<maven.compiler.source>17</maven.compiler.source>
<maven.compiler.release>17</maven.compiler.release>
<maven.compiler.target>21</maven.compiler.target>
<maven.compiler.source>21</maven.compiler.source>
<maven.compiler.release>21</maven.compiler.release>
<maven.compiler.proc>none</maven.compiler.proc>
<execution.environment>JavaSE-17</execution.environment>
<execution.environment>JavaSE-21</execution.environment>

<maven.version>3.8.1</maven.version>

<asciidoctor.plugin.version>3.2.0</asciidoctor.plugin.version>
<asciidoctor.version>3.0.0</asciidoctor.version>
<asciidoctor.version>3.0.1</asciidoctor.version>
<asciidoctor.pdf.version>2.3.19</asciidoctor.pdf.version>
<assertj-version>3.27.5</assertj-version>
<bnd-version>7.1.0</bnd-version>
<assertj-version>3.27.7</assertj-version>
<bnd-version>7.2.1</bnd-version>
<bytebuddy-version>1.17.7</bytebuddy-version>
<commons-csv-version>1.14.1</commons-csv-version>
<commons-collections4-version>4.5.0</commons-collections4-version>
<commons-io-version>2.20.0</commons-io-version>
<commons-lang3-version>3.18.0</commons-lang3-version>
<commons-io-version>2.21.0</commons-io-version>
<commons-lang3-version>3.20.0</commons-lang3-version>
<commons-math3-version>3.6.1</commons-math3-version>
<jackson-version>2.20.0</jackson-version>
<jackson-version>2.21.1</jackson-version>
<javassist-version>3.30.2-GA</javassist-version>
<junit-version>5.11.4</junit-version>
<junit-platform-version>1.11.4</junit-platform-version>
<junit-version>5.14.3</junit-version>
<junit-platform-version>1.14.3</junit-platform-version>
<junit-vintage-version>4.13.2</junit-vintage-version>
<log4j-version>2.25.2</log4j-version>
<log4j-version>2.25.3</log4j-version>
<mockito-version>5.18.0</mockito-version>
<opentest4j-version>1.3.0</opentest4j-version>
<qdox-version>2.1.0</qdox-version>
<slf4j-version>1.7.36</slf4j-version>
<spring-version>6.2.11</spring-version>
<tycho-version>4.0.13</tycho-version>
<xmlunit-version>2.10.4</xmlunit-version>
<qdox-version>2.2.0</qdox-version>
<slf4j-version>2.0.17</slf4j-version>
<spring-version>6.2.17</spring-version>
<tycho-version>5.0.2</tycho-version>
<xmlunit-version>2.11.0</xmlunit-version>

<eclipseP2RepoId>org.eclipse.p2.202209</eclipseP2RepoId>

Expand Down Expand Up @@ -124,6 +124,13 @@

<dependencyManagement>
<dependencies>
<dependency>
<groupId>org.junit</groupId>
<artifactId>junit-bom</artifactId>
<version>${junit-version}</version>
<type>pom</type>
<scope>import</scope>
</dependency>
<dependency>
<groupId>net.bytebuddy</groupId>
<artifactId>byte-buddy</artifactId>
Expand All @@ -134,13 +141,6 @@
<artifactId>byte-buddy-agent</artifactId>
<version>${bytebuddy-version}</version>
</dependency>
<dependency>
<groupId>org.junit</groupId>
<artifactId>junit-bom</artifactId>
<version>${junit-version}</version>
<type>pom</type>
<scope>import</scope>
</dependency>
<dependency>
<groupId>org.opentest4j</groupId>
<artifactId>opentest4j</artifactId>
Expand Down Expand Up @@ -306,6 +306,11 @@
<artifactId>maven-compat</artifactId>
<version>${maven.version}</version>
</dependency>
<dependency>
<groupId>org.apache.maven.plugin-tools</groupId>
<artifactId>maven-plugin-annotations</artifactId>
<version>${maven.version}</version>
</dependency>

<dependency>
<groupId>org.javassist</groupId>
Expand Down
2 changes: 1 addition & 1 deletion uimaj-parent/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@
<parent>
<groupId>org.apache.uima</groupId>
<artifactId>parent-pom</artifactId>
<version>18</version>
<version>19-SNAPSHOT</version>
<relativePath />
</parent>

Expand Down
Loading