Update the pom files to fix the junit failure
[aai/aai-common.git] / pom.xml
1 <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
2   <modelVersion>4.0.0</modelVersion>
3   <groupId>org.openecomp.aai</groupId>
4   <artifactId>aai-common</artifactId>
5   <version>1.1.0-SNAPSHOT</version>
6   <packaging>pom</packaging>
7   <name>aai-common</name>
8   
9   <modules>
10         <module>aai-schema</module>
11         <module>aai-annotations</module>
12         <module>aai-core</module>
13   </modules>
14
15         <properties>
16                 <nexusproxy>https://nexus.onap.org</nexusproxy>
17                 <sitePath>/content/sites/site/${project.groupId}/${project.artifactId}/${project.version}</sitePath>
18         </properties>
19
20   <build>
21         <pluginManagement>
22             <plugins>
23                 <plugin>
24                     <groupId>org.apache.maven.plugins</groupId>
25                     <artifactId>maven-compiler-plugin</artifactId>
26                     <configuration>
27                         <source>1.8</source>
28                         <target>1.8</target>
29                     </configuration>
30                 </plugin>
31                 <plugin>
32                                         <groupId>org.codehaus.mojo</groupId>
33                                         <artifactId>license-maven-plugin</artifactId>
34                                         <version>1.12</version>
35                                         <configuration>
36                                                 <addJavaLicenseAfterPackage>false</addJavaLicenseAfterPackage>
37                                                 <licenseName>apache_v2</licenseName>
38                                                 <inceptionYear>2017</inceptionYear>
39                                                 <organizationName>AT&amp;T Intellectual Property. All rights reserved.</organizationName>
40                                                 <projectName>org.openecomp.aai</projectName>
41                                                 <canUpdateCopyright>true</canUpdateCopyright>
42                                                 <canUpdateDescription>true</canUpdateDescription>
43                                                 <canUpdateLicense>true</canUpdateLicense>
44                                                 <emptyLineAfterHeader>true</emptyLineAfterHeader>
45                                                 <processStartTag>============LICENSE_START=======================================================</processStartTag>
46                                                 <processEndTag>============LICENSE_END=========================================================</processEndTag>
47                                                 <sectionDelimiter>================================================================================</sectionDelimiter>
48                                                 <includes>
49                                                         <include>**/*.java</include>
50                                                         <include>**/*.ksh</include>
51                                                         <include>**/*.sh</include>
52                                                         <include>**/*.ftl</include>
53                                                         <include>**/*.xsd</include>
54                                                         <include>**/*.xjb</include>
55                                                         <include>**/aai*.xml</include>
56                                                         <include>**/*logback*.xml</include>
57                                                         <include>**/*aaiconfig*.properties</include>
58                                                         <include>**/*titan*.properties</include>
59                                                 </includes>
60                                         </configuration>
61                                         <executions>
62                                                 <execution>
63                                                         <id>first</id>
64                                                         <goals>
65                                                                 <goal>update-file-header</goal>
66                                                         </goals>
67                                                         <phase>process-sources</phase>
68                                                 </execution>
69                                         </executions>
70                                 </plugin>
71             </plugins>
72         </pluginManagement>
73     </build>
74
75         <distributionManagement>
76                 <repository>
77                         <id>ecomp-releases</id>
78                         <name>ECOMP Release Repository</name>
79                         <url>${nexusproxy}/content/repositories/releases/</url>
80                 </repository>
81                 <snapshotRepository>
82                         <id>ecomp-snapshots</id>
83                         <name>ECOMP Snapshot Repository</name>
84                         <url>${nexusproxy}/content/repositories/snapshots/</url>
85                 </snapshotRepository>
86                 <site>
87                         <id>ecomp-site</id>
88                         <url>dav:${nexusproxy}${sitePath}</url>
89                 </site>
90         </distributionManagement>
91
92 </project>