blob: 0c07f0a0ecd1f6297f5a17d5de9d65ca5b2e63ff [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>
sg481n1a5c4932017-08-17 18:44:28 -040060 <sitePath>/content/sites/site/${project.groupId}/${project.artifactId}/${project.version}</sitePath>
sg481na821bc92017-08-16 17:34:08 -040061 </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>
sg481n37e47102017-08-03 17:44:44 -040089 <plugin>
90 <groupId>org.apache.maven.plugins</groupId>
91 <artifactId>maven-source-plugin</artifactId>
92 <version>2.2.1</version>
93 <executions>
94 <execution>
95 <id>attach-sources</id>
96 <goals>
97 <goal>jar-no-fork</goal>
98 </goals>
99 </execution>
100 </executions>
101 </plugin>
sg481na821bc92017-08-16 17:34:08 -0400102 <plugin>
sg481n37e47102017-08-03 17:44:44 -0400103 <groupId>org.sonatype.plugins</groupId>
104 <artifactId>nexus-staging-maven-plugin</artifactId>
105 <version>1.6.7</version>
106 <extensions>true</extensions>
107 <configuration>
sg481na821bc92017-08-16 17:34:08 -0400108 <nexusUrl>${nexusproxy}</nexusUrl>
sg481neecd3032017-08-17 17:52:20 -0400109 <stagingProfileId>176c31dfe190a</stagingProfileId>
sg481na821bc92017-08-16 17:34:08 -0400110 <serverId>ecomp-staging</serverId>
sg481n37e47102017-08-03 17:44:44 -0400111 </configuration>
112 </plugin>
sg481na821bc92017-08-16 17:34:08 -0400113
sg481n37e47102017-08-03 17:44:44 -0400114 </plugins>
115 </build>
sg481na821bc92017-08-16 17:34:08 -0400116 <distributionManagement>
117 <repository>
118 <id>ecomp-releases</id>
119 <name>AAF Release Repository</name>
sg481na85b56b2017-08-17 17:25:33 -0400120 <url>${nexusproxy}${releaseNexusPath}</url>
sg481na821bc92017-08-16 17:34:08 -0400121 </repository>
122 <snapshotRepository>
123 <id>ecomp-snapshots</id>
124 <name>AAF Snapshot Repository</name>
sg481na85b56b2017-08-17 17:25:33 -0400125 <url>${nexusproxy}${snapshotNexusPath}</url>
sg481na821bc92017-08-16 17:34:08 -0400126 </snapshotRepository>
sg481n1a5c4932017-08-17 18:44:28 -0400127 <site>
128 <id>ecomp-site</id>
129 <url>dav:${nexusproxy}${sitePath}</url>
130 </site>
sg481na821bc92017-08-16 17:34:08 -0400131 </distributionManagement>
132 <pluginRepositories>
133 <pluginRepository>
134 <id>onap-plugin-snapshots</id>
135 <url>https://nexus.onap.org/content/repositories/snapshots/</url>
136 </pluginRepository>
137 </pluginRepositories>
138
139 <repositories>
140 <repository>
141 <id>central</id>
142 <name>Maven 2 repository 2</name>
143 <url>http://repo2.maven.org/maven2/</url>
144 </repository>
145 <repository>
146 <id>onap-jar-snapshots</id>
147 <url>https://nexus.onap.org/content/repositories/snapshots</url>
148 </repository>
149 <repository>
150 <id>spring-repo</id>
151 <name>Spring repo</name>
152 <url>https://artifacts.alfresco.com/nexus/content/repositories/public/</url>
153 </repository>
154 <repository>
155 <id>repository.jboss.org-public</id>
156 <name>JBoss.org Maven repository</name>
157 <url>https://repository.jboss.org/nexus/content/groups/public</url>
158 </repository>
159 </repositories>
160
sg481n37e47102017-08-03 17:44:44 -0400161
162</project>