blob: 7a044b78b34356d129ec29c9f2c1fd8f6325e1ca [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 <name>Log4J Elements</name>
33 <artifactId>log4j</artifactId>
34 <packaging>jar</packaging>
35 <modelVersion>4.0.0</modelVersion>
36 <url>https://github.com/att/AAF</url>
37 <description>INNO</description>
38 <licenses>
39 <license>
40 <name>BSD License</name>
41 <url> </url>
42 </license>
43 </licenses>
44
45 <developers>
46 <developer>
47 <name>Jonathan Gathman</name>
48 <email></email>
49 <organization>ATT</organization>
50 <organizationUrl></organizationUrl>
51 </developer>
52 </developers>
sg481na821bc92017-08-16 17:34:08 -040053<properties>
54 <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
55 <project.cadiVersion>1.0.0-SNAPSHOT</project.cadiVersion>
56 <nexusproxy>https://nexus.onap.org</nexusproxy>
57 <snapshotNexusPath>/content/repositories/snapshots/</snapshotNexusPath>
58 <releaseNexusPath>/content/repositories/releases/</releaseNexusPath>
59 <stagingNexusPath>/content/repositories/staging/</stagingNexusPath>
60 <sitePath>/content/sites/site/org/onap/aaf/inno/${project.version}</sitePath>
61 </properties>
sg481n37e47102017-08-03 17:44:44 -040062 <dependencies>
63 <dependency>
64 <groupId>com.att.inno</groupId>
65 <artifactId>env</artifactId>
66 <version>${project.version}</version>
67 </dependency>
68
69 <dependency>
70 <groupId>net.java.dev.jna</groupId>
71 <artifactId>jna-platform</artifactId>
72 <version>4.0.0</version>
73 </dependency>
74
75 </dependencies>
76
sg481n37e47102017-08-03 17:44:44 -040077
sg481n37e47102017-08-03 17:44:44 -040078
79 <build>
80 <plugins>
81 <plugin>
82 <groupId>org.apache.maven.plugins</groupId>
83 <artifactId>maven-deploy-plugin</artifactId>
84 <version>2.6</version>
85 <configuration>
86 <skip>false</skip>
87 </configuration>
88 </plugin>
89
90 <plugin>
91 <groupId>org.apache.maven.plugins</groupId>
92 <artifactId>maven-javadoc-plugin</artifactId>
sg481na821bc92017-08-16 17:34:08 -040093 <version>3.0.0-M1</version>
sg481n37e47102017-08-03 17:44:44 -040094 <configuration>
95 <failOnError>false</failOnError>
96 </configuration>
97 <executions>
98 <execution>
99 <id>attach-javadocs</id>
100 <goals>
101 <goal>jar</goal>
102 </goals>
103 </execution>
104 </executions>
105 </plugin>
106
107
108 <plugin>
109 <groupId>org.apache.maven.plugins</groupId>
110 <artifactId>maven-source-plugin</artifactId>
111 <version>2.2.1</version>
112 <executions>
113 <execution>
114 <id>attach-sources</id>
115 <goals>
116 <goal>jar-no-fork</goal>
117 </goals>
118 </execution>
119 </executions>
120 </plugin>
sg481na821bc92017-08-16 17:34:08 -0400121 <plugin>
sg481n37e47102017-08-03 17:44:44 -0400122 <groupId>org.sonatype.plugins</groupId>
123 <artifactId>nexus-staging-maven-plugin</artifactId>
124 <version>1.6.7</version>
125 <extensions>true</extensions>
126 <configuration>
sg481na821bc92017-08-16 17:34:08 -0400127 <nexusUrl>${nexusproxy}</nexusUrl>
128 <serverId>ecomp-staging</serverId>
sg481n37e47102017-08-03 17:44:44 -0400129 </configuration>
130 </plugin>
sg481na821bc92017-08-16 17:34:08 -0400131
sg481n37e47102017-08-03 17:44:44 -0400132 </plugins>
133 </build>
sg481na821bc92017-08-16 17:34:08 -0400134 <distributionManagement>
135 <repository>
136 <id>ecomp-releases</id>
137 <name>AAF Release Repository</name>
sg481na85b56b2017-08-17 17:25:33 -0400138 <url>${nexusproxy}${releaseNexusPath}</url>
sg481na821bc92017-08-16 17:34:08 -0400139 </repository>
140 <snapshotRepository>
141 <id>ecomp-snapshots</id>
142 <name>AAF Snapshot Repository</name>
sg481na85b56b2017-08-17 17:25:33 -0400143 <url>${nexusproxy}${snapshotNexusPath}</url>
sg481na821bc92017-08-16 17:34:08 -0400144 </snapshotRepository>
145 </distributionManagement>
146 <pluginRepositories>
147 <pluginRepository>
148 <id>onap-plugin-snapshots</id>
149 <url>https://nexus.onap.org/content/repositories/snapshots/</url>
150 </pluginRepository>
151 </pluginRepositories>
152
153 <repositories>
154 <repository>
155 <id>central</id>
156 <name>Maven 2 repository 2</name>
157 <url>http://repo2.maven.org/maven2/</url>
158 </repository>
159 <repository>
160 <id>onap-jar-snapshots</id>
161 <url>https://nexus.onap.org/content/repositories/snapshots</url>
162 </repository>
163 <repository>
164 <id>spring-repo</id>
165 <name>Spring repo</name>
166 <url>https://artifacts.alfresco.com/nexus/content/repositories/public/</url>
167 </repository>
168 <repository>
169 <id>repository.jboss.org-public</id>
170 <name>JBoss.org Maven repository</name>
171 <url>https://repository.jboss.org/nexus/content/groups/public</url>
172 </repository>
173 </repositories>
174
sg481n37e47102017-08-03 17:44:44 -0400175
176</project>