sheetalm | 297209b | 2018-02-20 19:06:27 +0530 | [diff] [blame] | 1 | <project xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" |
| 2 | xmlns="http://maven.apache.org/POM/4.0.0" |
| 3 | xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> |
sheetalm | ed12890 | 2018-03-13 19:32:08 +0530 | [diff] [blame] | 4 | |
sheetalm | 297209b | 2018-02-20 19:06:27 +0530 | [diff] [blame] | 5 | <modelVersion>4.0.0</modelVersion> |
| 6 | |
| 7 | <groupId>org.openecomp.activityspec</groupId> |
| 8 | <artifactId>activity-spec</artifactId> |
sheetalm | 297209b | 2018-02-20 19:06:27 +0530 | [diff] [blame] | 9 | <version>1.2.0-SNAPSHOT</version> |
sheetalm | ed12890 | 2018-03-13 19:32:08 +0530 | [diff] [blame] | 10 | <packaging>pom</packaging> |
sheetalm | 297209b | 2018-02-20 19:06:27 +0530 | [diff] [blame] | 11 | |
| 12 | <properties> |
sheetalm | ed12890 | 2018-03-13 19:32:08 +0530 | [diff] [blame] | 13 | |
| 14 | <maven.compiler.source>1.8</maven.compiler.source> |
| 15 | <maven.compiler.target>1.8</maven.compiler.target> |
| 16 | <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> |
| 17 | |
sheetalm | 297209b | 2018-02-20 19:06:27 +0530 | [diff] [blame] | 18 | <mvn.surefire.version>2.19.1</mvn.surefire.version> |
| 19 | <jacoco.version>0.7.9</jacoco.version> |
| 20 | <mvn.compiler.version>2.5.1</mvn.compiler.version> |
| 21 | <mvn.license.version>1.10</mvn.license.version> |
| 22 | <mvn.assembly.version>2.1</mvn.assembly.version> |
| 23 | <mvn.deploy.version>2.4</mvn.deploy.version> |
| 24 | <mvn.jar.version>2.4</mvn.jar.version> |
| 25 | <mvn.war.version>2.1.1</mvn.war.version> |
| 26 | <mvn.swagger.version>3.1.0</mvn.swagger.version> |
sheetalm | ed12890 | 2018-03-13 19:32:08 +0530 | [diff] [blame] | 27 | <mvn.resources.version>3.0.2</mvn.resources.version> |
| 28 | <mvn.docker.version>0.24.0</mvn.docker.version> |
| 29 | |
| 30 | <mockito.all.version>1.10.19</mockito.all.version> |
sheetalm | 297209b | 2018-02-20 19:06:27 +0530 | [diff] [blame] | 31 | <spring.framework.version>4.1.3.RELEASE</spring.framework.version> |
| 32 | <cxf.version>3.1.8</cxf.version> |
| 33 | <ws.rs.version>2.0.1</ws.rs.version> |
| 34 | <javax.inject.version>1</javax.inject.version> |
| 35 | <jersey.multipart.version>1.18.1</jersey.multipart.version> |
| 36 | <javax.servlet.version>2.5</javax.servlet.version> |
| 37 | <org.codehaus.jackson.version>1.9.13</org.codehaus.jackson.version> |
sheetalm | ed12890 | 2018-03-13 19:32:08 +0530 | [diff] [blame] | 38 | |
sheetalm | 297209b | 2018-02-20 19:06:27 +0530 | [diff] [blame] | 39 | </properties> |
| 40 | |
sheetalm | ed12890 | 2018-03-13 19:32:08 +0530 | [diff] [blame] | 41 | <modules> |
| 42 | <module>activity-spec-web</module> |
| 43 | <module>activity-spec-init</module> |
| 44 | </modules> |
| 45 | |
sheetalm | 297209b | 2018-02-20 19:06:27 +0530 | [diff] [blame] | 46 | <build> |
| 47 | <pluginManagement> |
sheetalm | ed12890 | 2018-03-13 19:32:08 +0530 | [diff] [blame] | 48 | <plugins> |
| 49 | <plugin> |
| 50 | <groupId>org.apache.maven.plugins</groupId> |
| 51 | <artifactId>maven-compiler-plugin</artifactId> |
| 52 | <version>${mvn.compiler.version}</version> |
| 53 | </plugin> |
| 54 | <plugin> |
| 55 | <groupId>io.fabric8</groupId> |
| 56 | <artifactId>docker-maven-plugin</artifactId> |
| 57 | <version>${mvn.docker.version}</version> |
| 58 | <configuration> |
| 59 | <verbose>false</verbose> |
| 60 | <registry>nexus3.onap.org:10001</registry> |
| 61 | <authConfig> |
| 62 | <pull> |
| 63 | <username>docker</username> |
| 64 | <password>docker</password> |
| 65 | </pull> |
| 66 | </authConfig> |
| 67 | </configuration> |
| 68 | <executions> |
| 69 | <execution> |
| 70 | <id>docker-build</id> |
| 71 | <phase>install</phase> |
| 72 | <goals> |
| 73 | <goal>build</goal> |
| 74 | </goals> |
| 75 | </execution> |
| 76 | <execution> |
| 77 | <id>push-images</id> |
| 78 | <phase>deploy</phase> |
| 79 | <goals> |
| 80 | <goal>push</goal> |
| 81 | </goals> |
| 82 | </execution> |
| 83 | </executions> |
| 84 | </plugin> |
| 85 | </plugins> |
sheetalm | 297209b | 2018-02-20 19:06:27 +0530 | [diff] [blame] | 86 | </pluginManagement> |
| 87 | </build> |
| 88 | |
| 89 | <dependencyManagement> |
| 90 | <dependencies> |
| 91 | <dependency> |
| 92 | <groupId>org.projectlombok</groupId> |
| 93 | <artifactId>lombok</artifactId> |
| 94 | <version>1.16.20</version> |
| 95 | <scope>provided</scope> |
| 96 | </dependency> |
| 97 | </dependencies> |
| 98 | </dependencyManagement> |
| 99 | |
sheetalm | 297209b | 2018-02-20 19:06:27 +0530 | [diff] [blame] | 100 | </project> |