blob: 80ebc7c7107241e7d344af4d0a58ca09e8cfcf40 [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)f65e1612022-10-05 09:49:51 -04007 <version>2.4.4-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>
Dan Timoney7f239072020-06-01 09:28:12 -040013 <module>installed-odl-bom</module>
Singal, Kapil (ks220y)632a1f32019-09-27 14:09:00 -040014 <module>dependencies-bom</module>
15 <module>dependencies-odl-bom</module>
Dan Timoneyd7746ae2020-03-20 15:36:38 -040016 <module>oparent</module>
Singal, Kapil (ks220y)632a1f32019-09-27 14:09:00 -040017 <module>standalone</module>
18 <module>odlparent</module>
19 <module>springboot</module>
20 </modules>
Timoney, Dan (dt5972)ab85bb62018-03-05 15:28:15 -050021
Timoney, Dan (dt5972)1d5b9fd2019-05-09 10:06:50 -040022 <distributionManagement>
23 <repository>
24 <id>ecomp-releases</id>
25 <url>https://nexus.onap.org/content/repositories/releases</url>
26 </repository>
27 <snapshotRepository>
28 <id>ecomp-snapshots</id>
29 <url>https://nexus.onap.org/content/repositories/snapshots</url>
30 </snapshotRepository>
31 </distributionManagement>
Dan Timoneydd89f652017-07-19 15:03:41 -040032
Singal, Kapil (ks220y)632a1f32019-09-27 14:09:00 -040033 <properties>
34 <onap.nexus.host>nexus.onap.org</onap.nexus.host>
35 <onap.nexus.staging.server-id>ecomp-staging</onap.nexus.staging.server-id>
36 <onap.nexus.staging.profile-id>176c31dfe190a</onap.nexus.staging.profile-id>
Singal, Kapil (ks220y)632a1f32019-09-27 14:09:00 -040037 </properties>
38
Singal, Kapil (ks220y)e1d0e252021-02-01 22:06:16 -050039 <build>
40 <plugins>
41 <plugin>
42 <groupId>org.codehaus.mojo</groupId>
43 <artifactId>versions-maven-plugin</artifactId>
44 <version>2.5</version>
45 <configuration>
46 <processAllModules>true</processAllModules>
47 </configuration>
48 </plugin>
49 <plugin>
50 <groupId>org.apache.maven.plugins</groupId>
51 <artifactId>maven-deploy-plugin</artifactId>
52 <!-- This version supports the "deployAtEnd" parameter -->
53 <version>2.8</version>
54 <configuration>
55 <skip/>
56 <deployAtEnd>true</deployAtEnd>
57 </configuration>
58 </plugin>
59 </plugins>
60 </build>
61
Timoney, Dan (dt5972)94fcbc22019-12-10 09:18:51 -050062 <profiles>
63 <profile>
64 <id>dependency-list</id>
65 <build>
66 <plugins>
67 <plugin>
68 <groupId>com.github.ferstl</groupId>
69 <artifactId>depgraph-maven-plugin</artifactId>
70 <version>3.3.0</version>
71 <configuration>
72 <graphFormat>text</graphFormat>
73 <outputFileName>direct-dependencies.txt</outputFileName>
74 <outputDirectory>${project.basedir}</outputDirectory>
75 <transitiveExcludes>*</transitiveExcludes>
76 <showVersions>true</showVersions>
Timoney, Dan (dt5972)cc0c96a2019-12-11 10:04:52 -050077 <showGroupIds>true</showGroupIds>
Timoney, Dan (dt5972)94fcbc22019-12-10 09:18:51 -050078 </configuration>
79 <executions>
80 <execution>
81 <phase>validate</phase>
82 <inherited>false</inherited>
83 <goals>
84 <goal>aggregate</goal>
85 </goals>
86 </execution>
87 </executions>
88 </plugin>
89 <plugin>
90 <groupId>org.codehaus.mojo</groupId>
91 <artifactId>build-helper-maven-plugin</artifactId>
92 <executions>
93 <execution>
94 <id>attach-artifacts</id>
95 <phase>package</phase>
96 <inherited>false</inherited>
97 <goals>
98 <goal>attach-artifact</goal>
99 </goals>
100 <configuration>
101 <artifacts>
102 <artifact>
103 <file>${project.basedir}/direct-dependencies.txt</file>
104 <type>txt</type>
105 <classifier>dependencies</classifier>
106 </artifact>
107 </artifacts>
108 </configuration>
109 </execution>
110 </executions>
111 </plugin>
112 </plugins>
113 </build>
114 </profile>
115 </profiles>
Dan Timoneydd89f652017-07-19 15:03:41 -0400116</project>