blob: 24bdaff5fe41555e76a1c9a389aaaed107e4881d [file] [log] [blame]
sg481n37e47102017-08-03 17:44:44 -04001<!--
2 ============LICENSE_START====================================================
sg481na1dc4962017-08-09 23:35:37 -04003 * org.onap.aaf
sg481n37e47102017-08-03 17:44:44 -04004 * ===========================================================================
5 * Copyright © 2017 AT&T Intellectual Property. All rights reserved.
sg481n37e47102017-08-03 17:44:44 -04006 * ===========================================================================
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/xsd/maven-4.0.0.xsd">
25 <parent>
sg481nbfc98882017-08-24 00:58:40 -040026 <groupId>org.onap.aaf.inno</groupId>
sg481n37e47102017-08-03 17:44:44 -040027 <artifactId>parent</artifactId>
sg481nd1492132017-08-10 17:53:22 -040028 <version>1.0.0-SNAPSHOT</version>
sg481n37e47102017-08-03 17:44:44 -040029 <relativePath>..</relativePath>
30 </parent>
31
32 <modelVersion>4.0.0</modelVersion>
33
34 <artifactId>env</artifactId>
35 <name>Env</name>
36 <packaging>jar</packaging>
37 <url>https://github.com/att/AAF</url>
38 <description>INNO</description>
39 <licenses>
40 <license>
41 <name>BSD License</name>
42 <url> </url>
43 </license>
44 </licenses>
45
46 <developers>
47 <developer>
48 <name>Jonathan Gathman</name>
49 <email></email>
50 <organization>ATT</organization>
51 <organizationUrl></organizationUrl>
52 </developer>
53 </developers>
sg481na821bc92017-08-16 17:34:08 -040054 <properties>
55 <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
56 <project.cadiVersion>1.0.0-SNAPSHOT</project.cadiVersion>
57 <nexusproxy>https://nexus.onap.org</nexusproxy>
58 <snapshotNexusPath>/content/repositories/snapshots/</snapshotNexusPath>
59 <releaseNexusPath>/content/repositories/releases/</releaseNexusPath>
60 <stagingNexusPath>/content/repositories/staging/</stagingNexusPath>
sg481n1a5c4932017-08-17 18:44:28 -040061 <sitePath>/content/sites/site/${project.groupId}/${project.artifactId}/${project.version}</sitePath>
sg481na821bc92017-08-16 17:34:08 -040062 </properties>
sg481n37e47102017-08-03 17:44:44 -040063 <dependencies>
64 <dependency>
65 <groupId>log4j</groupId>
66 <artifactId>log4j</artifactId>
67 <scope>compile</scope> <!-- Provides scope only, in case other users prefer another Logging Implementation -->
68 </dependency>
69 </dependencies>
70<build>
71 <plugins>
sg481n37e47102017-08-03 17:44:44 -040072 <plugin>
73 <groupId>org.apache.maven.plugins</groupId>
74 <artifactId>maven-source-plugin</artifactId>
75 <version>2.2.1</version>
76 <executions>
77 <execution>
78 <id>attach-sources</id>
79 <goals>
80 <goal>jar-no-fork</goal>
81 </goals>
82 </execution>
83 </executions>
84 </plugin>
85
sg481na821bc92017-08-16 17:34:08 -040086 <plugin>
87 <groupId>org.sonatype.plugins</groupId>
88 <artifactId>nexus-staging-maven-plugin</artifactId>
89 <version>1.6.7</version>
90 <extensions>true</extensions>
91 <configuration>
92 <nexusUrl>${nexusproxy}</nexusUrl>
sg481neecd3032017-08-17 17:52:20 -040093 <stagingProfileId>176c31dfe190a</stagingProfileId>
sg481na821bc92017-08-16 17:34:08 -040094 <serverId>ecomp-staging</serverId>
95 </configuration>
96 </plugin>
sg481n37e47102017-08-03 17:44:44 -040097
98 </plugins>
99
100 </build>
sg481n37e47102017-08-03 17:44:44 -0400101 <distributionManagement>
sg481na821bc92017-08-16 17:34:08 -0400102 <repository>
103 <id>ecomp-releases</id>
104 <name>AAF Release Repository</name>
sg481na85b56b2017-08-17 17:25:33 -0400105 <url>${nexusproxy}${releaseNexusPath}</url>
sg481na821bc92017-08-16 17:34:08 -0400106 </repository>
107 <snapshotRepository>
108 <id>ecomp-snapshots</id>
109 <name>AAF Snapshot Repository</name>
sg481na85b56b2017-08-17 17:25:33 -0400110 <url>${nexusproxy}${snapshotNexusPath}</url>
sg481na821bc92017-08-16 17:34:08 -0400111 </snapshotRepository>
sg481n1a5c4932017-08-17 18:44:28 -0400112 <site>
113 <id>ecomp-site</id>
114 <url>dav:${nexusproxy}${sitePath}</url>
115 </site>
sg481n37e47102017-08-03 17:44:44 -0400116 </distributionManagement>
sg481na821bc92017-08-16 17:34:08 -0400117<pluginRepositories>
118 <pluginRepository>
119 <id>onap-plugin-snapshots</id>
120 <url>https://nexus.onap.org/content/repositories/snapshots/</url>
121 </pluginRepository>
122 </pluginRepositories>
sg481n37e47102017-08-03 17:44:44 -0400123
sg481na821bc92017-08-16 17:34:08 -0400124 <repositories>
125 <repository>
126 <id>central</id>
127 <name>Maven 2 repository 2</name>
128 <url>http://repo2.maven.org/maven2/</url>
129 </repository>
130 <repository>
131 <id>onap-jar-snapshots</id>
132 <url>https://nexus.onap.org/content/repositories/snapshots</url>
133 </repository>
134 <repository>
135 <id>spring-repo</id>
136 <name>Spring repo</name>
137 <url>https://artifacts.alfresco.com/nexus/content/repositories/public/</url>
138 </repository>
139 <repository>
140 <id>repository.jboss.org-public</id>
141 <name>JBoss.org Maven repository</name>
142 <url>https://repository.jboss.org/nexus/content/groups/public</url>
143 </repository>
144 </repositories>
sg481n37e47102017-08-03 17:44:44 -0400145</project>
146