ca8f6f8792d66be339e7ec914d5cfbc2cdc5e878
[sdc.git] / common / openecomp-sdc-artifact-generator-lib / openecomp-sdc-artifact-generator-api / pom.xml
1 <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
2          xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
3     <modelVersion>4.0.0</modelVersion>
4
5     <name>openecomp-sdc-artifact-generator-api</name>
6     <artifactId>openecomp-sdc-artifact-generator-api</artifactId>
7
8     <parent>
9         <artifactId>openecomp-common-lib</artifactId>
10         <groupId>org.openecomp.sdc.common</groupId>
11         <version>1.2.0-SNAPSHOT</version>
12         <relativePath>../../</relativePath>
13     </parent>
14
15     <dependencies>
16         <dependency>
17             <groupId>org.openecomp.sdc</groupId>
18             <artifactId>openecomp-sdc-logging-api</artifactId>
19             <version>${project.version}</version>
20         </dependency>
21         <dependency>
22             <groupId>org.openecomp.sdc</groupId>
23             <artifactId>openecomp-sdc-logging-core</artifactId>
24             <version>${project.version}</version>
25             <scope>runtime</scope>
26         </dependency>
27         <dependency>
28             <groupId>org.slf4j</groupId>
29             <artifactId>slf4j-api</artifactId>
30             <version>1.7.10</version>
31         </dependency>
32         <dependency>
33             <groupId>ch.qos.logback</groupId>
34             <artifactId>logback-classic</artifactId>
35             <version>${logback.version}</version>
36             <scope>provided</scope>
37         </dependency>
38         <dependency>
39             <groupId>ch.qos.logback</groupId>
40             <artifactId>logback-core</artifactId>
41             <version>${logback.version}</version>
42             <scope>provided</scope>
43         </dependency>
44         <dependency>
45             <groupId>com.fasterxml.jackson.core</groupId>
46             <artifactId>jackson-databind</artifactId>
47             <version>${jackson.version}</version>
48         </dependency>
49         <dependency>
50             <groupId>com.fasterxml.jackson.dataformat</groupId>
51             <artifactId>jackson-dataformat-yaml</artifactId>
52             <version>${jackson.version}</version>
53         </dependency>
54         <dependency>
55             <groupId>commons-codec</groupId>
56             <artifactId>commons-codec</artifactId>
57             <version>${commons.codec.version}</version>
58         </dependency>
59         <dependency>
60             <groupId>org.reflections</groupId>
61             <artifactId>reflections</artifactId>
62             <version>${org.reflections.version}</version>
63         </dependency>
64
65     </dependencies>
66     <build>
67         <plugins>
68             <plugin>
69                 <groupId>org.jvnet.jaxb2.maven2</groupId>
70                 <artifactId>maven-jaxb2-plugin</artifactId>
71                 <version>${mvn.jaxb2.version}</version>
72                 <executions>
73                     <execution>
74                         <phase>generate-sources</phase>
75                         <goals>
76                             <goal>generate</goal>
77                         </goals>
78                     </execution>
79                 </executions>
80                 <configuration>
81                     <schemaDirectory>src/main/resources</schemaDirectory>
82                     <generatePackage>org.openecomp.sdc.generator.aai.xml</generatePackage>
83                     <generateDirectory>target/generated-sources/custom/aai/xml</generateDirectory>
84                     <removeOldOutput>false</removeOldOutput>
85                     <cleanPackageDirectories>true</cleanPackageDirectories>
86                     <forceRegenerate>false</forceRegenerate>
87                     <debug>false</debug>
88                     <verbose>false</verbose>
89                     <schemaIncludes>
90                         <include>aai_schema_v11.xsd</include>
91                     </schemaIncludes>
92                     <extension>true</extension>
93                     <args>
94                         <arg>-Xannotate</arg>
95                     </args>
96                     <plugins>
97                         <plugin>
98                             <groupId>org.jvnet.jaxb2_commons</groupId>
99                             <artifactId>jaxb2-basics-annotate</artifactId>
100                             <version>0.6.4</version>
101                         </plugin>
102                         <!-- Add the dependencies with your annotations as 'plugins' below -->
103                         <plugin>
104                             <groupId>org.jvnet.jaxb2_commons</groupId>
105                             <artifactId>jaxb2-annotate-plugin-test-annox-annotations</artifactId>
106                             <version>1.0.0</version>
107                         </plugin>
108                     </plugins>
109                 </configuration>
110             </plugin>
111         </plugins>
112     </build>
113
114
115 </project>