blob: ca8f6f8792d66be339e7ec914d5cfbc2cdc5e878 [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>
noahsf9f112f2017-12-06 13:11:38 +020064
AviZi280f8012017-06-09 02:39:56 +030065 </dependencies>
66 <build>
67 <plugins>
68 <plugin>
69 <groupId>org.jvnet.jaxb2.maven2</groupId>
70 <artifactId>maven-jaxb2-plugin</artifactId>
Gautam Shah3de22e12018-04-21 16:18:37 +053071 <version>${mvn.jaxb2.version}</version>
AviZi280f8012017-06-09 02:39:56 +030072 <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>
Gautam Shah3de22e12018-04-21 16:18:37 +053083 <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>
AviZi280f8012017-06-09 02:39:56 +030089 <schemaIncludes>
Aravindhan1235a09e582017-11-01 21:13:49 +053090 <include>aai_schema_v11.xsd</include>
AviZi280f8012017-06-09 02:39:56 +030091 </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>