This is an automated email from the ASF dual-hosted git repository. rec pushed a commit to branch feature/327-Provide-a-BOM in repository https://gitbox.apache.org/repos/asf/uima-uimaj.git
commit 31ed91147a43183e24c0bd2a9bf968683d6ff1ec Author: Richard Eckart de Castilho <[email protected]> AuthorDate: Wed Aug 2 19:36:56 2023 +0200 Issue #327: Provide a BOM - BOM should not inherit from UIMAJ parent pom which does the internal dependency management --- pom.xml | 1 + uimaj-bom/pom.xml | 6 +++--- 2 files changed, 4 insertions(+), 3 deletions(-) diff --git a/pom.xml b/pom.xml index 83119c9f7..14a88d680 100644 --- a/pom.xml +++ b/pom.xml @@ -186,6 +186,7 @@ </dependencies> <modules> + <module>uimaj-bom</module> <module>uimaj-parent</module> <module>aggregate-uimaj</module> <!-- UIMA 3.4.1 has no issues from Jira --> diff --git a/uimaj-bom/pom.xml b/uimaj-bom/pom.xml index dfdaf896c..1b3c1435a 100644 --- a/uimaj-bom/pom.xml +++ b/uimaj-bom/pom.xml @@ -24,9 +24,9 @@ <parent> <groupId>org.apache.uima</groupId> - <artifactId>uimaj-parent</artifactId> - <version>3.5.0-SNAPSHOT</version> - <relativePath>../uimaj-parent/pom.xml</relativePath> + <artifactId>parent-pom</artifactId> + <relativePath /> + <version>17-SNAPSHOT</version> </parent> <artifactId>uimaj-bom</artifactId>
