Repository: incubator-taverna-common-activities Updated Branches: refs/heads/master e17e89814 -> 613197949
Expose test-jar from taverna-wsdl-generic Project: http://git-wip-us.apache.org/repos/asf/incubator-taverna-common-activities/repo Commit: http://git-wip-us.apache.org/repos/asf/incubator-taverna-common-activities/commit/61319794 Tree: http://git-wip-us.apache.org/repos/asf/incubator-taverna-common-activities/tree/61319794 Diff: http://git-wip-us.apache.org/repos/asf/incubator-taverna-common-activities/diff/61319794 Branch: refs/heads/master Commit: 6131979493bd9d5b138315576e95188445ae057b Parents: e17e898 Author: Stian Soiland-Reyes <[email protected]> Authored: Mon Jan 8 14:42:25 2018 +0000 Committer: Stian Soiland-Reyes <[email protected]> Committed: Mon Jan 8 14:42:25 2018 +0000 ---------------------------------------------------------------------- pom.xml | 2 +- taverna-wsdl-generic/pom.xml | 25 +++++++++++++++++++++++++ 2 files changed, 26 insertions(+), 1 deletion(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/incubator-taverna-common-activities/blob/61319794/pom.xml ---------------------------------------------------------------------- diff --git a/pom.xml b/pom.xml index 4a4545c..facadee 100644 --- a/pom.xml +++ b/pom.xml @@ -22,7 +22,7 @@ <parent> <groupId>org.apache.taverna</groupId> <artifactId>apache-taverna-parent</artifactId> - <version>2-incubating</version> + <version>3-incubating-SNAPSHOT</version> </parent> <groupId>org.apache.taverna.commonactivities</groupId> <artifactId>apache-taverna-common-activities</artifactId> http://git-wip-us.apache.org/repos/asf/incubator-taverna-common-activities/blob/61319794/taverna-wsdl-generic/pom.xml ---------------------------------------------------------------------- diff --git a/taverna-wsdl-generic/pom.xml b/taverna-wsdl-generic/pom.xml index 8d4adc8..a1c6eec 100644 --- a/taverna-wsdl-generic/pom.xml +++ b/taverna-wsdl-generic/pom.xml @@ -67,6 +67,31 @@ </execution> </executions> </plugin> + + <!-- Expose test-jar, e.g. for taverna-scufl2-wfbundle --> + <plugin> + <groupId>org.apache.maven.plugins</groupId> + <artifactId>maven-jar-plugin</artifactId> + <executions> + <execution> + <goals> + <goal>test-jar</goal> + </goals> + </execution> + </executions> + </plugin> + <plugin> + <groupId>org.apache.maven.plugins</groupId> + <artifactId>maven-source-plugin</artifactId> + <executions> + <execution> + <goals> + <goal>test-jar</goal> + </goals> + </execution> + </executions> + </plugin> + </plugins> </build>
