This is an automated email from the ASF dual-hosted git repository. rec pushed a commit to branch bugfix/UIMA-6462-Avoid-deploy-broken-checksum-files-for-p2content.xml-and-artifacts.xml-in-feature-modules in repository https://gitbox.apache.org/repos/asf/uima-uimaj.git
commit 097a083150358e323dbed5553e055a4eef2ddc20 Author: Richard Eckart de Castilho <[email protected]> AuthorDate: Mon May 23 09:18:44 2022 +0200 [UIMA-6462] Avoid deploy broken checksum files for p2content.xml and artifacts.xml in feature modules - Prevent feature modules from being deployed - Add a marker file to the project root to trigger the Tycho release extensions --- marker-file-enabling-tycho-release | 0 uimaj-eclipse-feature-runtime/pom.xml | 5 +++++ uimaj-eclipse-feature-tools/pom.xml | 5 +++++ 3 files changed, 10 insertions(+) diff --git a/marker-file-enabling-tycho-release b/marker-file-enabling-tycho-release new file mode 100644 index 000000000..e69de29bb diff --git a/uimaj-eclipse-feature-runtime/pom.xml b/uimaj-eclipse-feature-runtime/pom.xml index 6dcbe72cb..85a2a036a 100644 --- a/uimaj-eclipse-feature-runtime/pom.xml +++ b/uimaj-eclipse-feature-runtime/pom.xml @@ -36,6 +36,11 @@ need UIMA framework code</description> <url>${uimaWebsiteUrl}</url> + <properties> + <!-- https://issues.apache.org/jira/browse/UIMA-6462 --> + <maven.deploy.skip>true</maven.deploy.skip> + </properties> + <dependencies> <dependency> <groupId>org.apache.uima</groupId> diff --git a/uimaj-eclipse-feature-tools/pom.xml b/uimaj-eclipse-feature-tools/pom.xml index 9151f5708..a77fc3f17 100644 --- a/uimaj-eclipse-feature-tools/pom.xml +++ b/uimaj-eclipse-feature-tools/pom.xml @@ -34,6 +34,11 @@ <description>UIMA Eclipse Plugin Feature for base uima tooling</description> <url>${uimaWebsiteUrl}</url> + <properties> + <!-- https://issues.apache.org/jira/browse/UIMA-6462 --> + <maven.deploy.skip>true</maven.deploy.skip> + </properties> + <dependencies> <dependency> <groupId>org.apache.uima</groupId>
