blob: b8a9aca6f873eecc66e7f53ec424574eb08ba757 [file] [log] [blame]
sg481ne4b20cc2017-08-23 16:30:52 -04001<!--
2 ============LICENSE_START==================================================
3 * org.onap.dmaap
4 * ===========================================================================
5 * Copyright © 2017 AT&T Intellectual Property. All rights reserved.
6 * ===========================================================================
7 * Licensed under the Apache License, Version 2.0 (the "License");
8 * you may not use this file except in compliance with the License.
9 * You may obtain a copy of the License at
10 *
11 * http://www.apache.org/licenses/LICENSE-2.0
12 *
13 * Unless required by applicable law or agreed to in writing, software
14 * distributed under the License is distributed on an "AS IS" BASIS,
15 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
16 * See the License for the specific language governing permissions and
17 * limitations under the License.
18 * ============LICENSE_END====================================================
19 *
20 * ECOMP is a trademark and service mark of AT&T Intellectual Property.
21 *
22-->
23<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
24 xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
25 <modelVersion>4.0.0</modelVersion>
26 <groupId>org.onap.dmaap.datarouter</groupId>
27 <artifactId>parent</artifactId>
28 <name>datarouter</name>
29 <version>1.0.0-SNAPSHOT</version>
30 <packaging>pom</packaging>
31 <url>https://github.com/att/DMAAP_DATAROUTER</url>
32 <licenses>
33 <license>
34 <name>BSD License</name>
35 <url> </url>
36 </license>
37 </licenses>
38
39 <parent>
40 <groupId>org.onap.oparent</groupId>
41 <artifactId>oparent</artifactId>
42 <version>1.0.0-SNAPSHOT</version>
43 </parent>
44
45 <properties>
46 <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
47 <maven.compiler.source>1.8</maven.compiler.source>
48 <maven.compiler.target>1.8</maven.compiler.target>
49 <nexusproxy>https://nexus.onap.org</nexusproxy>
50 <snapshotNexusPath>/content/repositories/snapshots/</snapshotNexusPath>
51 <releaseNexusPath>/content/repositories/releases/</releaseNexusPath>
52 <stagingNexusPath>/content/repositories/staging/</stagingNexusPath>
53 <sitePath>/content/sites/site/org/onap/datarouter/${project.artifactId}/${project.version}</sitePath>
54 </properties>
55
56
57 <modules>
58 <module>datarouter-prov</module>
59 <module>datarouter-node</module>
60 </modules>
61
62 <build>
63 <plugins>
64 <plugin>
65 <groupId>org.sonatype.plugins</groupId>
66 <artifactId>nexus-staging-maven-plugin</artifactId>
67 <version>1.6.7</version>
68 <extensions>true</extensions>
69 <configuration>
70 <nexusUrl>${nexusproxy}</nexusUrl>
71 <stagingProfileId>176c31dfe190a</stagingProfileId>
72 <serverId>ecomp-staging</serverId>
73 </configuration>
74 </plugin>
75 </plugins>
76 </build>
77 <distributionManagement>
78 <repository>
79 <id>ecomp-releases</id>
80 <name>AAF Release Repository</name>
81 <url>${nexusproxy}${releaseNexusPath}</url>
82 </repository>
83 <snapshotRepository>
84 <id>ecomp-snapshots</id>
85 <name>AAF Snapshot Repository</name>
86 <url>${nexusproxy}${snapshotNexusPath}</url>
87 </snapshotRepository>
88 <site>
89 <id>ecomp-site</id>
90 <url>dav:${nexusproxy}${sitePath}</url>
91 </site>
92 </distributionManagement>
93 <pluginRepositories>
94 <pluginRepository>
95 <id>onap-plugin-snapshots</id>
96 <url>https://nexus.onap.org/content/repositories/snapshots/</url>
97 </pluginRepository>
98 </pluginRepositories>
99
100<repositories>
101 <repository>
102 <id>central</id>
103 <name>Maven 2 repository 2</name>
104 <url>http://repo2.maven.org/maven2/</url>
105 </repository>
106 <repository>
107 <id>onap-jar-snapshots</id>
108 <url>https://nexus.onap.org/content/repositories/snapshots</url>
109 </repository>
110 <repository>
111 <id>spring-repo</id>
112 <name>Spring repo</name>
113 <url>https://artifacts.alfresco.com/nexus/content/repositories/public/</url>
114 </repository>
115 <repository>
116 <id>repository.jboss.org-public</id>
117 <name>JBoss.org Maven repository</name>
118 <url>https://repository.jboss.org/nexus/content/groups/public</url>
119 </repository>
120 </repositories>
121</project>