blob: a5c8358c0bf93694c83e846787c4a64008e15cf7 [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>
Michael Landod8a0dea2018-06-02 19:23:27 +030014 <version>1.3.0-SNAPSHOT</version>
vempoc3c48162018-04-22 20:02:08 +030015 <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>
Michael Lando636c9932018-05-22 18:26:11 +030037 <spring.framework.version>4.3.15.RELEASE</spring.framework.version>
sheetalm297209b2018-02-20 19:06:27 +053038 <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>
vempo68945dd2018-07-08 11:29:54 +0300105 <dependency>
106 <groupId>org.mockito</groupId>
107 <artifactId>mockito-all</artifactId>
108 <version>${mockito.all.version}</version>
109 </dependency>
sheetalm297209b2018-02-20 19:06:27 +0530110 </dependencies>
111 </dependencyManagement>
112
sheetalmeb770302018-04-13 13:02:52 +0530113 <repositories>
114 <!-- LF repositories -->
115 <repository>
116 <id>ecomp-releases</id>
117 <name>Release Repository</name>
118 <url>${nexus.proxy}/content/repositories/releases/</url>
119 </repository>
120 <repository>
121 <id>ecomp-snapshots</id>
122 <name>Snapshots Repository</name>
123 <url>${nexus.proxy}/content/repositories/snapshots/</url>
124 </repository>
125 <repository>
126 <id>ecomp-public</id>
127 <name>Public Repository</name>
128 <url>${nexus.proxy}/content/repositories/public/</url>
129 </repository>
130 <!-- LF repositories END-->
131 </repositories>
132
133 <distributionManagement>
134 <repository>
135 <id>ecomp-releases</id>
136 <name>Release Repository</name>
137 <url>${nexus.proxy}/content/repositories/releases/</url>
138 </repository>
139 <snapshotRepository>
140 <id>ecomp-snapshots</id>
141 <name>Snapshot Repository</name>
142 <url>${nexus.proxy}/content/repositories/snapshots/</url>
143 </snapshotRepository>
144 <site>
145 <id>ecomp-site</id>
146 <url>dav:${nexus.proxy}${sitePath}</url>
147 </site>
148 </distributionManagement>
149
sheetalm297209b2018-02-20 19:06:27 +0530150</project>