diff options
author | Henri Sara <hesara@vaadin.com> | 2016-04-13 11:58:34 +0300 |
---|---|---|
committer | Teemu Suo-Anttila <teemusa@vaadin.com> | 2016-04-13 09:01:44 +0000 |
commit | bd987e2e1d7aaf2fdb8253c4d9f383d8c5715555 (patch) | |
tree | 3ccf3ab7624d2b2e82c48804a67914129fa76f19 | |
parent | f39691dddeaab84d7249cee22fb11888f3ff83e2 (diff) | |
download | vaadin-framework-bd987e2e1d7aaf2fdb8253c4d9f383d8c5715555.tar.gz vaadin-framework-bd987e2e1d7aaf2fdb8253c4d9f383d8c5715555.zip |
Skip GPG signing for vaadin-all
The type of the module is JAR but it does not actually produce a JAR,
so GPG signing needs to be explicitly skipped.
Change-Id: If8d0577a0a75e2a86077451efdc79b72f06fbf38
-rw-r--r-- | all/pom.xml | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/all/pom.xml b/all/pom.xml index 92c5437f1d..c65c5df7e2 100644 --- a/all/pom.xml +++ b/all/pom.xml @@ -339,6 +339,17 @@ </executions> </plugin> </plugins> + <pluginManagement> + <plugins> + <plugin> + <groupId>org.apache.maven.plugins</groupId> + <artifactId>maven-gpg-plugin</artifactId> + <configuration> + <skip>true</skip> + </configuration> + </plugin> + </plugins> + </pluginManagement> </build> </profile> </profiles> |