diff options
Diffstat (limited to 'common/pom.xml')
-rw-r--r-- | common/pom.xml | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/common/pom.xml b/common/pom.xml index d962fc74a..78789a2e7 100644 --- a/common/pom.xml +++ b/common/pom.xml @@ -33,4 +33,22 @@ <artifactId>policy-clamp-common</artifactId> <name>${project.artifactId}</name> <description>Common utilities and code for the TOSCA Control Loop system</description> + + <build> + <plugins> + <!-- Builds examples jar --> + <plugin> + <groupId>org.apache.maven.plugins</groupId> + <artifactId>maven-jar-plugin</artifactId> + <version>3.2.0</version> + <executions> + <execution> + <goals> + <goal>test-jar</goal> + </goals> + </execution> + </executions> + </plugin> + </plugins> + </build> </project> |