blob: b1b734eb1dc3d515dc5376fa983b0319d28a7270 [file] [log] [blame]
Michael Lando5b593492018-07-29 16:13:45 +03001<project xmlns="http://maven.apache.org/POM/4.0.0"
2 xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
3 xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
4 <modelVersion>4.0.0</modelVersion>
amitjai42c920b2018-04-27 13:28:57 +05305
Michael Lando5b593492018-07-29 16:13:45 +03006 <name>onap-sdc-artifact-generator-api</name>
7 <artifactId>onap-sdc-artifact-generator-api</artifactId>
amitjai42c920b2018-04-27 13:28:57 +05308
Michael Lando5b593492018-07-29 16:13:45 +03009 <parent>
10 <artifactId>onap-common-lib</artifactId>
11 <groupId>org.onap.sdc.common</groupId>
Michael Lando1276ee12018-11-01 16:25:31 +020012 <version>1.3.2-SNAPSHOT</version>
Michael Lando5b593492018-07-29 16:13:45 +030013 <relativePath>../../</relativePath>
14 </parent>
amitjai42c920b2018-04-27 13:28:57 +053015
Michael Lando5b593492018-07-29 16:13:45 +030016 <dependencies>
17 <dependency>
18 <groupId>org.openecomp.sdc</groupId>
19 <artifactId>openecomp-sdc-logging-api</artifactId>
20 <version>${project.version}</version>
21 </dependency>
22 <dependency>
23 <groupId>org.openecomp.sdc</groupId>
24 <artifactId>openecomp-sdc-logging-core</artifactId>
25 <version>${project.version}</version>
26 <scope>runtime</scope>
27 </dependency>
28 <dependency>
29 <groupId>org.slf4j</groupId>
30 <artifactId>slf4j-api</artifactId>
31 <version>1.7.10</version>
32 </dependency>
33 <dependency>
34 <groupId>ch.qos.logback</groupId>
35 <artifactId>logback-classic</artifactId>
36 <version>${logback.version}</version>
37 <scope>provided</scope>
38 </dependency>
39 <dependency>
40 <groupId>ch.qos.logback</groupId>
41 <artifactId>logback-core</artifactId>
42 <version>${logback.version}</version>
43 <scope>provided</scope>
44 </dependency>
45 <dependency>
46 <groupId>com.fasterxml.jackson.core</groupId>
47 <artifactId>jackson-databind</artifactId>
48 <version>${jackson.version}</version>
49 </dependency>
50 <dependency>
51 <groupId>com.fasterxml.jackson.dataformat</groupId>
52 <artifactId>jackson-dataformat-yaml</artifactId>
53 <version>${jackson.version}</version>
54 </dependency>
55 <dependency>
56 <groupId>commons-codec</groupId>
57 <artifactId>commons-codec</artifactId>
58 <version>${commons.codec.version}</version>
59 </dependency>
60 <dependency>
61 <groupId>org.reflections</groupId>
62 <artifactId>reflections</artifactId>
63 <version>${org.reflections.version}</version>
64 </dependency>
65 <dependency>
66 <groupId>org.testng</groupId>
67 <artifactId>testng</artifactId>
68 <scope>test</scope>
69 <version>${testng.version}</version>
70 <exclusions>
71 <exclusion>
72 <artifactId>snakeyaml</artifactId>
73 <groupId>org.yaml</groupId>
74 </exclusion>
75 </exclusions>
76 </dependency>
77 <dependency>
78 <groupId>junit</groupId>
79 <artifactId>junit</artifactId>
80 <scope>test</scope>
81 <version>${junit.version}</version>
82 </dependency>
amitjai42c920b2018-04-27 13:28:57 +053083
Michael Lando5b593492018-07-29 16:13:45 +030084 </dependencies>
85 <build>
86 <plugins>
87 <plugin>
88 <groupId>org.jvnet.jaxb2.maven2</groupId>
89 <artifactId>maven-jaxb2-plugin</artifactId>
90 <version>${mvn.jaxb2.version}</version>
91 <executions>
92 <execution>
93 <phase>generate-sources</phase>
94 <goals>
95 <goal>generate</goal>
96 </goals>
97 </execution>
98 </executions>
99 <configuration>
100 <schemaDirectory>src/main/resources</schemaDirectory>
101 <generatePackage>org.onap.sdc.generator.aai.xml</generatePackage>
102 <generateDirectory>target/generated-sources/aai/xml</generateDirectory>
103 <removeOldOutput>false</removeOldOutput>
104 <cleanPackageDirectories>true</cleanPackageDirectories>
105 <forceRegenerate>false</forceRegenerate>
106 <debug>false</debug>
107 <verbose>false</verbose>
108 <schemaIncludes>
109 <include>aai_schema_v11.xsd</include>
110 </schemaIncludes>
111 <extension>true</extension>
112 <args>
113 <arg>-Xannotate</arg>
114 </args>
115 <plugins>
116 <plugin>
117 <groupId>org.jvnet.jaxb2_commons</groupId>
118 <artifactId>jaxb2-basics-annotate</artifactId>
119 <version>0.6.4</version>
120 </plugin>
121 <!-- Add the dependencies with your annotations as 'plugins' below -->
122 <plugin>
123 <groupId>org.jvnet.jaxb2_commons</groupId>
124 <artifactId>jaxb2-annotate-plugin-test-annox-annotations</artifactId>
125 <version>1.0.0</version>
126 </plugin>
127 </plugins>
128 </configuration>
129 </plugin>
130 </plugins>
131 </build>
amitjai42c920b2018-04-27 13:28:57 +0530132
amitjai42c920b2018-04-27 13:28:57 +0530133
134</project>