Revert "update sdc version"
[sdc.git] / services / activity-spec / pom.xml
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">
4
5     <modelVersion>4.0.0</modelVersion>
6
7     <groupId>org.onap.sdc.activityspec</groupId>
8     <artifactId>activity-spec</artifactId>
9     <packaging>pom</packaging>
10
11     <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
18     <properties>
19
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
24         <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>
33         <mvn.resources.version>3.0.2</mvn.resources.version>
34         <mvn.docker.version>0.23.0</mvn.docker.version>
35
36         <mockito.all.version>1.10.19</mockito.all.version>
37         <spring.framework.version>4.3.15.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>
44         <nexus.proxy>https://nexus.onap.org</nexus.proxy>
45         <sitePath>/content/sites/site/org/onap/sdc/activityspec/${project.version}</sitePath>
46
47     </properties>
48
49     <modules>
50         <module>activity-spec-web</module>
51         <module>activity-spec-init</module>
52     </modules>
53
54     <build>
55         <pluginManagement>
56             <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>
94         </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
108     <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
145 </project>