Repository: incubator-taverna-osgi Updated Branches: refs/heads/master 9ead10197 -> 95549063e
Ensure test-jar is included Project: http://git-wip-us.apache.org/repos/asf/incubator-taverna-osgi/repo Commit: http://git-wip-us.apache.org/repos/asf/incubator-taverna-osgi/commit/95549063 Tree: http://git-wip-us.apache.org/repos/asf/incubator-taverna-osgi/tree/95549063 Diff: http://git-wip-us.apache.org/repos/asf/incubator-taverna-osgi/diff/95549063 Branch: refs/heads/master Commit: 95549063e125e31a1476f0a5dae57d0b2828973e Parents: 9ead101 Author: Stian Soiland-Reyes <[email protected]> Authored: Mon Jan 8 14:02:40 2018 +0000 Committer: Stian Soiland-Reyes <[email protected]> Committed: Mon Jan 8 14:02:40 2018 +0000 ---------------------------------------------------------------------- taverna-configuration-api/pom.xml | 28 ++++++++++++++++++++++++++++ 1 file changed, 28 insertions(+) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/incubator-taverna-osgi/blob/95549063/taverna-configuration-api/pom.xml ---------------------------------------------------------------------- diff --git a/taverna-configuration-api/pom.xml b/taverna-configuration-api/pom.xml index bfd29a5..9eb14fe 100644 --- a/taverna-configuration-api/pom.xml +++ b/taverna-configuration-api/pom.xml @@ -44,4 +44,32 @@ <scope>test</scope> </dependency> </dependencies> + + <build> + <plugins> + <!-- Expose test-jar, e.g. for taverna-configuration-impl --> + <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> </project>
