diff options
author | Instrumental <jonathan.gathman@att.com> | 2019-08-02 15:54:29 -0500 |
---|---|---|
committer | Instrumental <jonathan.gathman@att.com> | 2019-08-02 15:55:22 -0500 |
commit | 2e84bc99049aa25107df4f045894059321bf4b3d (patch) | |
tree | ae4d0092253d16cf147d3040bca73615eff4c1db /pom.xml | |
parent | e9ae04800c417330c3e1c5dae45744f819f41130 (diff) |
Make Docker build from Root Maven
Issue-ID: AAF-917
Change-Id: Ieeac6254a626a4de42e6f082b727ec52fe9bb194
Signed-off-by: Instrumental <jonathan.gathman@att.com>
Diffstat (limited to 'pom.xml')
-rw-r--r-- | pom.xml | 39 |
1 files changed, 39 insertions, 0 deletions
@@ -368,4 +368,43 @@ <url>dav:${nexusproxy}${sitePath}</url> </site> </distributionManagement> + + <profiles> + <profile> + <id>build-docker</id> + <build> + <plugins> + <plugin> + <groupId>org.codehaus.mojo</groupId> + <artifactId>exec-maven-plugin</artifactId> + <version>1.6.0</version> + <executions> + <execution> + <id>Docker Build</id> + <goals> + <goal>exec</goal> + </goals> + </execution> + </executions> + <configuration> + <skip>true</skip> + <executable>bash</executable> + <commandlineArgs>echo "No Docker Here"</commandlineArgs> + </configuration> + </plugin> + <plugin> + <groupId>org.sonarsource.scanner.maven</groupId> + <artifactId>sonar-maven-plugin</artifactId> + <configuration> + <skip>true</skip> + </configuration> + </plugin> + </plugins> + </build> + + <modules> + <module>auth/docker</module> + </modules> + </profile> + </profiles> </project> |