blob: 72b3bf5c6235be01d6727209b5d87ab726298e0c [file] [log] [blame]
sheetalm297209b2018-02-20 19:06:27 +05301<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">
sheetalmed128902018-03-13 19:32:08 +05304
sheetalm297209b2018-02-20 19:06:27 +05305 <modelVersion>4.0.0</modelVersion>
6
7 <groupId>org.openecomp.activityspec</groupId>
8 <artifactId>activity-spec</artifactId>
sheetalm297209b2018-02-20 19:06:27 +05309 <version>1.2.0-SNAPSHOT</version>
sheetalmed128902018-03-13 19:32:08 +053010 <packaging>pom</packaging>
sheetalm297209b2018-02-20 19:06:27 +053011
12 <properties>
sheetalmed128902018-03-13 19:32:08 +053013
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
sheetalm297209b2018-02-20 19:06:27 +053018 <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>
sheetalmed128902018-03-13 19:32:08 +053027 <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>
sheetalm297209b2018-02-20 19:06:27 +053031 <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>
sheetalmed128902018-03-13 19:32:08 +053038
sheetalm297209b2018-02-20 19:06:27 +053039 </properties>
40
sheetalmed128902018-03-13 19:32:08 +053041 <modules>
42 <module>activity-spec-web</module>
43 <module>activity-spec-init</module>
44 </modules>
45
sheetalm297209b2018-02-20 19:06:27 +053046 <build>
47 <pluginManagement>
sheetalmed128902018-03-13 19:32:08 +053048 <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>
sheetalm297209b2018-02-20 19:06:27 +053086 </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
sheetalm297209b2018-02-20 19:06:27 +0530100</project>