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