This is an automated email from the ASF dual-hosted git repository. rec pushed a commit to branch feature/196-Provide-OSGI-metadata-in-JARs in repository https://gitbox.apache.org/repos/asf/uima-uimafit.git
commit 5a79a3218798b345ddd4df676d73af0448131fd3 Author: Richard Eckart de Castilho <[email protected]> AuthorDate: Thu Sep 1 13:08:32 2022 +0200 Issue #196 - Provide OSGI metadata in JARs - Turn junit module into an OSGI bundle as well --- uimafit-cpe/.gitignore | 1 + uimafit-junit/.gitignore | 1 + uimafit-junit/marker-file-identifying-osgi-bundle | 0 uimafit-junit/pom.xml | 4 ++++ 4 files changed, 6 insertions(+) diff --git a/uimafit-cpe/.gitignore b/uimafit-cpe/.gitignore new file mode 100644 index 0000000..3385916 --- /dev/null +++ b/uimafit-cpe/.gitignore @@ -0,0 +1 @@ +/META-INF/ diff --git a/uimafit-junit/.gitignore b/uimafit-junit/.gitignore new file mode 100644 index 0000000..3385916 --- /dev/null +++ b/uimafit-junit/.gitignore @@ -0,0 +1 @@ +/META-INF/ diff --git a/uimafit-junit/marker-file-identifying-osgi-bundle b/uimafit-junit/marker-file-identifying-osgi-bundle new file mode 100644 index 0000000..e69de29 diff --git a/uimafit-junit/pom.xml b/uimafit-junit/pom.xml index 0aab7fc..d67b708 100644 --- a/uimafit-junit/pom.xml +++ b/uimafit-junit/pom.xml @@ -25,8 +25,12 @@ <version>3.4.0-SNAPSHOT</version> <relativePath>../uimafit-parent</relativePath> </parent> + <artifactId>uimafit-junit</artifactId> + <packaging>bundle</packaging> + <name>Apache UIMA uimaFIT - JUnit support</name> + <dependencies> <dependency> <groupId>org.apache.uima</groupId>
