Neon SR1 upgrade
[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.6.2-SNAPSHOT</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           </dependency>
84         <dependency>
85             <groupId>org.opendaylight.controller</groupId>
86             <artifactId>sal-core-api</artifactId>
87             <version>${sal.core.api.version}</version>
88         </dependency>
89         <dependency>
90             <groupId>org.opendaylight.yangtools</groupId>
91             <artifactId>yang-model-api</artifactId>
92             <version>${yang.parser.impl.version}</version>
93         </dependency>
94         <dependency>
95             <groupId>com.fasterxml.jackson.core</groupId>
96             <artifactId>jackson-databind</artifactId>
97             <version>${jackson.version}</version>
98         </dependency>
99         <dependency>
100             <groupId>org.freemarker</groupId>
101             <artifactId>freemarker</artifactId>
102             <version>${freemarker.version}</version>
103         </dependency>
104
105         <dependency>
106             <groupId>org.apache.maven.plugin-tools</groupId>
107             <artifactId>maven-plugin-annotations</artifactId>
108             <version>${maven.plugin.annotations.version}</version>
109         </dependency>
110         <dependency>
111             <groupId>org.apache.maven</groupId>
112             <artifactId>maven-plugin-api</artifactId>
113             <version>${maven.plugin.api.version}</version>
114         </dependency>
115         <dependency>
116             <groupId>org.apache.maven</groupId>
117             <artifactId>maven-core</artifactId>
118             <version>${maven.core.version}</version>
119             <exclusions>
120                  <exclusion>
121                       <groupId>org.codehaus.plexus</groupId>
122                       <artifactId>plexus-utils</artifactId>
123                  </exclusion>
124             </exclusions>
125         </dependency>
126         <dependency>
127             <groupId>org.codehaus.plexus</groupId>
128             <artifactId>plexus-utils</artifactId>
129             <version>3.0.24</version>
130         </dependency>
131
132         <dependency>
133             <groupId>junit</groupId>
134             <artifactId>junit</artifactId>
135             <scope>test</scope>
136         </dependency>
137     </dependencies>
138 </project>