blob: 72c208949018d2495a33564b6302c98f384cf121 [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>
6 <groupId>org.openecomp.sdc.common</groupId>
7 <artifactId>openecomp-sdc-artifact-generator-api</artifactId>
8
9 <parent>
10 <artifactId>openecomp-common-lib</artifactId>
11 <groupId>org.openecomp.sdc.common</groupId>
Michael Lando0ad3c802017-09-19 16:32:59 +030012 <version>1.2.0-SNAPSHOT</version>
AviZi280f8012017-06-09 02:39:56 +030013 <relativePath>../../</relativePath>
14 </parent>
15
16 <dependencies>
17 <dependency>
18 <groupId>org.slf4j</groupId>
19 <artifactId>slf4j-api</artifactId>
20 <version>1.7.10</version>
21 </dependency>
22 <dependency>
23 <groupId>ch.qos.logback</groupId>
24 <artifactId>logback-classic</artifactId>
25 <version>${logback.version}</version>
26 <scope>provided</scope>
27 </dependency>
28 <dependency>
29 <groupId>ch.qos.logback</groupId>
30 <artifactId>logback-core</artifactId>
31 <version>${logback.version}</version>
32 <scope>provided</scope>
33 </dependency>
34 <dependency>
35 <groupId>com.fasterxml.jackson.core</groupId>
36 <artifactId>jackson-databind</artifactId>
37 <version>${jackson.version}</version>
38 </dependency>
39 <dependency>
40 <groupId>com.fasterxml.jackson.dataformat</groupId>
41 <artifactId>jackson-dataformat-yaml</artifactId>
42 <version>${jackson.version}</version>
43 </dependency>
44 <dependency>
45 <groupId>commons-codec</groupId>
46 <artifactId>commons-codec</artifactId>
47 <version>${commons.codec.version}</version>
48 </dependency>
49 <dependency>
50 <groupId>org.reflections</groupId>
51 <artifactId>reflections</artifactId>
52 <version>${org.reflections.version}</version>
53 </dependency>
54 <dependency>
55 <groupId>org.openecomp.sdc.common</groupId>
56 <artifactId>openecomp-logging-api</artifactId>
57 <version>${project.version}</version>
58 </dependency>
59 <dependency>
60 <groupId>org.openecomp.sdc.common</groupId>
61 <artifactId>openecomp-logging-core</artifactId>
62 <version>${project.version}</version>
63 </dependency>
64 <dependency>
65 <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>
82 </dependencies>
83 <build>
84 <plugins>
85 <plugin>
86 <groupId>org.jvnet.jaxb2.maven2</groupId>
87 <artifactId>maven-jaxb2-plugin</artifactId>
88 <version>${mvn.jaxb2.version}</version>
89 <executions>
90 <execution>
91 <phase>generate-sources</phase>
92 <goals>
93 <goal>generate</goal>
94 </goals>
95 </execution>
96 </executions>
97 <configuration>
98 <schemaDirectory>src/main/resources</schemaDirectory>
99 <generatePackage>org.openecomp.sdc.generator.aai.xml</generatePackage>
100 <generateDirectory>target/generated-sources/aai/xml</generateDirectory>
101 <schemaIncludes>
Aravindhan1235a09e582017-11-01 21:13:49 +0530102 <include>aai_schema_v11.xsd</include>
AviZi280f8012017-06-09 02:39:56 +0300103 </schemaIncludes>
104 <extension>true</extension>
105 <args>
106 <arg>-Xannotate</arg>
107 </args>
108 <plugins>
109 <plugin>
110 <groupId>org.jvnet.jaxb2_commons</groupId>
111 <artifactId>jaxb2-basics-annotate</artifactId>
112 <version>0.6.4</version>
113 </plugin>
114 <!-- Add the dependencies with your annotations as 'plugins' below -->
115 <plugin>
116 <groupId>org.jvnet.jaxb2_commons</groupId>
117 <artifactId>jaxb2-annotate-plugin-test-annox-annotations</artifactId>
118 <version>1.0.0</version>
119 </plugin>
120 </plugins>
121 </configuration>
122 </plugin>
123 </plugins>
124 </build>
125
126
127</project>