Fix the javadocs error in jenkins
[aai/aai-common.git] / aai-annotations / pom.xml
1 <?xml version="1.0"?>
2 <project
3         xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"
4         xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
5         <modelVersion>4.0.0</modelVersion>
6         <parent>
7           <groupId>org.onap.aai.aai-common</groupId>
8           <artifactId>aai-common</artifactId>
9           <version>1.1.0-SNAPSHOT</version>
10         </parent>
11         <artifactId>aai-annotations</artifactId>
12         <name>aai-annotations</name>
13         <packaging>jar</packaging>
14         <properties>
15                 <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
16                 <nexusproxy>https://nexus.onap.org</nexusproxy>
17                 <sitePath>/content/sites/site/${project.groupId}/${project.artifactId}/${project.version}</sitePath>
18                 <maven.compiler.target>1.8</maven.compiler.target>
19                 <maven.compiler.source>1.8</maven.compiler.source>
20         </properties>
21         <dependencies>
22                 <dependency>
23                         <groupId>junit</groupId>
24                         <artifactId>junit</artifactId>
25                         <version>3.8.1</version>
26                         <scope>test</scope>
27                 </dependency>
28         </dependencies>
29
30         <build>
31                 <pluginManagement>
32                         <plugins>
33                                 <!-- Checkstyle plugin - used to report on compliance with -->
34                                 <!-- the Google style guide. -->
35
36                                 <plugin>
37                                         <groupId>org.codehaus.mojo</groupId>
38                                         <artifactId>license-maven-plugin</artifactId>
39                                         <version>1.12</version>
40                                         <configuration>
41                                                 <addJavaLicenseAfterPackage>false</addJavaLicenseAfterPackage>
42                                                 <licenseName>apache_v2</licenseName>
43                                                 <inceptionYear>2017</inceptionYear>
44                                                 <organizationName>AT&amp;T Intellectual Property. All rights reserved.</organizationName>
45                                                 <projectName>org.openecomp.aai</projectName>
46                                                 <canUpdateCopyright>true</canUpdateCopyright>
47                                                 <canUpdateDescription>true</canUpdateDescription>
48                                                 <canUpdateLicense>true</canUpdateLicense>
49                                                 <emptyLineAfterHeader>true</emptyLineAfterHeader>
50                                                 <processStartTag>============LICENSE_START=======================================================</processStartTag>
51                                                 <processEndTag>============LICENSE_END=========================================================</processEndTag>
52                                                 <sectionDelimiter>================================================================================</sectionDelimiter>
53                                                 <includes>
54                                                         <include>**/*.java</include>
55                                                         <include>**/*.ksh</include>
56                                                         <include>**/*.sh</include>
57                                                         <include>**/*.ftl</include>
58                                                         <include>**/*.xsd</include>
59                                                         <include>**/*.xjb</include>
60                                                         <include>**/aai*.xml</include>
61                                                         <include>**/*logback*.xml</include>
62                                                         <include>**/*aaiconfig*.properties</include>
63                                                         <include>**/*titan*.properties</include>
64                                                 </includes>
65                                         </configuration>
66                                         <executions>
67                                                 <execution>
68                                                         <id>first</id>
69                                                         <goals>
70                                                                 <goal>update-file-header</goal>
71                                                         </goals>
72                                                         <phase>process-sources</phase>
73                                                 </execution>
74                                         </executions>
75                                 </plugin>
76                                 <plugin>
77                                         <groupId>org.apache.maven.plugins</groupId>
78                                         <artifactId>maven-compiler-plugin</artifactId>
79                                         <configuration>
80                                                 <source>1.8</source>
81                                                 <target>1.8</target>
82                                         </configuration>
83                                 </plugin>
84                                 <plugin>
85                                         <artifactId>maven-release-plugin</artifactId>
86                                         <version>2.4.2</version>
87                                         <dependencies>
88                                                 <dependency>
89                                                         <groupId>org.apache.maven.scm</groupId>
90                                                         <artifactId>maven-scm-provider-gitexe</artifactId>
91                                                         <version>1.8.1</version>
92                                                 </dependency>
93                                         </dependencies>
94                                 </plugin>
95                         </plugins>
96                 </pluginManagement>
97                 <plugins>
98         <plugin>
99                 <groupId>org.apache.maven.plugins</groupId>
100                 <artifactId>maven-deploy-plugin</artifactId>
101                 <executions>
102                         <execution>
103                         <id>default-deploy</id>
104                         <phase>none</phase>
105                         </execution>
106                         </executions>
107                 </plugin>        
108                 <plugin>
109                     <groupId>org.sonatype.plugins</groupId>
110                     <artifactId>nexus-staging-maven-plugin</artifactId>
111                     <version>1.6.7</version>
112                     <extensions>true</extensions>
113                     <configuration>
114                         <nexusUrl>${nexusproxy}</nexusUrl>
115                         <stagingProfileId>176c31dfe190a</stagingProfileId>
116                         <serverId>ecomp-staging</serverId>
117                     </configuration>
118                 </plugin>
119                 </plugins>
120         </build>
121         
122         <distributionManagement>
123                 <repository>
124                         <id>ecomp-releases</id>
125                         <name>ECOMP Release Repository</name>
126                         <url>${nexusproxy}/content/repositories/releases/</url>
127                 </repository>
128                 <snapshotRepository>
129                         <id>ecomp-snapshots</id>
130                         <name>ECOMP Snapshot Repository</name>
131                         <url>${nexusproxy}/content/repositories/snapshots/</url>
132                 </snapshotRepository>
133                 <site>
134                         <id>ecomp-site</id>
135                         <url>dav:${nexusproxy}${sitePath}</url>
136                 </site>
137         </distributionManagement>
138
139         <!-- Plugins and repositories -->
140         <pluginRepositories>
141                 <pluginRepository>
142                         <id>central</id>
143                         <url>http://repo1.maven.org/maven2</url>
144                 </pluginRepository>
145                 <pluginRepository>
146                         <id>EvoSuite</id>
147                         <name>EvoSuite Repository</name>
148                         <url>http://www.evosuite.org/m2</url>
149                 </pluginRepository>
150         </pluginRepositories>
151         
152         <repositories>
153                 <repository>
154                         <id>AJSC</id>
155                         <name>AJSC repository</name>
156                         <url>https://mvnrepository.com/artifact/com.att.ajsc</url>
157                 </repository>
158                 <repository>
159                         <id>restlet</id>
160                         <name>maven reslet</name>
161                         <url>https://maven.restlet.com/</url>
162                 </repository>
163                 
164                 <repository>
165                         <id>central</id>
166                         <name>Maven 2 repository 2</name>
167                         <url>http://repo2.maven.org/maven2/</url>
168                 </repository>
169                 <repository>
170                         <id>ecomp-releases</id>
171                         <name>ECOMP Release Repository</name>
172                         <url>${nexusproxy}/content/repositories/releases/</url>
173                 </repository>
174                 <repository>
175                         <id>ecomp-staging</id>
176                         <name>ECOMP Staging Repository</name>
177                         <url>${nexusproxy}/content/repositories/staging/</url>
178                 </repository>
179                 <repository>
180                         <id>ecomp-snapshots</id>
181                         <name>ECOMP Snapshot Repository</name>
182                         <url>${nexusproxy}/content/repositories/snapshots/</url>
183                 </repository>
184         </repositories>
185 </project>