blob: f69a4c911bfc2247f898e753effa65e70296c8e1 [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>
sg481neecd3032017-08-17 17:52:20 -0400128 <stagingProfileId>176c31dfe190a</stagingProfileId>
sg481na821bc92017-08-16 17:34:08 -0400129 <serverId>ecomp-staging</serverId>
sg481n37e47102017-08-03 17:44:44 -0400130 </configuration>
131 </plugin>
sg481na821bc92017-08-16 17:34:08 -0400132
sg481n37e47102017-08-03 17:44:44 -0400133 </plugins>
134 </build>
sg481na821bc92017-08-16 17:34:08 -0400135 <distributionManagement>
136 <repository>
137 <id>ecomp-releases</id>
138 <name>AAF Release Repository</name>
sg481na85b56b2017-08-17 17:25:33 -0400139 <url>${nexusproxy}${releaseNexusPath}</url>
sg481na821bc92017-08-16 17:34:08 -0400140 </repository>
141 <snapshotRepository>
142 <id>ecomp-snapshots</id>
143 <name>AAF Snapshot Repository</name>
sg481na85b56b2017-08-17 17:25:33 -0400144 <url>${nexusproxy}${snapshotNexusPath}</url>
sg481na821bc92017-08-16 17:34:08 -0400145 </snapshotRepository>
146 </distributionManagement>
147 <pluginRepositories>
148 <pluginRepository>
149 <id>onap-plugin-snapshots</id>
150 <url>https://nexus.onap.org/content/repositories/snapshots/</url>
151 </pluginRepository>
152 </pluginRepositories>
153
154 <repositories>
155 <repository>
156 <id>central</id>
157 <name>Maven 2 repository 2</name>
158 <url>http://repo2.maven.org/maven2/</url>
159 </repository>
160 <repository>
161 <id>onap-jar-snapshots</id>
162 <url>https://nexus.onap.org/content/repositories/snapshots</url>
163 </repository>
164 <repository>
165 <id>spring-repo</id>
166 <name>Spring repo</name>
167 <url>https://artifacts.alfresco.com/nexus/content/repositories/public/</url>
168 </repository>
169 <repository>
170 <id>repository.jboss.org-public</id>
171 <name>JBoss.org Maven repository</name>
172 <url>https://repository.jboss.org/nexus/content/groups/public</url>
173 </repository>
174 </repositories>
175
sg481n37e47102017-08-03 17:44:44 -0400176
177</project>