blob: c39b8f265c1062d8e02649de528d63e8c2b8c6ef [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>
sheetalm297209b2018-02-20 19:06:27 +053025 <mvn.compiler.version>2.5.1</mvn.compiler.version>
26 <mvn.license.version>1.10</mvn.license.version>
27 <mvn.assembly.version>2.1</mvn.assembly.version>
28 <mvn.deploy.version>2.4</mvn.deploy.version>
29 <mvn.jar.version>2.4</mvn.jar.version>
30 <mvn.war.version>2.1.1</mvn.war.version>
31 <mvn.swagger.version>3.1.0</mvn.swagger.version>
sheetalmed128902018-03-13 19:32:08 +053032 <mvn.resources.version>3.0.2</mvn.resources.version>
Avi Zivc175a0d2018-03-15 13:21:44 +020033 <mvn.docker.version>0.23.0</mvn.docker.version>
sheetalmed128902018-03-13 19:32:08 +053034
35 <mockito.all.version>1.10.19</mockito.all.version>
Michael Lando636c9932018-05-22 18:26:11 +030036 <spring.framework.version>4.3.15.RELEASE</spring.framework.version>
sheetalm297209b2018-02-20 19:06:27 +053037 <cxf.version>3.1.8</cxf.version>
38 <ws.rs.version>2.0.1</ws.rs.version>
39 <javax.inject.version>1</javax.inject.version>
40 <jersey.multipart.version>1.18.1</jersey.multipart.version>
41 <javax.servlet.version>2.5</javax.servlet.version>
42 <org.codehaus.jackson.version>1.9.13</org.codehaus.jackson.version>
sheetalmeb770302018-04-13 13:02:52 +053043 <nexus.proxy>https://nexus.onap.org</nexus.proxy>
44 <sitePath>/content/sites/site/org/onap/sdc/activityspec/${project.version}</sitePath>
sheetalmed128902018-03-13 19:32:08 +053045
sheetalm297209b2018-02-20 19:06:27 +053046 </properties>
47
sheetalmed128902018-03-13 19:32:08 +053048 <modules>
49 <module>activity-spec-web</module>
50 <module>activity-spec-init</module>
51 </modules>
52
sheetalm297209b2018-02-20 19:06:27 +053053 <build>
54 <pluginManagement>
sheetalmed128902018-03-13 19:32:08 +053055 <plugins>
56 <plugin>
57 <groupId>org.apache.maven.plugins</groupId>
58 <artifactId>maven-compiler-plugin</artifactId>
59 <version>${mvn.compiler.version}</version>
60 </plugin>
61 <plugin>
62 <groupId>io.fabric8</groupId>
63 <artifactId>docker-maven-plugin</artifactId>
64 <version>${mvn.docker.version}</version>
65 <configuration>
sheetalmed128902018-03-13 19:32:08 +053066 <registry>nexus3.onap.org:10001</registry>
67 <authConfig>
68 <pull>
69 <username>docker</username>
70 <password>docker</password>
71 </pull>
72 </authConfig>
73 </configuration>
74 <executions>
75 <execution>
76 <id>docker-build</id>
77 <phase>install</phase>
78 <goals>
79 <goal>build</goal>
80 </goals>
81 </execution>
82 <execution>
83 <id>push-images</id>
84 <phase>deploy</phase>
85 <goals>
86 <goal>push</goal>
87 </goals>
88 </execution>
89 </executions>
90 </plugin>
91 </plugins>
sheetalm297209b2018-02-20 19:06:27 +053092 </pluginManagement>
93 </build>
94
95 <dependencyManagement>
96 <dependencies>
97 <dependency>
98 <groupId>org.projectlombok</groupId>
99 <artifactId>lombok</artifactId>
100 <version>1.16.20</version>
101 <scope>provided</scope>
102 </dependency>
vempo68945dd2018-07-08 11:29:54 +0300103 <dependency>
104 <groupId>org.mockito</groupId>
105 <artifactId>mockito-all</artifactId>
106 <version>${mockito.all.version}</version>
107 </dependency>
sheetalm297209b2018-02-20 19:06:27 +0530108 </dependencies>
109 </dependencyManagement>
110
sheetalmeb770302018-04-13 13:02:52 +0530111 <repositories>
112 <!-- LF repositories -->
113 <repository>
114 <id>ecomp-releases</id>
115 <name>Release Repository</name>
116 <url>${nexus.proxy}/content/repositories/releases/</url>
117 </repository>
118 <repository>
119 <id>ecomp-snapshots</id>
120 <name>Snapshots Repository</name>
121 <url>${nexus.proxy}/content/repositories/snapshots/</url>
122 </repository>
123 <repository>
124 <id>ecomp-public</id>
125 <name>Public Repository</name>
126 <url>${nexus.proxy}/content/repositories/public/</url>
127 </repository>
128 <!-- LF repositories END-->
129 </repositories>
130
131 <distributionManagement>
132 <repository>
133 <id>ecomp-releases</id>
134 <name>Release Repository</name>
135 <url>${nexus.proxy}/content/repositories/releases/</url>
136 </repository>
137 <snapshotRepository>
138 <id>ecomp-snapshots</id>
139 <name>Snapshot Repository</name>
140 <url>${nexus.proxy}/content/repositories/snapshots/</url>
141 </snapshotRepository>
142 <site>
143 <id>ecomp-site</id>
144 <url>dav:${nexus.proxy}${sitePath}</url>
145 </site>
146 </distributionManagement>
147
sheetalm297209b2018-02-20 19:06:27 +0530148</project>