Dan Timoney | dd89f65 | 2017-07-19 15:03:41 -0400 | [diff] [blame] | 1 | <?xml version="1.0" encoding="UTF-8"?> |
Singal, Kapil (ks220y) | 632a1f3 | 2019-09-27 14:09:00 -0400 | [diff] [blame] | 2 | <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) | 1d5b9fd | 2019-05-09 10:06:50 -0400 | [diff] [blame] | 3 | <modelVersion>4.0.0</modelVersion> |
Singal, Kapil (ks220y) | 632a1f3 | 2019-09-27 14:09:00 -0400 | [diff] [blame] | 4 | |
Timoney, Dan (dt5972) | 1d5b9fd | 2019-05-09 10:06:50 -0400 | [diff] [blame] | 5 | <groupId>org.onap.ccsdk.parent</groupId> |
| 6 | <artifactId>parent</artifactId> |
Timoney, Dan (dt5972) | f65e161 | 2022-10-05 09:49:51 -0400 | [diff] [blame^] | 7 | <version>2.4.4-SNAPSHOT</version> |
Singal, Kapil (ks220y) | 632a1f3 | 2019-09-27 14:09:00 -0400 | [diff] [blame] | 8 | <packaging>pom</packaging> |
| 9 | |
Timoney, Dan (dt5972) | 1d5b9fd | 2019-05-09 10:06:50 -0400 | [diff] [blame] | 10 | <name>ONAP :: ${project.groupId} :: ${project.artifactId}</name> |
Dan Timoney | dd89f65 | 2017-07-19 15:03:41 -0400 | [diff] [blame] | 11 | |
Singal, Kapil (ks220y) | 632a1f3 | 2019-09-27 14:09:00 -0400 | [diff] [blame] | 12 | <modules> |
Dan Timoney | 7f23907 | 2020-06-01 09:28:12 -0400 | [diff] [blame] | 13 | <module>installed-odl-bom</module> |
Singal, Kapil (ks220y) | 632a1f3 | 2019-09-27 14:09:00 -0400 | [diff] [blame] | 14 | <module>dependencies-bom</module> |
| 15 | <module>dependencies-odl-bom</module> |
Dan Timoney | d7746ae | 2020-03-20 15:36:38 -0400 | [diff] [blame] | 16 | <module>oparent</module> |
Singal, Kapil (ks220y) | 632a1f3 | 2019-09-27 14:09:00 -0400 | [diff] [blame] | 17 | <module>standalone</module> |
| 18 | <module>odlparent</module> |
| 19 | <module>springboot</module> |
| 20 | </modules> |
Timoney, Dan (dt5972) | ab85bb6 | 2018-03-05 15:28:15 -0500 | [diff] [blame] | 21 | |
Timoney, Dan (dt5972) | 1d5b9fd | 2019-05-09 10:06:50 -0400 | [diff] [blame] | 22 | <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 Timoney | dd89f65 | 2017-07-19 15:03:41 -0400 | [diff] [blame] | 32 | |
Singal, Kapil (ks220y) | 632a1f3 | 2019-09-27 14:09:00 -0400 | [diff] [blame] | 33 | <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) | 632a1f3 | 2019-09-27 14:09:00 -0400 | [diff] [blame] | 37 | </properties> |
| 38 | |
Singal, Kapil (ks220y) | e1d0e25 | 2021-02-01 22:06:16 -0500 | [diff] [blame] | 39 | <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) | 94fcbc2 | 2019-12-10 09:18:51 -0500 | [diff] [blame] | 62 | <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) | cc0c96a | 2019-12-11 10:04:52 -0500 | [diff] [blame] | 77 | <showGroupIds>true</showGroupIds> |
Timoney, Dan (dt5972) | 94fcbc2 | 2019-12-10 09:18:51 -0500 | [diff] [blame] | 78 | </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 Timoney | dd89f65 | 2017-07-19 15:03:41 -0400 | [diff] [blame] | 116 | </project> |