blob: 4eba2fd57ea1c35b50d2cc13d255c39f5be342ab [file] [log] [blame]
Instrumentalac1e1ec2018-03-26 13:37:04 -07001<?xml version="1.0" encoding="UTF-8"?>
2<!--
3 * ============LICENSE_START====================================================
4 * org.onap.aaf
5 * ===========================================================================
6 * Copyright (c) 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-->
22<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
23 xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
24 <modelVersion>4.0.0</modelVersion>
25 <groupId>org.onap.aaf.misc</groupId>
26 <artifactId>parent</artifactId>
27 <name>AAF Misc Parent</name>
28 <version>1.3.0-SNAPSHOT</version>
29 <packaging>pom</packaging>
30
31 <properties>
32 <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
33 <powermock.version>1.5.1</powermock.version>
34 </properties>
35
36 <developers>
37 <developer>
38 <name>Jonathan Gathman</name>
39 <email>jonathan.gathman@att.com</email>
40 <organization>ATT</organization>
41 <roles>
42 <role>Architect</role>
43 <role>Lead Developer</role>
44 </roles>
45 </developer>
46 <developer>
47 <name>Gabe Maurer</name>
48 <email>gabe.maurer@att.com</email>
49 <organization>ATT</organization>
50 <roles>
51 <role>Developer</role>
52 </roles>
53 </developer>
54 <developer>
55 <name>Ian Howell</name>
56 <email>ian.howell@att.com</email>
57 <organization>ATT</organization>
58 <roles>
59 <role>Developer</role>
60 </roles>
61 </developer>
62 </developers>
63
64 <dependencies>
65 <dependency>
66 <groupId>org.mockito</groupId>
67 <artifactId>mockito-all</artifactId>
68 <version>1.9.5</version>
69 <scope>test</scope>
70 </dependency>
71
72 <dependency>
73 <groupId>org.powermock</groupId>
74 <artifactId>powermock-module-junit4</artifactId>
75 <version>${powermock.version}</version>
76 <scope>test</scope>
77 </dependency>
78 <dependency>
79 <groupId>org.powermock</groupId>
80 <artifactId>powermock-api-mockito</artifactId>
81 <version>${powermock.version}</version>
82 <scope>test</scope>
83 </dependency>
84 <dependency>
85 <groupId>junit</groupId>
86 <artifactId>junit</artifactId>
87 <version>4.10</version>
88 <scope>test</scope>
89 </dependency>
90 </dependencies>
91
92 <build>
93 <testSourceDirectory>src/test/java</testSourceDirectory>
94 <pluginManagement>
95 <plugins>
96 <plugin>
97 <groupId>org.apache.maven.plugins</groupId>
98 <version>2.4</version>
99 <artifactId>maven-jar-plugin</artifactId>
100 <configuration>
101 <outputDirectory>target</outputDirectory>
102 </configuration>
103 </plugin>
104
105 <plugin>
106 <inherited>true</inherited>
107 <groupId>org.apache.maven.plugins</groupId>
108 <artifactId>maven-compiler-plugin</artifactId>
109 <version>2.3.2</version>
110 <configuration>
111 <source>1.7</source>
112 <target>1.7</target>
113 </configuration>
114 </plugin>
115 </plugins>
116 </pluginManagement>
117 </build>
118
119 <distributionManagement>
120 <repository>
121 <id>nexus</id>
122 <name>attarch-releases</name>
123 <url>http://mavencentral.it.att.com:8084/nexus/content/repositories/attarch-releases</url>
124 </repository>
125 <snapshotRepository>
126 <id>nexus</id>
127 <name>attarch-snapshots</name>
128 <url>http://mavencentral.it.att.com:8084/nexus/content/repositories/attarch-snapshots</url>
129 </snapshotRepository>
130 </distributionManagement>
131
132 <modules>
133 <module>env</module>
134 <module>xgen</module>
135 <module>rosetta</module>
136 <module>log4j</module> <!-- note: generates log4j, to avoid Jar conflict -->
137 </modules>
138
139 <dependencyManagement>
140 <dependencies>
141 <dependency>
142 <groupId>log4j</groupId>
143 <artifactId>log4j</artifactId>
144 <version>1.2.17</version>
145 </dependency>
146 <dependency>
147 <groupId>org.slf4j</groupId>
148 <artifactId>slf4j-log4j12</artifactId>
149 <version>1.7.5</version>
150 </dependency>
151 </dependencies>
152 </dependencyManagement>
153</project>