Remove the license check goal
[aai/schema-service.git] / pom.xml
1 <?xml version="1.0" encoding="UTF-8"?>
2 <!--
3
4     ============LICENSE_START=======================================================
5     org.onap.aai
6     ================================================================================
7     Copyright © 2017-2018 AT&T Intellectual Property. All rights reserved.
8     ================================================================================
9     Licensed under the Apache License, Version 2.0 (the "License");
10     you may not use this file except in compliance with the License.
11     You may obtain a copy of the License at
12
13        http://www.apache.org/licenses/LICENSE-2.0
14
15     Unless required by applicable law or agreed to in writing, software
16     distributed under the License is distributed on an "AS IS" BASIS,
17     WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
18     See the License for the specific language governing permissions and
19     limitations under the License.
20     ============LICENSE_END=========================================================
21
22 -->
23 <project xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://maven.apache.org/POM/4.0.0"
24          xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
25     <modelVersion>4.0.0</modelVersion>
26     <parent>
27         <groupId>org.onap.oparent</groupId>
28         <artifactId>oparent</artifactId>
29         <version>1.1.0</version>
30     </parent>
31     <groupId>org.onap.aai.schema-service</groupId>
32     <artifactId>schema-service</artifactId>
33     <version>1.0.0-SNAPSHOT</version>
34     <name>aai-schema-service</name>
35     <packaging>pom</packaging>
36     <modules>
37         <module>aai-annotations</module>
38         <module>aai-schema-gen</module>
39         <module>aai-schema</module>
40         <module>aai-queries</module>
41         <module>aai-schema-service</module>
42     </modules>
43     <properties>
44         <!--
45             Nexus Proxy Properties and Snapshot Locations
46             Ideally this can be overwritten at runtime per internal environment specific values at runtime
47         -->
48         <nexusproxy>https://nexus.onap.org</nexusproxy>
49         <site.path>/content/sites/site/org/onap/aai/resources/${project.artifactId}/${project.version}</site.path>
50         <release.path>/content/repositories/releases/</release.path>
51         <snapshot.path>/content/repositories/snapshots/</snapshot.path>
52         <!-- GMaven plugin uses this property to figure out the name of the docker tag -->
53         <aai.project.version>${project.version}</aai.project.version>
54         <checkstyle.skip>false</checkstyle.skip>
55     </properties>
56     <build>
57         <pluginManagement>
58             <plugins>
59                 <plugin>
60                     <groupId>org.codehaus.mojo</groupId>
61                     <artifactId>sonar-maven-plugin</artifactId>
62                     <version>3.3</version>
63                 </plugin>
64                 <plugin>
65                     <groupId>org.apache.maven.plugins</groupId>
66                     <artifactId>maven-deploy-plugin</artifactId>
67                     <executions>
68                         <execution>
69                             <id>default-deploy</id>
70                             <phase>none</phase>
71                         </execution>
72                     </executions>
73                 </plugin>
74                 <plugin>
75                     <groupId>org.sonatype.plugins</groupId>
76                     <artifactId>nexus-staging-maven-plugin</artifactId>
77                     <version>1.6.7</version>
78                     <extensions>true</extensions>
79                     <configuration>
80                         <nexusUrl>${nexusproxy}</nexusUrl>
81                         <stagingProfileId>176c31dfe190a</stagingProfileId>
82                         <serverId>ecomp-staging</serverId>
83                     </configuration>
84                 </plugin>
85                 <plugin>
86                     <groupId>com.mycila</groupId>
87                     <artifactId>license-maven-plugin</artifactId>
88                     <version>3.0</version>
89                     <configuration>
90                         <header>LICENSE.TXT</header>
91                         <includes>
92                             <include>src/main/java/**</include>
93                             <include>src/test/java/**</include>
94                             <include>pom.xml</include>
95                         </includes>
96                         <skipExistingHeaders>false</skipExistingHeaders>
97                         <skip>false</skip>
98                         <validHeaders>
99                             <header>LICENSE_ALT1.txt</header>
100                         </validHeaders>
101                     </configuration>
102                 </plugin>
103             </plugins>
104         </pluginManagement>
105         <plugins>
106             <plugin>
107                 <groupId>org.apache.maven.plugins</groupId>
108                 <artifactId>maven-site-plugin</artifactId>
109                 <version>3.6</version>
110                 <configuration>
111                     <reportPlugins>
112                         <plugin>
113                             <groupId>org.apache.maven.plugins</groupId>
114                             <artifactId>maven-project-info-reports-plugin</artifactId>
115                             <version>2.4</version>
116                             <configuration>
117                                 <dependencyDetailsEnabled>false</dependencyDetailsEnabled>
118                                 <dependencyLocationsEnabled>false</dependencyLocationsEnabled>
119                             </configuration>
120                             <reports>
121                                 <report>dependencies</report>
122                             </reports>
123                         </plugin>
124                         <plugin>
125                             <groupId>org.apache.maven.plugins</groupId>
126                             <artifactId>maven-javadoc-plugin</artifactId>
127                             <version>2.8</version>
128                             <configuration>
129                                 <additionalparam>-Xdoclint:none</additionalparam>
130                             </configuration>
131                         </plugin>
132                     </reportPlugins>
133                 </configuration>
134                 <dependencies>
135                     <dependency>
136                         <groupId>org.apache.maven.wagon</groupId>
137                         <artifactId>wagon-webdav-jackrabbit</artifactId>
138                         <version>2.10</version>
139                     </dependency>
140                 </dependencies>
141             </plugin>
142         </plugins>
143     </build>
144     <reporting>
145         <plugins>
146             <plugin>
147                 <groupId>org.apache.maven.plugins</groupId>
148                 <artifactId>maven-javadoc-plugin</artifactId>
149                 <version>2.10.4</version>
150                 <configuration>
151                     <failOnError>false</failOnError>
152                     <doclet>org.umlgraph.doclet.UmlGraphDoc</doclet>
153                     <docletArtifact>
154                         <groupId>org.umlgraph</groupId>
155                         <artifactId>umlgraph</artifactId>
156                         <version>5.6</version>
157                     </docletArtifact>
158                     <additionalparam>-views</additionalparam>
159                     <useStandardDocletOptions>true</useStandardDocletOptions>
160                 </configuration>
161             </plugin>
162         </plugins>
163     </reporting>
164     <pluginRepositories>
165         <pluginRepository>
166             <id>central</id>
167             <url>http://repo1.maven.org/maven2</url>
168         </pluginRepository>
169         <pluginRepository>
170             <id>EvoSuite</id>
171             <name>EvoSuite Repository</name>
172             <url>http://www.evosuite.org/m2</url>
173         </pluginRepository>
174     </pluginRepositories>
175     <distributionManagement>
176         <repository>
177             <id>ecomp-releases</id>
178             <name>ECOMP Release Repository</name>
179             <url>${nexusproxy}${release.path}</url>
180         </repository>
181         <snapshotRepository>
182             <id>ecomp-snapshots</id>
183             <name>ECOMP Snapshot Repository</name>
184             <url>${nexusproxy}${snapshot.path}</url>
185         </snapshotRepository>
186         <site>
187             <id>ecomp-site</id>
188             <url>dav:${nexusproxy}${site.path}</url>
189         </site>
190     </distributionManagement>
191 </project>