diff options
Diffstat (limited to 'dependencies-bom/pom.xml')
-rw-r--r-- | dependencies-bom/pom.xml | 18 |
1 files changed, 16 insertions, 2 deletions
diff --git a/dependencies-bom/pom.xml b/dependencies-bom/pom.xml index f5b5a913..efbae7ef 100644 --- a/dependencies-bom/pom.xml +++ b/dependencies-bom/pom.xml @@ -142,8 +142,8 @@ <version>2.2.8</version> <exclusions> <exclusion> - <artifactId>stax-api</artifactId> <groupId>javax.xml.stream</groupId> + <artifactId>stax-api</artifactId> </exclusion> </exclusions> </dependency> @@ -305,11 +305,25 @@ </dependency> </dependencies> </dependencyManagement> - <dependencies> <dependency> <groupId>org.slf4j</groupId> <artifactId>slf4j-api</artifactId> </dependency> </dependencies> + + <build> + <plugins> + <plugin> + <groupId>org.apache.maven.plugins</groupId> + <artifactId>maven-deploy-plugin</artifactId> + <!-- This version supports the "deployAtEnd" parameter --> + <version>2.8</version> + <configuration> + <skip/> + <deployAtEnd>true</deployAtEnd> + </configuration> + </plugin> + </plugins> + </build> </project> |