summaryrefslogtreecommitdiffstats
path: root/pom.xml
diff options
context:
space:
mode:
authorInstrumental <jonathan.gathman@att.com>2019-08-02 15:54:29 -0500
committerInstrumental <jonathan.gathman@att.com>2019-08-02 15:55:22 -0500
commit2e84bc99049aa25107df4f045894059321bf4b3d (patch)
treeae4d0092253d16cf147d3040bca73615eff4c1db /pom.xml
parente9ae04800c417330c3e1c5dae45744f819f41130 (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.xml39
1 files changed, 39 insertions, 0 deletions
diff --git a/pom.xml b/pom.xml
index 5e6c3586..9937297b 100644
--- a/pom.xml
+++ b/pom.xml
@@ -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>