blob: 5999cc9226271bb4a8bd11517797a53509f1fb15 [file] [log] [blame]
Dan Timoneydd89f652017-07-19 15:03:41 -04001<?xml version="1.0" encoding="UTF-8"?>
Singal, Kapil (ks220y)632a1f32019-09-27 14:09:00 -04002<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
Timoney, Dan (dt5972)1d5b9fd2019-05-09 10:06:50 -04003 <modelVersion>4.0.0</modelVersion>
Singal, Kapil (ks220y)632a1f32019-09-27 14:09:00 -04004
Timoney, Dan (dt5972)1d5b9fd2019-05-09 10:06:50 -04005 <groupId>org.onap.ccsdk.parent</groupId>
6 <artifactId>parent</artifactId>
Timoney, Dan (dt5972)cda6d8e2019-11-12 13:44:16 -05007 <version>1.5.1-SNAPSHOT</version>
Singal, Kapil (ks220y)632a1f32019-09-27 14:09:00 -04008 <packaging>pom</packaging>
9
Timoney, Dan (dt5972)1d5b9fd2019-05-09 10:06:50 -040010 <name>ONAP :: ${project.groupId} :: ${project.artifactId}</name>
Dan Timoneydd89f652017-07-19 15:03:41 -040011
Singal, Kapil (ks220y)632a1f32019-09-27 14:09:00 -040012 <modules>
13 <module>dependencies-bom</module>
14 <module>dependencies-odl-bom</module>
15 <module>standalone</module>
16 <module>odlparent</module>
17 <module>springboot</module>
18 </modules>
Timoney, Dan (dt5972)ab85bb62018-03-05 15:28:15 -050019
Timoney, Dan (dt5972)1d5b9fd2019-05-09 10:06:50 -040020 <distributionManagement>
21 <repository>
22 <id>ecomp-releases</id>
23 <url>https://nexus.onap.org/content/repositories/releases</url>
24 </repository>
25 <snapshotRepository>
26 <id>ecomp-snapshots</id>
27 <url>https://nexus.onap.org/content/repositories/snapshots</url>
28 </snapshotRepository>
29 </distributionManagement>
Dan Timoneydd89f652017-07-19 15:03:41 -040030
Singal, Kapil (ks220y)632a1f32019-09-27 14:09:00 -040031 <properties>
32 <onap.nexus.host>nexus.onap.org</onap.nexus.host>
33 <onap.nexus.staging.server-id>ecomp-staging</onap.nexus.staging.server-id>
34 <onap.nexus.staging.profile-id>176c31dfe190a</onap.nexus.staging.profile-id>
Singal, Kapil (ks220y)632a1f32019-09-27 14:09:00 -040035 </properties>
36
Timoney, Dan (dt5972)94fcbc22019-12-10 09:18:51 -050037 <profiles>
38 <profile>
39 <id>dependency-list</id>
40 <build>
41 <plugins>
42 <plugin>
43 <groupId>com.github.ferstl</groupId>
44 <artifactId>depgraph-maven-plugin</artifactId>
45 <version>3.3.0</version>
46 <configuration>
47 <graphFormat>text</graphFormat>
48 <outputFileName>direct-dependencies.txt</outputFileName>
49 <outputDirectory>${project.basedir}</outputDirectory>
50 <transitiveExcludes>*</transitiveExcludes>
51 <showVersions>true</showVersions>
Timoney, Dan (dt5972)cc0c96a2019-12-11 10:04:52 -050052 <showGroupIds>true</showGroupIds>
Timoney, Dan (dt5972)94fcbc22019-12-10 09:18:51 -050053 </configuration>
54 <executions>
55 <execution>
56 <phase>validate</phase>
57 <inherited>false</inherited>
58 <goals>
59 <goal>aggregate</goal>
60 </goals>
61 </execution>
62 </executions>
63 </plugin>
64 <plugin>
65 <groupId>org.codehaus.mojo</groupId>
66 <artifactId>build-helper-maven-plugin</artifactId>
67 <executions>
68 <execution>
69 <id>attach-artifacts</id>
70 <phase>package</phase>
71 <inherited>false</inherited>
72 <goals>
73 <goal>attach-artifact</goal>
74 </goals>
75 <configuration>
76 <artifacts>
77 <artifact>
78 <file>${project.basedir}/direct-dependencies.txt</file>
79 <type>txt</type>
80 <classifier>dependencies</classifier>
81 </artifact>
82 </artifacts>
83 </configuration>
84 </execution>
85 </executions>
86 </plugin>
87 </plugins>
88 </build>
89 </profile>
90 </profiles>
91
Timoney, Dan (dt5972)1d5b9fd2019-05-09 10:06:50 -040092 <build>
93 <plugins>
94 <plugin>
95 <groupId>org.codehaus.mojo</groupId>
96 <artifactId>versions-maven-plugin</artifactId>
97 <version>2.5</version>
98 <configuration>
99 <processAllModules>true</processAllModules>
100 </configuration>
101 </plugin>
102 </plugins>
103 </build>
Dan Timoneydd89f652017-07-19 15:03:41 -0400104</project>