Release appc
[appc.git] / appc-client / code-generator / pom.xml
1 <?xml version="1.0" encoding="UTF-8"?>
2 <!--
3   ============LICENSE_START=======================================================
4   ONAP : APPC
5   ================================================================================
6   Copyright (C) 2017-2018 AT&T Intellectual Property. All rights reserved.
7   ================================================================================
8   Copyright (C) 2017 Amdocs
9   =============================================================================
10   Licensed under the Apache License, Version 2.0 (the "License");
11   you may not use this file except in compliance with the License.
12   You may obtain a copy of the License at
13
14        http://www.apache.org/licenses/LICENSE-2.0
15
16   Unless required by applicable law or agreed to in writing, software
17   distributed under the License is distributed on an "AS IS" BASIS,
18   WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
19   See the License for the specific language governing permissions and
20   limitations under the License.
21
22   ============LICENSE_END=========================================================
23   -->
24 <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">
25     <modelVersion>4.0.0</modelVersion>
26     <parent>
27         <artifactId>appc-java-client</artifactId>
28         <groupId>org.onap.appc.client</groupId>
29         <version>1.7.2</version>
30     </parent>
31
32     <artifactId>code-generator</artifactId>
33     <name>code-generator</name>
34     <description>APPC client code generator</description>
35     <packaging>maven-plugin</packaging>
36
37     <properties>
38             <licenseDir>${project.parent.parent.basedir}</licenseDir>
39     </properties>
40
41     <build>
42         <plugins>
43             <plugin>
44                 <groupId>org.apache.maven.plugins</groupId>
45                 <artifactId>maven-compiler-plugin</artifactId>
46                 <configuration>
47                     <source>${java.version}</source>
48                     <target>${java.version}</target>
49                 </configuration>
50             </plugin>
51             <plugin>
52                 <groupId>org.apache.maven.plugins</groupId>
53                 <artifactId>maven-plugin-plugin</artifactId>
54                 <version>${maven.plugin.plugin.version}</version>
55                 <configuration>
56                     <goalPrefix>code-generator</goalPrefix>
57                     <encoding>UTF-8</encoding>
58                 </configuration>
59                 <executions>
60                     <execution>
61                         <id>default-descriptor</id>
62                         <goals>
63                             <goal>descriptor</goal>
64                         </goals>
65                         <phase>process-classes</phase>
66                     </execution>
67                     <execution>
68                         <id>help-descriptor</id>
69                         <goals>
70                             <goal>helpmojo</goal>
71                         </goals>
72                         <phase>process-classes</phase>
73                     </execution>
74                 </executions>
75             </plugin>
76         </plugins>
77     </build>
78     <dependencies>
79           <dependency>
80               <groupId>org.opendaylight.yangtools</groupId>
81               <artifactId>yang-parser-impl</artifactId>
82               <version>${yang.parser.impl.version}</version>
83               <exclusions>
84                   <exclusion>
85                       <groupId>com.google.code.findbugs</groupId>
86                       <artifactId>jsr305</artifactId>
87                   </exclusion>
88               </exclusions>
89           </dependency>
90         <dependency>
91             <groupId>org.opendaylight.controller</groupId>
92             <artifactId>sal-core-api</artifactId>
93             <version>${sal.core.api.version}</version>
94         </dependency>
95         <dependency>
96             <groupId>org.opendaylight.yangtools</groupId>
97             <artifactId>yang-model-api</artifactId>
98             <version>${yang.parser.impl.version}</version>
99             <exclusions>
100                 <exclusion>
101                     <groupId>com.google.code.findbugs</groupId>
102                     <artifactId>jsr305</artifactId>
103                 </exclusion>
104             </exclusions>
105         </dependency>
106         <dependency>
107             <groupId>com.fasterxml.jackson.core</groupId>
108             <artifactId>jackson-databind</artifactId>
109             <version>${jackson.version}</version>
110         </dependency>
111         <dependency>
112             <groupId>org.freemarker</groupId>
113             <artifactId>freemarker</artifactId>
114             <version>${freemarker.version}</version>
115         </dependency>
116
117         <dependency>
118             <groupId>org.apache.maven.plugin-tools</groupId>
119             <artifactId>maven-plugin-annotations</artifactId>
120             <version>${maven.plugin.annotations.version}</version>
121         </dependency>
122         <dependency>
123             <groupId>org.apache.maven</groupId>
124             <artifactId>maven-plugin-api</artifactId>
125             <version>${maven.plugin.api.version}</version>
126         </dependency>
127         <dependency>
128             <groupId>org.apache.maven</groupId>
129             <artifactId>maven-core</artifactId>
130             <version>${maven.core.version}</version>
131             <exclusions>
132                  <exclusion>
133                       <groupId>org.codehaus.plexus</groupId>
134                       <artifactId>plexus-utils</artifactId>
135                  </exclusion>
136             </exclusions>
137         </dependency>
138         <dependency>
139             <groupId>org.codehaus.plexus</groupId>
140             <artifactId>plexus-utils</artifactId>
141             <version>3.0.24</version>
142         </dependency>
143
144         <dependency>
145             <groupId>junit</groupId>
146             <artifactId>junit</artifactId>
147             <scope>test</scope>
148         </dependency>
149     </dependencies>
150 </project>