diff options
author | rogozinds <rogozinds@gmail.com> | 2017-01-09 03:46:07 -0800 |
---|---|---|
committer | Henri Sara <henri.sara@gmail.com> | 2017-01-09 13:46:07 +0200 |
commit | c7b52ef7ea750680dc58e400eb9688e8e3bdf5fa (patch) | |
tree | 3bb16f9448ecf180187218512f21341631b82c71 | |
parent | 886a837d6d16216606dcb564c5450e1b6bf136d3 (diff) | |
download | vaadin-framework-c7b52ef7ea750680dc58e400eb9688e8e3bdf5fa.tar.gz vaadin-framework-c7b52ef7ea750680dc58e400eb9688e8e3bdf5fa.zip |
Add maven-source plugin to testbench-api (#8167)
-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> |