blob: 7e40bc7b6196b3ea3d38842aab2566e8d3fedead [file] [log] [blame]
amitjai42c920b2018-04-27 13:28:57 +05301<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>onap-sdc-artifact-generator-api</name>
6 <artifactId>onap-sdc-artifact-generator-api</artifactId>
7
8 <parent>
9 <artifactId>onap-common-lib</artifactId>
10 <groupId>org.onap.sdc.common</groupId>
Michael Landod8a0dea2018-06-02 19:23:27 +030011 <version>1.3.0-SNAPSHOT</version>
amitjai42c920b2018-04-27 13:28:57 +053012 <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 <dependency>
65 <groupId>org.testng</groupId>
66 <artifactId>testng</artifactId>
67 <scope>test</scope>
avigaffaaae39fb2018-06-18 19:56:59 +030068 <version>${testng.version}</version>
amitjai42c920b2018-04-27 13:28:57 +053069 <exclusions>
70 <exclusion>
71 <artifactId>snakeyaml</artifactId>
72 <groupId>org.yaml</groupId>
73 </exclusion>
74 </exclusions>
75 </dependency>
76 <dependency>
77 <groupId>junit</groupId>
78 <artifactId>junit</artifactId>
79 <scope>test</scope>
80 <version>${junit.version}</version>
81 </dependency>
82
83 </dependencies>
84 <build>
85 <plugins>
86 <plugin>
87 <groupId>org.jvnet.jaxb2.maven2</groupId>
88 <artifactId>maven-jaxb2-plugin</artifactId>
89 <version>${mvn.jaxb2.version}</version>
90 <executions>
91 <execution>
92 <phase>generate-sources</phase>
93 <goals>
94 <goal>generate</goal>
95 </goals>
96 </execution>
97 </executions>
98 <configuration>
99 <schemaDirectory>src/main/resources</schemaDirectory>
100 <generatePackage>org.onap.sdc.generator.aai.xml</generatePackage>
Gautam Shahb145c082018-05-27 13:32:07 +0530101 <generateDirectory>target/generated-sources/aai/xml</generateDirectory>
amitjai42c920b2018-04-27 13:28:57 +0530102 <removeOldOutput>false</removeOldOutput>
103 <cleanPackageDirectories>true</cleanPackageDirectories>
104 <forceRegenerate>false</forceRegenerate>
105 <debug>false</debug>
106 <verbose>false</verbose>
107 <schemaIncludes>
108 <include>aai_schema_v11.xsd</include>
109 </schemaIncludes>
110 <extension>true</extension>
111 <args>
112 <arg>-Xannotate</arg>
113 </args>
114 <plugins>
115 <plugin>
116 <groupId>org.jvnet.jaxb2_commons</groupId>
117 <artifactId>jaxb2-basics-annotate</artifactId>
118 <version>0.6.4</version>
119 </plugin>
120 <!-- Add the dependencies with your annotations as 'plugins' below -->
121 <plugin>
122 <groupId>org.jvnet.jaxb2_commons</groupId>
123 <artifactId>jaxb2-annotate-plugin-test-annox-annotations</artifactId>
124 <version>1.0.0</version>
125 </plugin>
126 </plugins>
127 </configuration>
128 </plugin>
129 </plugins>
130 </build>
131
amitjai42c920b2018-04-27 13:28:57 +0530132
133</project>