Remove license-maven-plugin from aai-service
[aai/aai-service.git] / annotations / pom.xml
1 <?xml version="1.0"?>
2 <project xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd" xmlns="http://maven.apache.org/POM/4.0.0"
3     xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
4   <modelVersion>4.0.0</modelVersion>
5   <parent>
6     <groupId>org.openecomp.aai.aai-service</groupId>
7     <artifactId>aai-service</artifactId>
8     <version>1.1.0-SNAPSHOT</version>
9   </parent>
10   <artifactId>annotations</artifactId>
11   <name>annotations</name>
12   <packaging>jar</packaging>
13   <properties>
14     <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
15     <nexusproxy>https://nexus.onap.org</nexusproxy>
16     <snapshotNexusPath>/content/repositories/snapshots/</snapshotNexusPath>
17     <releaseNexusPath>/content/repositories/releases/</releaseNexusPath>
18     <stagingNexusPath>/content/repositories/staging/</stagingNexusPath>
19   </properties>
20   <dependencies>
21     <dependency>
22       <groupId>junit</groupId>
23       <artifactId>junit</artifactId>
24       <version>3.8.1</version>
25       <scope>test</scope>
26     </dependency>
27         <dependency>
28                 <groupId>com.att.ajsc</groupId>
29                 <artifactId>ajsc-runner</artifactId>
30                 <version>${ajscRuntimeVersion}</version>
31                 <scope>runtime</scope>
32         </dependency>
33         <dependency>
34                 <groupId>com.att.ajsc</groupId>
35                 <artifactId>ajsc-core</artifactId>
36                 <version>${ajscRuntimeVersion}</version>
37                 <scope>provided</scope>
38         </dependency>
39   </dependencies>
40   <build>
41   <plugins>
42   <plugin>
43         <groupId>org.jsonschema2pojo</groupId>
44         <artifactId>jsonschema2pojo-maven-plugin</artifactId>
45         <version>0.4.13</version>
46         <configuration>
47                 <skip>true</skip>
48         </configuration>
49         </plugin>
50         <plugin>
51                 <groupId>org.apache.cxf</groupId>
52                 <artifactId>cxf-codegen-plugin</artifactId>
53                 <version>${cxf.version}</version>
54                 <executions>
55                         <execution>
56                                 <id>generate-sources</id>
57                                 <phase/>
58                         </execution>
59                 </executions>
60         </plugin>
61          <plugin>
62         <artifactId>maven-antrun-plugin</artifactId>
63         <configuration>
64         <skip>true</skip></configuration>
65      </plugin>
66         <plugin>
67         <artifactId>maven-assembly-plugin</artifactId>
68 <executions>
69           <execution>
70             <id>make-assembly-ajsc-arch-parent</id>
71             <phase></phase>      
72             </execution>
73             </executions>  
74         </plugin>
75          <plugin>
76         <groupId>org.codehaus.groovy.maven</groupId>
77         <artifactId>gmaven-plugin</artifactId>
78           <executions>
79           <execution>
80             <id>gmaven-ajsc-arch-parent</id>
81             <phase/>
82             </execution>
83             </executions>
84         </plugin>
85         <plugin>
86                 <groupId>org.apache.maven.plugins</groupId>
87                         <artifactId>maven-deploy-plugin</artifactId>
88                         <executions>
89                                 <execution>
90                                 <id>default-deploy</id>
91                                 <phase>deploy</phase>
92                                 </execution>
93                                 </executions>
94                 </plugin> 
95   </plugins>
96   </build>
97   <distributionManagement>
98                 <repository>
99                         <id>ecomp-releases</id>
100                         <name>ECOMP Release Repository</name>
101       <url>${nexusproxy}/${releaseNexusPath}</url>
102                 </repository>
103                 <snapshotRepository>
104                         <id>ecomp-snapshots</id>
105                         <name>ECOMP Snapshot Repository</name>
106       <url>${nexusproxy}/${snapshotNexusPath}</url>
107                 </snapshotRepository>
108                 <site>
109                         <id>ecomp-javadoc</id>
110                         <url>dav:https://ecomp-nexus:8443/repository/aai/logging-service-javadoc/${project.version}</url>
111                 </site>
112         </distributionManagement>
113 </project>