diff options
author | Dmitry Puzikov <dmitry.puzikov@tieto.com> | 2019-08-15 13:45:56 +0200 |
---|---|---|
committer | Dmitry Puzikov <dmitry.puzikov@tieto.com> | 2019-08-15 13:45:56 +0200 |
commit | 649585b88b758d5c3e702446385ffe733ceea824 (patch) | |
tree | 70c4de510446414ee72e8c6a2e59f9f5b6f0bc7c /pom.xml | |
parent | fff2d1af7b401d6334c4b09868597dcc6c054e2b (diff) |
Created maven modules for aai-common docker images.
aai-common and aai-haproxy docker images can be build with maven.
Change-Id: Iffbc2f4984316e3acc35558bdde0dbea76388ada
Issue-ID: INT-1023
Signed-off-by: Dmitry Puzikov <dmitry.puzikov@tieto.com>
Diffstat (limited to 'pom.xml')
-rw-r--r-- | pom.xml | 55 |
1 files changed, 32 insertions, 23 deletions
@@ -44,6 +44,15 @@ <module>aai-utils</module> </modules> + <profiles> + <profile> + <id>docker</id> + <modules> + <module>aai-common-docker</module> + </modules> + </profile> + </profiles> + <properties> <aai.generate.schema>true</aai.generate.schema> <sitePath>/content/sites/site/org/onap/aai/aai-common/${project.artifactId}/${project.version}</sitePath> @@ -61,34 +70,34 @@ Using https://code.revelc.net/formatter-maven-plugin/ for Eclipse formatter Using https://github.com/diffplug/spotless/tree/master/plugin-maven for import order Use in combination to rewrite code and imports, then checkstyle - + mvn formatter:format spotless:apply process-sources --> <plugin> - <groupId>net.revelc.code.formatter</groupId> - <artifactId>formatter-maven-plugin</artifactId> - <version>2.8.1</version> - <configuration> + <groupId>net.revelc.code.formatter</groupId> + <artifactId>formatter-maven-plugin</artifactId> + <version>2.8.1</version> + <configuration> <configFile>${project.parent.basedir}/onap-java-formatter.xml</configFile> - </configuration> - <!-- https://code.revelc.net/formatter-maven-plugin/ - use mvn formatter:format to rewrite source files - use mvn formatter:validate to validate source files --> - </plugin> + </configuration> + <!-- https://code.revelc.net/formatter-maven-plugin/ + use mvn formatter:format to rewrite source files + use mvn formatter:validate to validate source files --> + </plugin> <plugin> - <groupId>com.diffplug.spotless</groupId> - <artifactId>spotless-maven-plugin</artifactId> - <version>1.18.0</version> - <configuration> - <java> - <importOrder> - <order>com,java,javax,org</order> - </importOrder> - </java> - </configuration> - <!-- https://github.com/diffplug/spotless/tree/master/plugin-maven - use mvn spotless:apply to rewrite source files - use mvn spotless:check to validate source files --> + <groupId>com.diffplug.spotless</groupId> + <artifactId>spotless-maven-plugin</artifactId> + <version>1.18.0</version> + <configuration> + <java> + <importOrder> + <order>com,java,javax,org</order> + </importOrder> + </java> + </configuration> + <!-- https://github.com/diffplug/spotless/tree/master/plugin-maven + use mvn spotless:apply to rewrite source files + use mvn spotless:check to validate source files --> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> |