81ef3262d501a3f060272b5e8dceacfa3867851c
[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 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   ECOMP is a trademark and service mark of AT&T Intellectual Property.\r
23   ============LICENSE_END=========================================================\r
24   -->\r
25 <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
26     <modelVersion>4.0.0</modelVersion>\r
27     <parent>\r
28         <artifactId>appc-java-client</artifactId>\r
29         <groupId>org.openecomp.appc.client</groupId>\r
30         <version>1.2.0-SNAPSHOT</version>\r
31     </parent>\r
32 \r
33     <artifactId>code-generator</artifactId>\r
34     <name>code-generator</name>\r
35     <description>APPC client code generator</description>\r
36     <packaging>maven-plugin</packaging>\r
37 \r
38     <properties>\r
39             <licenseDir>${project.parent.parent.basedir}</licenseDir>\r
40     </properties>\r
41 \r
42     <build>\r
43         <plugins>\r
44             <plugin>\r
45                 <groupId>org.apache.maven.plugins</groupId>\r
46                 <artifactId>maven-compiler-plugin</artifactId>\r
47                 <configuration>\r
48                     <source>${java.version}</source>\r
49                     <target>${java.version}</target>\r
50                 </configuration>\r
51             </plugin>\r
52             <plugin>\r
53                 <groupId>org.apache.maven.plugins</groupId>\r
54                 <artifactId>maven-plugin-plugin</artifactId>\r
55                 <version>${maven.plugin.plugin.version}</version>\r
56                 <configuration>\r
57                     <goalPrefix>code-generator</goalPrefix>\r
58                     <encoding>UTF-8</encoding>\r
59                 </configuration>\r
60                 <executions>\r
61                     <execution>\r
62                         <id>default-descriptor</id>\r
63                         <goals>\r
64                             <goal>descriptor</goal>\r
65                         </goals>\r
66                         <phase>process-classes</phase>\r
67                     </execution>\r
68                     <execution>\r
69                         <id>help-descriptor</id>\r
70                         <goals>\r
71                             <goal>helpmojo</goal>\r
72                         </goals>\r
73                         <phase>process-classes</phase>\r
74                     </execution>\r
75                 </executions>\r
76             </plugin>\r
77         </plugins>\r
78     </build>\r
79     <dependencies>\r
80           <dependency>\r
81               <groupId>org.opendaylight.yangtools</groupId>\r
82               <artifactId>yang-parser-impl</artifactId>\r
83               <version>${yang.parser.impl.version}</version>\r
84           </dependency>\r
85         <dependency>\r
86             <groupId>org.opendaylight.controller</groupId>\r
87             <artifactId>sal-core-api</artifactId>\r
88             <version>${sal.core.api.version}</version>\r
89         </dependency>\r
90         <dependency>\r
91             <groupId>org.opendaylight.yangtools</groupId>\r
92             <artifactId>yang-model-api</artifactId>\r
93             <version>${yang.parser.impl.version}</version>\r
94         </dependency>\r
95         <dependency>\r
96             <groupId>com.fasterxml.jackson.core</groupId>\r
97             <artifactId>jackson-databind</artifactId>\r
98             <version>${jackson.version}</version>\r
99         </dependency>\r
100         <dependency>\r
101             <groupId>org.freemarker</groupId>\r
102             <artifactId>freemarker</artifactId>\r
103             <version>${freemarker.version}</version>\r
104         </dependency>\r
105 \r
106         <dependency>\r
107             <groupId>org.apache.maven.plugin-tools</groupId>\r
108             <artifactId>maven-plugin-annotations</artifactId>\r
109             <version>${maven.plugin.annotations.version}</version>\r
110         </dependency>\r
111         <dependency>\r
112             <groupId>org.apache.maven</groupId>\r
113             <artifactId>maven-plugin-api</artifactId>\r
114             <version>${maven.plugin.api.version}</version>\r
115         </dependency>\r
116         <dependency>\r
117             <groupId>org.apache.maven</groupId>\r
118             <artifactId>maven-core</artifactId>\r
119             <version>${maven.core.version}</version>\r
120         </dependency>\r
121         <dependency>\r
122             <groupId>junit</groupId>\r
123             <artifactId>junit</artifactId>\r
124             <scope>test</scope>\r
125         </dependency>\r
126     </dependencies>\r
127 </project>\r