blob: 93f4f77b7dd76176912f2c12e4f440cc3d2fae05 [file] [log] [blame]
jimmydot3982f4f2017-05-07 14:58:24 -04001<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
2 xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
3 <modelVersion>4.0.0</modelVersion>
Ofir Sonsino1cfb0872018-01-31 17:19:00 +02004 <groupId>org.onap.vid</groupId>
jimmydot3982f4f2017-05-07 14:58:24 -04005 <artifactId>vid-parent</artifactId>
biniekbcb065c2018-11-22 16:17:37 +01006 <version>4.0.0-SNAPSHOT</version>
jimmydot3982f4f2017-05-07 14:58:24 -04007 <packaging>pom</packaging>
Jessica Wagantall88c65472017-09-08 15:10:11 -07008 <name>vid</name>
jimmydot3982f4f2017-05-07 14:58:24 -04009
10 <profiles>
11 <!-- DO NOT CHANGE THE *ORDER* IN WHICH THESE PROFILES ARE DEFINED! -->
12
13 <profile>
14 <id>onap</id>
15 <activation>
16 <activeByDefault>true</activeByDefault>
17 </activation>
18 <modules>
19 <module>vid-app-common</module>
Sonsino, Ofir (os0695)8c38abe2018-08-12 16:09:11 +030020 <module>vid-webpack-master</module>
jimmydot3982f4f2017-05-07 14:58:24 -040021 <module>epsdk-app-onap</module>
Ofir Sonsino1cfb0872018-01-31 17:19:00 +020022 <!--module>vid-automation</module-->
Sonsino, Ofir (os0695)8c38abe2018-08-12 16:09:11 +030023 <!--module>vid-ext-services-simulator</module-->
jimmydot3982f4f2017-05-07 14:58:24 -040024 </modules>
25
26 <repositories>
27 <repository>
28 <id>ecomp-releases</id>
29 <name>VID Release Repository</name>
30 <url>${nexusproxy}/${releaseNexusPath}</url>
31 </repository>
32 <repository>
33 <id>ecomp-snapshots</id>
34 <name>VID Snapshot Repository</name>
35 <url>${nexusproxy}/${snapshotNexusPath}</url>
36 </repository>
37 <repository>
38 <id>ecomp-staging</id>
39 <name>VID Staging Repository</name>
40 <url>${nexusproxy}/${stagingNexusPath}</url>
41 </repository>
42 <repository>
43 <!-- Snapshots repository has ECOMP snapshot artifacts -->
44 <id>oss-snapshots</id>
45 <name>oss Central - Snapshots</name>
46 <url>https://oss.sonatype.org/service/local/repositories/releases/content/</url>
47 </repository>
48 </repositories>
49
50 <distributionManagement>
51 <repository>
52 <id>ecomp-releases</id>
53 <name>VID Release Repository</name>
54 <url>${nexusproxy}/${releaseNexusPath}</url>
55 </repository>
56 <snapshotRepository>
57 <id>ecomp-snapshots</id>
58 <name>VID Snapshot Repository</name>
59 <url>${nexusproxy}/${snapshotNexusPath}</url>
60 </snapshotRepository>
61 <!-- added for javadoc -->
62 <site>
63 <id>ecomp-site</id>
64 <url>dav:${nexusproxy}${sitePath}</url>
65 </site>
66 </distributionManagement>
67
68 </profile>
69
70 <profile>
71 <id>docker</id>
72 <modules>
73 <module>vid-app-common</module>
Sonsino, Ofir (os0695)7059a9c2018-09-05 16:06:16 +030074 <module>vid-webpack-master</module>
jimmydot3982f4f2017-05-07 14:58:24 -040075 <module>epsdk-app-onap</module>
76 <module>deliveries</module>
77 </modules>
78 </profile>
79 </profiles>
80
81 <properties>
82 <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
83 <project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
Sonsino, Ofir (os0695)660da8a2018-10-24 15:00:44 +030084 <build.version>4.0.0-SNAPSHOT</build.version>
jimmydot3982f4f2017-05-07 14:58:24 -040085 <nexusproxy>https://nexus.onap.org</nexusproxy>
86 <snapshotNexusPath>/content/repositories/snapshots/</snapshotNexusPath>
87 <releaseNexusPath>/content/repositories/releases/</releaseNexusPath>
88 <stagingNexusPath>/content/repositories/staging/</stagingNexusPath>
Ofir Sonsino1cfb0872018-01-31 17:19:00 +020089 <sitePath>/content/sites/site/org/onap/vid/${project.version}</sitePath>
jimmydot3982f4f2017-05-07 14:58:24 -040090 </properties>
91
92 <build>
93 <plugins>
Ofir Sonsinoc52c3b42017-12-10 13:58:42 +020094 <plugin>
95 <groupId>org.codehaus.mojo</groupId>
96 <artifactId>versions-maven-plugin</artifactId>
97 <version>1.3.1</version>
98 </plugin>
jimmydot3982f4f2017-05-07 14:58:24 -040099 <plugin>
100 <groupId>org.sonatype.plugins</groupId>
101 <artifactId>nexus-staging-maven-plugin</artifactId>
102 <version>1.6.7</version>
103 <extensions>true</extensions>
104 <configuration>
105 <nexusUrl>${nexusproxy}</nexusUrl>
106 <stagingProfileId>176c31dfe190a</stagingProfileId>
107 <serverId>ecomp-staging</serverId>
108 </configuration>
109 </plugin>
110
jimmydotf88fada2017-05-07 19:42:59 -0400111 <plugin>
112 <groupId>org.apache.maven.plugins</groupId>
113 <artifactId>maven-site-plugin</artifactId>
114 <version>3.6</version>
115 <dependencies>
116 <dependency>
117 <groupId>org.apache.maven.wagon</groupId>
118 <artifactId>wagon-webdav-jackrabbit</artifactId>
119 <version>2.10</version>
120 </dependency>
121 </dependencies>
122 </plugin>
jimmydotf88fada2017-05-07 19:42:59 -0400123 <plugin>
124 <groupId>org.sonatype.plugins</groupId>
125 <artifactId>nexus-staging-maven-plugin</artifactId>
126 <version>1.6.7</version>
127 <extensions>true</extensions>
128 <configuration>
129 <nexusUrl>${nexusproxy}</nexusUrl>
130 <stagingProfileId>176c31dfe190a</stagingProfileId>
131 <serverId>ecomp-staging</serverId>
132 </configuration>
133 </plugin>
134
jimmydot3982f4f2017-05-07 14:58:24 -0400135 <plugin>
136 <groupId>org.apache.maven.plugins</groupId>
137 <artifactId>maven-deploy-plugin</artifactId>
138 <version>2.8</version>
139 </plugin>
140
141 <plugin>
142 <groupId>org.apache.maven.plugins</groupId>
143 <artifactId>maven-surefire-plugin</artifactId>
144 <version>2.17</version>
145 </plugin>
146
147 <plugin>
148 <groupId>org.apache.maven.plugins</groupId>
149 <artifactId>maven-compiler-plugin</artifactId>
150 <version>2.3.2</version>
151
152 <configuration>
153 <debug>true</debug>
154 <compilerArgument>-Xlint</compilerArgument>
155 <verbose>true</verbose>
156 <showDeprecation>true</showDeprecation>
157 <showWarnings>true</showWarnings>
158 <source>1.8</source>
159 <target>1.8</target>
160 </configuration>
161 </plugin>
162 <plugin>
163 <groupId>org.apache.maven.plugins</groupId>
164 <artifactId>maven-site-plugin</artifactId>
165 <version>3.6</version>
166 <dependencies>
167 <dependency>
168 <groupId>org.apache.maven.wagon</groupId>
169 <artifactId>wagon-webdav-jackrabbit</artifactId>
170 <version>2.10</version>
171 </dependency>
172 </dependencies>
173 </plugin>
174 <plugin>
Ofir Sonsino2f20b002017-12-11 11:21:00 +0200175 <groupId>org.sonarsource.scanner.maven</groupId>
176 <artifactId>sonar-maven-plugin</artifactId>
177 <version>3.3.0.603</version>
178 </plugin>
179 <plugin>
jimmydot3982f4f2017-05-07 14:58:24 -0400180 <groupId>com.blackducksoftware.integration</groupId>
181 <artifactId>hub-maven-plugin</artifactId>
182 <version>1.4.0</version>
183 <inherited>false</inherited>
184 <configuration>
185 <hubProjectName>${project.name}</hubProjectName>
186 <outputDirectory>${project.basedir}</outputDirectory>
187 </configuration>
188 <executions>
189 <execution>
190 <id>create-bdio-file</id>
191 <phase>package</phase>
192 <goals>
193 <goal>createHubOutput</goal>
194 </goals>
195 </execution>
196 </executions>
197 </plugin>
198 </plugins>
199 </build>
200
201 <!-- added for javadoc -->
202 <pluginRepositories>
203 <!-- Black Duck plugin dependencies -->
204 <pluginRepository>
205 <id>JCenter</id>
206 <name>JCenter Repository</name>
207 <url>http://jcenter.bintray.com</url>
208 </pluginRepository>
209
210 <pluginRepository>
211 <id>Restlet</id>
212 <name>Restlet Repository</name>
213 <url>http://maven.restlet.com</url>
214 </pluginRepository>
215 </pluginRepositories>
216 <reporting>
217 <plugins>
218
219 <plugin>
220 <groupId>org.apache.maven.plugins</groupId>
221 <artifactId>maven-javadoc-plugin</artifactId>
222 <version>2.10.4</version>
223 <configuration>
224 <failOnError>false</failOnError>
225 <doclet>org.umlgraph.doclet.UmlGraphDoc</doclet>
226 <docletArtifact>
227 <groupId>org.umlgraph</groupId>
228 <artifactId>umlgraph</artifactId>
229 <version>5.6</version>
230 </docletArtifact>
231 <additionalparam>-views</additionalparam>
232 <useStandardDocletOptions>true</useStandardDocletOptions>
233 </configuration>
234 </plugin>
235 </plugins>
236 </reporting>
237 <dependencies>
238 <dependency>
239 <groupId>junit</groupId>
240 <artifactId>junit</artifactId>
241 <version>4.11</version>
242 <scope>test</scope>
243 </dependency>
Sonsino, Ofir (os0695)a3b6fb92018-04-02 10:25:24 +0300244
245 <!--Overide versions for latest security fixes-->
246 <dependency>
247 <groupId>ch.qos.logback</groupId>
248 <artifactId>logback-core</artifactId>
249 <version>1.2.3</version>
250 </dependency>
251 <dependency>
252 <groupId>ch.qos.logback</groupId>
253 <artifactId>logback-classic</artifactId>
254 <version>1.2.3</version>
255 </dependency>
256 <dependency>
257 <groupId>commons-collections</groupId>
258 <artifactId>commons-collections</artifactId>
259 <version>3.2.2</version>
260 </dependency>
261 <dependency>
Sonsino, Ofir (os0695)a3b6fb92018-04-02 10:25:24 +0300262 <groupId>org.apache.poi</groupId>
263 <artifactId>poi</artifactId>
Sonsino, Ofir (os0695)745b4d52018-04-03 10:53:27 +0300264 <version>3.17</version>
Sonsino, Ofir (os0695)a3b6fb92018-04-02 10:25:24 +0300265 </dependency>
266 <dependency>
267 <groupId>org.apache.httpcomponents</groupId>
268 <artifactId>httpclient</artifactId>
269 <version>4.5.3</version>
270 </dependency>
jimmydot3982f4f2017-05-07 14:58:24 -0400271 </dependencies>
jimmydot3982f4f2017-05-07 14:58:24 -0400272</project>