diff options
author | Vitaly Takmazov | 2021-12-29 05:39:19 +0300 |
---|---|---|
committer | Vitaly Takmazov | 2021-12-29 05:39:19 +0300 |
commit | 9c6d0e3f5d48d79fe8b4729664d889b25007ac70 (patch) | |
tree | 5c91ea921f594eab92e2f9c0b0c17c44b864835b /pom.xml | |
parent | 9e4f1c66963816061084d67438dcd379a584711c (diff) |
Maven: repackage was not executed from pluginManagement section
Diffstat (limited to 'pom.xml')
-rw-r--r-- | pom.xml | 26 |
1 files changed, 14 insertions, 12 deletions
@@ -262,18 +262,6 @@ <pluginManagement> <plugins> <plugin> - <groupId>org.springframework.boot</groupId> - <artifactId>spring-boot-maven-plugin</artifactId> - <configuration> - <excludes> - <exclude> - <groupId>com.google.code.findbugs</groupId> - <artifactId>jsr305</artifactId> - </exclude> - </excludes> - </configuration> - </plugin> - <plugin> <groupId>org.codehaus.mojo</groupId> <artifactId>exec-maven-plugin</artifactId> <version>3.0.0</version> @@ -309,6 +297,20 @@ </plugin> </plugins> </pluginManagement> + <plugins> + <plugin> + <groupId>org.springframework.boot</groupId> + <artifactId>spring-boot-maven-plugin</artifactId> + <configuration> + <excludes> + <exclude> + <groupId>com.google.code.findbugs</groupId> + <artifactId>jsr305</artifactId> + </exclude> + </excludes> + </configuration> + </plugin> + </plugins> </build> <profiles> <profile> |