blob: 22a518aa36b04e73f629989cfa9ae4a1aeee59d9 [file] [log] [blame]
AviZi280f8012017-06-09 02:39:56 +03001<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>
AviZi280f8012017-06-09 02:39:56 +03006 <artifactId>openecomp-sdc-artifact-generator-api</artifactId>
7
8 <parent>
9 <artifactId>openecomp-common-lib</artifactId>
10 <groupId>org.openecomp.sdc.common</groupId>
Michael Lando0ad3c802017-09-19 16:32:59 +030011 <version>1.2.0-SNAPSHOT</version>
AviZi280f8012017-06-09 02:39:56 +030012 <relativePath>../../</relativePath>
13 </parent>
14
15 <dependencies>
16 <dependency>
noahsf9f112f2017-12-06 13:11:38 +020017 <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>
AviZi280f8012017-06-09 02:39:56 +030028 <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>
AviZi280f8012017-06-09 02:39:56 +030065 <groupId>org.testng</groupId>
66 <artifactId>testng</artifactId>
67 <scope>test</scope>
68 <version>6.8.5</version>
69 <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>
Avi Zivb8e2faf2017-07-18 19:45:38 +030080 <version>${junit.version}</version>
AviZi280f8012017-06-09 02:39:56 +030081 </dependency>
noahsf9f112f2017-12-06 13:11:38 +020082
AviZi280f8012017-06-09 02:39:56 +030083 </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.openecomp.sdc.generator.aai.xml</generatePackage>
101 <generateDirectory>target/generated-sources/aai/xml</generateDirectory>
102 <schemaIncludes>
Aravindhan1235a09e582017-11-01 21:13:49 +0530103 <include>aai_schema_v11.xsd</include>
AviZi280f8012017-06-09 02:39:56 +0300104 </schemaIncludes>
105 <extension>true</extension>
106 <args>
107 <arg>-Xannotate</arg>
108 </args>
109 <plugins>
110 <plugin>
111 <groupId>org.jvnet.jaxb2_commons</groupId>
112 <artifactId>jaxb2-basics-annotate</artifactId>
113 <version>0.6.4</version>
114 </plugin>
115 <!-- Add the dependencies with your annotations as 'plugins' below -->
116 <plugin>
117 <groupId>org.jvnet.jaxb2_commons</groupId>
118 <artifactId>jaxb2-annotate-plugin-test-annox-annotations</artifactId>
119 <version>1.0.0</version>
120 </plugin>
121 </plugins>
122 </configuration>
123 </plugin>
124 </plugins>
125 </build>
126
127
128</project>