blob: 2b574000cd058998672e0f9d5f186593fa892d74 [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
sheetalm894285b2018-04-12 13:20:36 +05307 <groupId>org.onap.sdc.activityspec</groupId>
sheetalm297209b2018-02-20 19:06:27 +05308 <artifactId>activity-spec</artifactId>
sheetalmed128902018-03-13 19:32:08 +05309 <packaging>pom</packaging>
sheetalm297209b2018-02-20 19:06:27 +053010
vempoc3c48162018-04-22 20:02:08 +030011 <parent>
12 <groupId>org.openecomp.sdc</groupId>
13 <artifactId>sdc-main</artifactId>
14 <version>1.2.0-SNAPSHOT</version>
15 <relativePath>../..</relativePath>
16 </parent>
17
sheetalm297209b2018-02-20 19:06:27 +053018 <properties>
sheetalmed128902018-03-13 19:32:08 +053019
20 <maven.compiler.source>1.8</maven.compiler.source>
21 <maven.compiler.target>1.8</maven.compiler.target>
22 <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
23
sheetalm297209b2018-02-20 19:06:27 +053024 <mvn.surefire.version>2.19.1</mvn.surefire.version>
25 <jacoco.version>0.7.9</jacoco.version>
26 <mvn.compiler.version>2.5.1</mvn.compiler.version>
27 <mvn.license.version>1.10</mvn.license.version>
28 <mvn.assembly.version>2.1</mvn.assembly.version>
29 <mvn.deploy.version>2.4</mvn.deploy.version>
30 <mvn.jar.version>2.4</mvn.jar.version>
31 <mvn.war.version>2.1.1</mvn.war.version>
32 <mvn.swagger.version>3.1.0</mvn.swagger.version>
sheetalmed128902018-03-13 19:32:08 +053033 <mvn.resources.version>3.0.2</mvn.resources.version>
Avi Zivc175a0d2018-03-15 13:21:44 +020034 <mvn.docker.version>0.23.0</mvn.docker.version>
sheetalmed128902018-03-13 19:32:08 +053035
36 <mockito.all.version>1.10.19</mockito.all.version>
sheetalm297209b2018-02-20 19:06:27 +053037 <spring.framework.version>4.1.3.RELEASE</spring.framework.version>
38 <cxf.version>3.1.8</cxf.version>
39 <ws.rs.version>2.0.1</ws.rs.version>
40 <javax.inject.version>1</javax.inject.version>
41 <jersey.multipart.version>1.18.1</jersey.multipart.version>
42 <javax.servlet.version>2.5</javax.servlet.version>
43 <org.codehaus.jackson.version>1.9.13</org.codehaus.jackson.version>
sheetalmeb770302018-04-13 13:02:52 +053044 <nexus.proxy>https://nexus.onap.org</nexus.proxy>
45 <sitePath>/content/sites/site/org/onap/sdc/activityspec/${project.version}</sitePath>
sheetalmed128902018-03-13 19:32:08 +053046
sheetalm297209b2018-02-20 19:06:27 +053047 </properties>
48
sheetalmed128902018-03-13 19:32:08 +053049 <modules>
50 <module>activity-spec-web</module>
51 <module>activity-spec-init</module>
52 </modules>
53
sheetalm297209b2018-02-20 19:06:27 +053054 <build>
55 <pluginManagement>
sheetalmed128902018-03-13 19:32:08 +053056 <plugins>
57 <plugin>
58 <groupId>org.apache.maven.plugins</groupId>
59 <artifactId>maven-compiler-plugin</artifactId>
60 <version>${mvn.compiler.version}</version>
61 </plugin>
62 <plugin>
63 <groupId>io.fabric8</groupId>
64 <artifactId>docker-maven-plugin</artifactId>
65 <version>${mvn.docker.version}</version>
66 <configuration>
67 <verbose>false</verbose>
68 <registry>nexus3.onap.org:10001</registry>
69 <authConfig>
70 <pull>
71 <username>docker</username>
72 <password>docker</password>
73 </pull>
74 </authConfig>
75 </configuration>
76 <executions>
77 <execution>
78 <id>docker-build</id>
79 <phase>install</phase>
80 <goals>
81 <goal>build</goal>
82 </goals>
83 </execution>
84 <execution>
85 <id>push-images</id>
86 <phase>deploy</phase>
87 <goals>
88 <goal>push</goal>
89 </goals>
90 </execution>
91 </executions>
92 </plugin>
93 </plugins>
sheetalm297209b2018-02-20 19:06:27 +053094 </pluginManagement>
95 </build>
96
97 <dependencyManagement>
98 <dependencies>
99 <dependency>
100 <groupId>org.projectlombok</groupId>
101 <artifactId>lombok</artifactId>
102 <version>1.16.20</version>
103 <scope>provided</scope>
104 </dependency>
105 </dependencies>
106 </dependencyManagement>
107
sheetalmeb770302018-04-13 13:02:52 +0530108 <repositories>
109 <!-- LF repositories -->
110 <repository>
111 <id>ecomp-releases</id>
112 <name>Release Repository</name>
113 <url>${nexus.proxy}/content/repositories/releases/</url>
114 </repository>
115 <repository>
116 <id>ecomp-snapshots</id>
117 <name>Snapshots Repository</name>
118 <url>${nexus.proxy}/content/repositories/snapshots/</url>
119 </repository>
120 <repository>
121 <id>ecomp-public</id>
122 <name>Public Repository</name>
123 <url>${nexus.proxy}/content/repositories/public/</url>
124 </repository>
125 <!-- LF repositories END-->
126 </repositories>
127
128 <distributionManagement>
129 <repository>
130 <id>ecomp-releases</id>
131 <name>Release Repository</name>
132 <url>${nexus.proxy}/content/repositories/releases/</url>
133 </repository>
134 <snapshotRepository>
135 <id>ecomp-snapshots</id>
136 <name>Snapshot Repository</name>
137 <url>${nexus.proxy}/content/repositories/snapshots/</url>
138 </snapshotRepository>
139 <site>
140 <id>ecomp-site</id>
141 <url>dav:${nexus.proxy}${sitePath}</url>
142 </site>
143 </distributionManagement>
144
sheetalm297209b2018-02-20 19:06:27 +0530145</project>