blob: 2a9996564026176bc29751662702490c365ca4d1 [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>
28 <version>1.2.13</version>
29 <relativePath>..</relativePath>
30 </parent>
31
32 <modelVersion>4.0.0</modelVersion>
33
34 <artifactId>env</artifactId>
35 <name>Env</name>
36 <packaging>jar</packaging>
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>log4j</groupId>
58 <artifactId>log4j</artifactId>
59 <scope>compile</scope> <!-- Provides scope only, in case other users prefer another Logging Implementation -->
60 </dependency>
61 </dependencies>
62<build>
63 <plugins>
64 <plugin>
65 <groupId>org.apache.maven.plugins</groupId>
66 <artifactId>maven-javadoc-plugin</artifactId>
67 <configuration>
68 <failOnError>false</failOnError>
69 </configuration>
70 <executions>
71 <execution>
72 <id>attach-javadocs</id>
73 <goals>
74 <goal>jar</goal>
75 </goals>
76 </execution>
77 </executions>
78 </plugin>
79
80
81 <plugin>
82 <groupId>org.apache.maven.plugins</groupId>
83 <artifactId>maven-source-plugin</artifactId>
84 <version>2.2.1</version>
85 <executions>
86 <execution>
87 <id>attach-sources</id>
88 <goals>
89 <goal>jar-no-fork</goal>
90 </goals>
91 </execution>
92 </executions>
93 </plugin>
94
95 <plugin>
96 <groupId>org.sonatype.plugins</groupId>
97 <artifactId>nexus-staging-maven-plugin</artifactId>
98 <version>1.6.7</version>
99 <extensions>true</extensions>
100 <configuration>
101 <serverId>ossrhdme</serverId>
102 <nexusUrl>https://oss.sonatype.org/</nexusUrl>
103 <autoReleaseAfterClose>true</autoReleaseAfterClose>
104 </configuration>
105 </plugin>
106
107 </plugins>
108
109 </build>
110
111 <distributionManagement>
112 <snapshotRepository>
113 <id>ossrhdme</id>
114 <url>https://oss.sonatype.org/content/repositories/snapshots</url>
115 </snapshotRepository>
116 <repository>
117 <id>ossrhdme</id>
118 <url>https://oss.sonatype.org/service/local/staging/deploy/maven2/</url>
119 </repository>
120 </distributionManagement>
121
122 <scm>
123 <connection>https://github.com/att/AAF.git</connection>
124 <developerConnection>${project.scm.connection}</developerConnection>
125 <url>http://github.com/att/AAF/tree/master</url>
126 </scm>
127</project>
128