diff options
author | Jimmy Forsyth <jf2512@att.com> | 2019-08-26 15:36:55 -0400 |
---|---|---|
committer | Jimmy Forsyth <jf2512@att.com> | 2019-08-26 15:36:57 -0400 |
commit | b0749c57d558a257c358b21ec1c5f4747a762aaf (patch) | |
tree | 44e39928b0bded1e997562aa9f4ab9309305b888 | |
parent | 04ff22e8d665351519b70b85996ee984b387adb8 (diff) |
Move buildhelper to docker profile
Issue-ID: AAI-2579
Signed-off-by: Jimmy Forsyth <jf2512@att.com>
Change-Id: I0212eca15708f9d3fc5e59dee5faadabf6ac77a6
-rw-r--r-- | pom.xml | 29 |
1 files changed, 15 insertions, 14 deletions
@@ -477,7 +477,20 @@ limitations under the License. </execution> </executions> </plugin> - </plugins> + <plugin> + <groupId>org.codehaus.mojo</groupId> + <artifactId>build-helper-maven-plugin</artifactId> + <version>3.0.0</version> + <executions> + <execution> + <id>parse-version</id> + <goals> + <goal>parse-version</goal> + </goals> + </execution> + </executions> + </plugin> + </plugins> </build> </profile> </profiles> @@ -651,19 +664,7 @@ limitations under the License. </execution> </executions> </plugin> - <plugin> - <groupId>org.codehaus.mojo</groupId> - <artifactId>build-helper-maven-plugin</artifactId> - <version>3.0.0</version> - <executions> - <execution> - <id>parse-version</id> - <goals> - <goal>parse-version</goal> - </goals> - </execution> - </executions> - </plugin> + </plugins> </build> |