blob: 66e307c1b2fa31f7d900e561c5c2a5701763f20c [file] [log] [blame]
sg481n37e47102017-08-03 17:44:44 -04001<!--
2 ============LICENSE_START====================================================
3 * org.onap.aai
4 * ===========================================================================
5 * Copyright © 2017 AT&T Intellectual Property. All rights reserved.
6 * Copyright © 2017 Amdocs
7 * ===========================================================================
8 * Licensed under the Apache License, Version 2.0 (the "License");
9 * you may not use this file except in compliance with the License.
10 * You may obtain a copy of the License at
11 *
12 * http://www.apache.org/licenses/LICENSE-2.0
13 *
14 * Unless required by applicable law or agreed to in writing, software
15 * distributed under the License is distributed on an "AS IS" BASIS,
16 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
17 * See the License for the specific language governing permissions and
18 * limitations under the License.
19 * ============LICENSE_END====================================================
20 *
21 * ECOMP is a trademark and service mark of AT&T Intellectual Property.
22 *
23-->
24<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
25 xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
26<parent>
27 <groupId>com.att.inno</groupId>
28 <artifactId>parent</artifactId>
29 <version>1.2.13</version>
30 <relativePath>..</relativePath>
31 </parent>
32
33 <name>Log4J Elements</name>
34 <artifactId>log4j</artifactId>
35 <packaging>jar</packaging>
36 <modelVersion>4.0.0</modelVersion>
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>
54
55 <dependencies>
56 <dependency>
57 <groupId>com.att.inno</groupId>
58 <artifactId>env</artifactId>
59 <version>${project.version}</version>
60 </dependency>
61
62 <dependency>
63 <groupId>net.java.dev.jna</groupId>
64 <artifactId>jna-platform</artifactId>
65 <version>4.0.0</version>
66 </dependency>
67
68 </dependencies>
69
70 <distributionManagement>
71 <snapshotRepository>
72 <id>ossrhdme</id>
73 <url>https://oss.sonatype.org/content/repositories/snapshots</url>
74 </snapshotRepository>
75 <repository>
76 <id>ossrhdme</id>
77 <url>https://oss.sonatype.org/service/local/staging/deploy/maven2/</url>
78 </repository>
79 </distributionManagement>
80
81 <scm>
82 <connection>https://github.com/att/AAF.git</connection>
83 <developerConnection>${project.scm.connection}</developerConnection>
84 <url>http://github.com/att/AAF/tree/master</url>
85 </scm>
86
87 <build>
88 <plugins>
89 <plugin>
90 <groupId>org.apache.maven.plugins</groupId>
91 <artifactId>maven-deploy-plugin</artifactId>
92 <version>2.6</version>
93 <configuration>
94 <skip>false</skip>
95 </configuration>
96 </plugin>
97
98 <plugin>
99 <groupId>org.apache.maven.plugins</groupId>
100 <artifactId>maven-javadoc-plugin</artifactId>
101 <configuration>
102 <failOnError>false</failOnError>
103 </configuration>
104 <executions>
105 <execution>
106 <id>attach-javadocs</id>
107 <goals>
108 <goal>jar</goal>
109 </goals>
110 </execution>
111 </executions>
112 </plugin>
113
114
115 <plugin>
116 <groupId>org.apache.maven.plugins</groupId>
117 <artifactId>maven-source-plugin</artifactId>
118 <version>2.2.1</version>
119 <executions>
120 <execution>
121 <id>attach-sources</id>
122 <goals>
123 <goal>jar-no-fork</goal>
124 </goals>
125 </execution>
126 </executions>
127 </plugin>
128
129 <plugin>
130 <groupId>org.sonatype.plugins</groupId>
131 <artifactId>nexus-staging-maven-plugin</artifactId>
132 <version>1.6.7</version>
133 <extensions>true</extensions>
134 <configuration>
135 <serverId>ossrhdme</serverId>
136 <nexusUrl>https://oss.sonatype.org/</nexusUrl>
137 <autoReleaseAfterClose>true</autoReleaseAfterClose>
138 </configuration>
139 </plugin>
140 </plugins>
141 </build>
142
143</project>