blob: 49199f41c5a2791aa8417c398c1cd83f7beace34 [file] [log] [blame]
sg481n37e47102017-08-03 17:44:44 -04001<!--
sg481nbfc98882017-08-24 00:58:40 -04002 /*******************************************************************************
3 * ============LICENSE_START====================================================
4 * * org.onap.aaf
5 * * ===========================================================================
6 * * Copyright © 2017 AT&T Intellectual Property. All rights reserved.
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 ******************************************************************************/
sg481n37e47102017-08-03 17:44:44 -040024-->
25<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
26 xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
27 <modelVersion>4.0.0</modelVersion>
sg481nbfc98882017-08-24 00:58:40 -040028 <groupId>org.onap.aaf.inno</groupId>
sg481n37e47102017-08-03 17:44:44 -040029 <artifactId>parent</artifactId>
Jessica Wagantalla83bd052017-09-08 13:39:12 -070030 <name>aaf-inno</name>
sg481nd1492132017-08-10 17:53:22 -040031 <version>1.0.0-SNAPSHOT</version>
sg481n37e47102017-08-03 17:44:44 -040032 <packaging>pom</packaging>
33 <url>https://github.com/att/AAF</url>
34 <description>INNO</description>
35 <licenses>
36 <license>
37 <name>BSD License</name>
38 <url> </url>
39 </license>
40 </licenses>
41
42 <developers>
43 <developer>
44 <name>Jonathan Gathman</name>
45 <email></email>
46 <organization>ATT</organization>
47 <organizationUrl></organizationUrl>
48 </developer>
49 </developers>
sg481na821bc92017-08-16 17:34:08 -040050
51 <parent>
52 <groupId>org.onap.oparent</groupId>
53 <artifactId>oparent</artifactId>
Gildas Lanilisa439c382018-03-15 17:22:22 -070054 <version>1.1.0</version>
sg481na821bc92017-08-16 17:34:08 -040055 </parent>
sg481na3d1ba12017-09-23 02:43:25 +000056
sg481na821bc92017-08-16 17:34:08 -040057
sg481n37e47102017-08-03 17:44:44 -040058 <properties>
59 <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
sg481nd1492132017-08-10 17:53:22 -040060 <project.cadiVersion>1.0.0-SNAPSHOT</project.cadiVersion>
sg481nb826b442017-09-08 12:26:03 -040061 <sonar.language>java</sonar.language>
62 <sonar.java.coveragePlugin>jacoco</sonar.java.coveragePlugin>
63 <sonar.surefire.reportsPath>${project.build.directory}/surefire-reports</sonar.surefire.reportsPath>
64 <sonar.jacoco.reportPath>${project.build.directory}/coverage-reports/jacoco.exec</sonar.jacoco.reportPath>
65 <sonar.jacoco.itReportPath>${project.build.directory}/coverage-reports/jacoco-it.exec</sonar.jacoco.itReportPath>
66 <sonar.jacoco.reportMissing.force.zero>true</sonar.jacoco.reportMissing.force.zero>
67 <sonar.projectVersion>${project.version}</sonar.projectVersion>
sg481na821bc92017-08-16 17:34:08 -040068 <nexusproxy>https://nexus.onap.org</nexusproxy>
69 <snapshotNexusPath>/content/repositories/snapshots/</snapshotNexusPath>
70 <releaseNexusPath>/content/repositories/releases/</releaseNexusPath>
71 <stagingNexusPath>/content/repositories/staging/</stagingNexusPath>
sg481n1a5c4932017-08-17 18:44:28 -040072 <sitePath>/content/sites/site/org/onap/aaf/inno/${project.artifactId}/${project.version}</sitePath>
sg481n37e47102017-08-03 17:44:44 -040073 </properties>
74
75 <dependencies>
76 <dependency>
77 <groupId>junit</groupId>
78 <artifactId>junit</artifactId>
79 <version>4.10</version>
80 <scope>test</scope>
81 </dependency>
82 </dependencies>
83
84 <build>
85 <testSourceDirectory>src/test/java</testSourceDirectory>
86 <plugins>
87 <plugin>
88 <groupId>org.apache.maven.plugins</groupId>
89 <version>2.4</version>
90 <artifactId>maven-jar-plugin</artifactId>
91 <configuration>
92 <outputDirectory>target</outputDirectory>
93 </configuration>
94 </plugin>
95
96 <plugin>
97 <groupId>org.apache.maven.plugins</groupId>
98 <artifactId>maven-surefire-plugin</artifactId>
99 <version>2.17</version>
100 <configuration>
101 <skipTests>false</skipTests>
102 <includes>
103 <include>**/JU*.java</include>
104 </includes>
105
106 </configuration>
107 </plugin>
108
109 <plugin>
110 <inherited>true</inherited>
111 <groupId>org.apache.maven.plugins</groupId>
112 <artifactId>maven-compiler-plugin</artifactId>
sg481na821bc92017-08-16 17:34:08 -0400113 <version>3.6.2</version>
sg481n37e47102017-08-03 17:44:44 -0400114 <configuration>
115 <source>1.6</source>
116 <target>1.6</target>
117 </configuration>
118 </plugin>
sg481n37e47102017-08-03 17:44:44 -0400119 <plugin>
120 <groupId>org.apache.maven.plugins</groupId>
121 <artifactId>maven-source-plugin</artifactId>
122 <version>2.2.1</version>
123 <executions>
124 <execution>
125 <id>attach-sources</id>
126 <goals>
127 <goal>jar-no-fork</goal>
128 </goals>
129 </execution>
130 </executions>
131 </plugin>
132
sg481nb826b442017-09-08 12:26:03 -0400133 <plugin>
sg481na821bc92017-08-16 17:34:08 -0400134 <groupId>org.sonatype.plugins</groupId>
135 <artifactId>nexus-staging-maven-plugin</artifactId>
136 <version>1.6.7</version>
137 <extensions>true</extensions>
138 <configuration>
139 <nexusUrl>${nexusproxy}</nexusUrl>
sg481neecd3032017-08-17 17:52:20 -0400140 <stagingProfileId>176c31dfe190a</stagingProfileId>
sg481na821bc92017-08-16 17:34:08 -0400141 <serverId>ecomp-staging</serverId>
142 </configuration>
sg481nb826b442017-09-08 12:26:03 -0400143 </plugin>
144 <plugin>
145 <groupId>org.jacoco</groupId>
146 <artifactId>jacoco-maven-plugin</artifactId>
147 <version>0.7.7.201606060606</version>
148 <configuration>
149 <dumpOnExit>true</dumpOnExit>
150 <includes>
151 <include>org.onap.aaf.*</include>
152 </includes>
153 </configuration>
154 <executions>
155 <execution>
156 <id>pre-unit-test</id>
157 <goals>
158 <goal>prepare-agent</goal>
159 </goals>
160 <configuration>
161 <destFile>${project.build.directory}/coverage-reports/jacoco.exec</destFile>
162 <!-- <append>true</append> -->
163 </configuration>
164 </execution>
165 <execution>
166 <id>pre-integration-test</id>
167 <phase>pre-integration-test</phase>
168 <goals>
169 <goal>prepare-agent</goal>
170 </goals>
171 <configuration>
172 <destFile>${project.build.directory}/coverage-reports/jacoco-it.exec</destFile>
173 <!-- <append>true</append> -->
174 </configuration>
175 </execution>
176 <execution>
177 <goals>
178 <goal>merge</goal>
179 </goals>
180 <phase>post-integration-test</phase>
181 <configuration>
182 <fileSets>
183 <fileSet implementation="org.apache.maven.shared.model.fileset.FileSet">
184 <directory>${project.build.directory}/coverage-reports</directory>
185 <includes>
186 <include>*.exec</include>
187 </includes>
188 </fileSet>
189 </fileSets>
190 <destFile>${project.build.directory}/jacoco-dev.exec</destFile>
191 </configuration>
192 </execution>
193 </executions>
194 </plugin>
sg481n37e47102017-08-03 17:44:44 -0400195 </plugins>
196</build>
sg481n37e47102017-08-03 17:44:44 -0400197<distributionManagement>
sg481na821bc92017-08-16 17:34:08 -0400198 <repository>
199 <id>ecomp-releases</id>
200 <name>AAF Release Repository</name>
sg481na85b56b2017-08-17 17:25:33 -0400201 <url>${nexusproxy}${releaseNexusPath}</url>
sg481na821bc92017-08-16 17:34:08 -0400202 </repository>
203 <snapshotRepository>
204 <id>ecomp-snapshots</id>
205 <name>AAF Snapshot Repository</name>
sg481na85b56b2017-08-17 17:25:33 -0400206 <url>${nexusproxy}${snapshotNexusPath}</url>
sg481na821bc92017-08-16 17:34:08 -0400207 </snapshotRepository>
sg481n1a5c4932017-08-17 18:44:28 -0400208 <site>
209 <id>ecomp-site</id>
210 <url>dav:${nexusproxy}${sitePath}</url>
211 </site>
sg481n37e47102017-08-03 17:44:44 -0400212 </distributionManagement>
sg481na3d1ba12017-09-23 02:43:25 +0000213
sg481n37e47102017-08-03 17:44:44 -0400214 <modules>
215 <module>env</module>
216 <module>xgen</module>
217 <module>rosetta</module>
sg481n37e47102017-08-03 17:44:44 -0400218 <module>log4j</module>
219 </modules>
220
221 <dependencyManagement>
222 <dependencies>
223 <dependency>
sg481nbfc98882017-08-24 00:58:40 -0400224 <groupId>org.onap.aaf.cadi</groupId>
sg481n37e47102017-08-03 17:44:44 -0400225 <artifactId>cadi-core</artifactId>
226 <version>${project.cadiVersion}</version>
227 </dependency>
228 <dependency>
sg481nbfc98882017-08-24 00:58:40 -0400229 <groupId>org.onap.aaf.cadi</groupId>
sg481n37e47102017-08-03 17:44:44 -0400230 <artifactId>cadi-aaf</artifactId>
231 <version>${project.cadiVersion}</version>
232 </dependency>
233 <dependency>
234 <groupId>log4j</groupId>
235 <artifactId>log4j</artifactId>
236 <version>1.2.17</version>
237 </dependency>
238 <dependency>
239 <groupId>org.slf4j</groupId>
240 <artifactId>slf4j-log4j12</artifactId>
241 <version>1.7.5</version>
242 </dependency>
243 </dependencies>
244 </dependencyManagement>
245
246
247</project>