diff options
-rw-r--r-- | testbench-api/pom.xml | 14 |
1 files changed, 13 insertions, 1 deletions
diff --git a/testbench-api/pom.xml b/testbench-api/pom.xml index c7cc8ccfe4..adec4025ef 100644 --- a/testbench-api/pom.xml +++ b/testbench-api/pom.xml @@ -47,7 +47,19 @@ </execution> </executions> </plugin> - + <plugin> + <groupId>org.apache.maven.plugins</groupId> + <artifactId>maven-source-plugin</artifactId> + <version>3.0.1</version> + <executions> + <execution> + <id>attach-sources</id> + <goals> + <goal>jar</goal> + </goals> + </execution> + </executions> + </plugin> </plugins> </build> |