blob: 9dbec53a58f065cf0f7863f363d34d0e9658bc08 [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>
26 <groupId>com.att.inno</groupId>
27 <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>
61 <sitePath>/content/sites/site/org/onap/aaf/inno/${project.version}</sitePath>
62 </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>
72 <plugin>
73 <groupId>org.apache.maven.plugins</groupId>
74 <artifactId>maven-javadoc-plugin</artifactId>
sg481na821bc92017-08-16 17:34:08 -040075 <version>3.0.0-M1</version>
sg481n37e47102017-08-03 17:44:44 -040076 <configuration>
77 <failOnError>false</failOnError>
78 </configuration>
79 <executions>
80 <execution>
81 <id>attach-javadocs</id>
82 <goals>
83 <goal>jar</goal>
84 </goals>
85 </execution>
86 </executions>
87 </plugin>
88
89
90 <plugin>
91 <groupId>org.apache.maven.plugins</groupId>
92 <artifactId>maven-source-plugin</artifactId>
93 <version>2.2.1</version>
94 <executions>
95 <execution>
96 <id>attach-sources</id>
97 <goals>
98 <goal>jar-no-fork</goal>
99 </goals>
100 </execution>
101 </executions>
102 </plugin>
103
sg481na821bc92017-08-16 17:34:08 -0400104 <plugin>
105 <groupId>org.sonatype.plugins</groupId>
106 <artifactId>nexus-staging-maven-plugin</artifactId>
107 <version>1.6.7</version>
108 <extensions>true</extensions>
109 <configuration>
110 <nexusUrl>${nexusproxy}</nexusUrl>
111 <serverId>ecomp-staging</serverId>
112 </configuration>
113 </plugin>
sg481n37e47102017-08-03 17:44:44 -0400114
115 </plugins>
116
117 </build>
sg481n37e47102017-08-03 17:44:44 -0400118 <distributionManagement>
sg481na821bc92017-08-16 17:34:08 -0400119 <repository>
120 <id>ecomp-releases</id>
121 <name>AAF Release Repository</name>
122 <url>${nexusproxy}/${releaseNexusPath}</url>
123 </repository>
124 <snapshotRepository>
125 <id>ecomp-snapshots</id>
126 <name>AAF Snapshot Repository</name>
127 <url>${nexusproxy}/${snapshotNexusPath}</url>
128 </snapshotRepository>
sg481n37e47102017-08-03 17:44:44 -0400129 </distributionManagement>
sg481na821bc92017-08-16 17:34:08 -0400130<pluginRepositories>
131 <pluginRepository>
132 <id>onap-plugin-snapshots</id>
133 <url>https://nexus.onap.org/content/repositories/snapshots/</url>
134 </pluginRepository>
135 </pluginRepositories>
sg481n37e47102017-08-03 17:44:44 -0400136
sg481na821bc92017-08-16 17:34:08 -0400137 <repositories>
138 <repository>
139 <id>central</id>
140 <name>Maven 2 repository 2</name>
141 <url>http://repo2.maven.org/maven2/</url>
142 </repository>
143 <repository>
144 <id>onap-jar-snapshots</id>
145 <url>https://nexus.onap.org/content/repositories/snapshots</url>
146 </repository>
147 <repository>
148 <id>spring-repo</id>
149 <name>Spring repo</name>
150 <url>https://artifacts.alfresco.com/nexus/content/repositories/public/</url>
151 </repository>
152 <repository>
153 <id>repository.jboss.org-public</id>
154 <name>JBoss.org Maven repository</name>
155 <url>https://repository.jboss.org/nexus/content/groups/public</url>
156 </repository>
157 </repositories>
sg481n37e47102017-08-03 17:44:44 -0400158</project>
159