blob: 5a4a53e9ca7eb0628f93b42815b36dfbe06c8e02 [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>
53
54 <dependencies>
55 <dependency>
56 <groupId>com.att.inno</groupId>
57 <artifactId>env</artifactId>
58 <version>${project.version}</version>
59 </dependency>
60
61 <dependency>
62 <groupId>net.java.dev.jna</groupId>
63 <artifactId>jna-platform</artifactId>
64 <version>4.0.0</version>
65 </dependency>
66
67 </dependencies>
68
69 <distributionManagement>
70 <snapshotRepository>
71 <id>ossrhdme</id>
72 <url>https://oss.sonatype.org/content/repositories/snapshots</url>
73 </snapshotRepository>
74 <repository>
75 <id>ossrhdme</id>
76 <url>https://oss.sonatype.org/service/local/staging/deploy/maven2/</url>
77 </repository>
78 </distributionManagement>
79
80 <scm>
81 <connection>https://github.com/att/AAF.git</connection>
82 <developerConnection>${project.scm.connection}</developerConnection>
83 <url>http://github.com/att/AAF/tree/master</url>
84 </scm>
85
86 <build>
87 <plugins>
88 <plugin>
89 <groupId>org.apache.maven.plugins</groupId>
90 <artifactId>maven-deploy-plugin</artifactId>
91 <version>2.6</version>
92 <configuration>
93 <skip>false</skip>
94 </configuration>
95 </plugin>
96
97 <plugin>
98 <groupId>org.apache.maven.plugins</groupId>
99 <artifactId>maven-javadoc-plugin</artifactId>
100 <configuration>
101 <failOnError>false</failOnError>
102 </configuration>
103 <executions>
104 <execution>
105 <id>attach-javadocs</id>
106 <goals>
107 <goal>jar</goal>
108 </goals>
109 </execution>
110 </executions>
111 </plugin>
112
113
114 <plugin>
115 <groupId>org.apache.maven.plugins</groupId>
116 <artifactId>maven-source-plugin</artifactId>
117 <version>2.2.1</version>
118 <executions>
119 <execution>
120 <id>attach-sources</id>
121 <goals>
122 <goal>jar-no-fork</goal>
123 </goals>
124 </execution>
125 </executions>
126 </plugin>
127
128 <plugin>
129 <groupId>org.sonatype.plugins</groupId>
130 <artifactId>nexus-staging-maven-plugin</artifactId>
131 <version>1.6.7</version>
132 <extensions>true</extensions>
133 <configuration>
134 <serverId>ossrhdme</serverId>
135 <nexusUrl>https://oss.sonatype.org/</nexusUrl>
136 <autoReleaseAfterClose>true</autoReleaseAfterClose>
137 </configuration>
138 </plugin>
139 </plugins>
140 </build>
141
142</project>