This is an automated email from the ASF dual-hosted git repository. rec pushed a commit to branch refactoring/235-Update-dependencies in repository https://gitbox.apache.org/repos/asf/uima-uimafit.git
commit 3c1ea4dc076a65b7194e187de06ceb91a16171f7 Author: Richard Eckart de Castilho <[email protected]> AuthorDate: Thu Oct 12 12:18:25 2023 +0200 Issue #235: Update dependencies - UIMA Parent POM 17-SNAPSHOT -> 17 - Added uimaFIT BOM --- pom.xml | 1 + uimafit-bom/pom.xml | 75 ++++++++++++++++++++++++++++++++++++++++++++++++++ uimafit-parent/pom.xml | 2 +- 3 files changed, 77 insertions(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index 3e0da26..4779b53 100644 --- a/pom.xml +++ b/pom.xml @@ -131,6 +131,7 @@ </build> <modules> + <module>uimafit-bom</module> <module>uimafit-core</module> <module>uimafit-junit</module> <module>uimafit-assertj</module> diff --git a/uimafit-bom/pom.xml b/uimafit-bom/pom.xml new file mode 100644 index 0000000..5aa5bca --- /dev/null +++ b/uimafit-bom/pom.xml @@ -0,0 +1,75 @@ +<?xml version="1.0" encoding="UTF-8"?> +<!-- + Licensed to the Apache Software Foundation (ASF) under one + or more contributor license agreements. See the NOTICE file + distributed with this work for additional information + regarding copyright ownership. The ASF licenses this file + to you under the Apache License, Version 2.0 (the + "License"); you may not use this file except in compliance + with the License. You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + + Unless required by applicable law or agreed to in writing, + software distributed under the License is distributed on an + "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + KIND, either express or implied. See the License for the + specific language governing permissions and limitations + under the License. +--> +<project xmlns="http://maven.apache.org/POM/4.0.0" + xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" + xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> + <modelVersion>4.0.0</modelVersion> + + <parent> + <groupId>org.apache.uima</groupId> + <artifactId>parent-pom</artifactId> + <relativePath /> + <version>17</version> + </parent> + + <artifactId>uimafit-bom</artifactId> + <packaging>pom</packaging> + + <name>Apache UIMA uimaFIT - BOM</name> + <url>${uimaWebsiteUrl}</url> + + <licenses> + <license> + <name>Apache License, Version 2.0</name> + <url>http://www.apache.org/licenses/LICENSE-2.0.txt</url> + <distribution>repo</distribution> + </license> + </licenses> + + <dependencyManagement> + <dependencies> + <dependency> + <groupId>org.apache.uima</groupId> + <artifactId>uimafit-assertj</artifactId> + <version>3.5.0-SNAPSHOT</version> + </dependency> + <dependency> + <groupId>org.apache.uima</groupId> + <artifactId>uimafit-core</artifactId> + <version>3.5.0-SNAPSHOT</version> + </dependency> + <dependency> + <groupId>org.apache.uima</groupId> + <artifactId>uimafit-cpe</artifactId> + <version>3.5.0-SNAPSHOT</version> + </dependency> + <dependency> + <groupId>org.apache.uima</groupId> + <artifactId>uimafit-junit</artifactId> + <version>3.5.0-SNAPSHOT</version> + </dependency> + <dependency> + <groupId>org.apache.uima</groupId> + <artifactId>uimafit-spring</artifactId> + <version>3.5.0-SNAPSHOT</version> + </dependency> + </dependencies> + </dependencyManagement> +</project> \ No newline at end of file diff --git a/uimafit-parent/pom.xml b/uimafit-parent/pom.xml index 3ec33a1..c8cad3b 100644 --- a/uimafit-parent/pom.xml +++ b/uimafit-parent/pom.xml @@ -23,7 +23,7 @@ <groupId>org.apache.uima</groupId> <artifactId>parent-pom</artifactId> <relativePath /> - <version>17-SNAPSHOT</version> + <version>17</version> </parent> <artifactId>uimafit-parent</artifactId>
