Sorted out unit-test libraries in onboarding
[sdc.git] / common / onap-sdc-artifact-generator-lib / onap-sdc-artifact-generator-api / pom.xml
1 <!--
2   ~ Copyright © 2016-2018 European Support Limited
3   ~
4   ~ Licensed under the Apache License, Version 2.0 (the "License");
5   ~ you may not use this file except in compliance with the License.
6   ~ You may obtain a copy of the License at
7   ~
8   ~      http://www.apache.org/licenses/LICENSE-2.0
9   ~
10   ~ Unless required by applicable law or agreed to in writing, software
11   ~ distributed under the License is distributed on an "AS IS" BASIS,
12   ~ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13   ~ See the License for the specific language governing permissions and
14   ~ limitations under the License.
15   -->
16
17 <project xmlns="http://maven.apache.org/POM/4.0.0"
18         xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
19         xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
20         <modelVersion>4.0.0</modelVersion>
21
22         <name>onap-sdc-artifact-generator-api</name>
23         <artifactId>onap-sdc-artifact-generator-api</artifactId>
24
25         <parent>
26                 <artifactId>onap-common-lib</artifactId>
27                 <groupId>org.onap.sdc.common</groupId>
28                 <version>1.3.2-SNAPSHOT</version>
29                 <relativePath>../../</relativePath>
30         </parent>
31
32         <dependencies>
33                 <dependency>
34                         <groupId>org.openecomp.sdc</groupId>
35                         <artifactId>openecomp-sdc-logging-api</artifactId>
36                         <version>${project.version}</version>
37                 </dependency>
38                 <dependency>
39                         <groupId>org.openecomp.sdc</groupId>
40                         <artifactId>openecomp-sdc-logging-core</artifactId>
41                         <version>${project.version}</version>
42                         <scope>runtime</scope>
43                 </dependency>
44                 <dependency>
45                         <groupId>org.slf4j</groupId>
46                         <artifactId>slf4j-api</artifactId>
47                         <version>1.7.10</version>
48                 </dependency>
49                 <dependency>
50                         <groupId>ch.qos.logback</groupId>
51                         <artifactId>logback-classic</artifactId>
52                         <version>${logback.version}</version>
53                         <scope>provided</scope>
54                 </dependency>
55                 <dependency>
56                         <groupId>ch.qos.logback</groupId>
57                         <artifactId>logback-core</artifactId>
58                         <version>${logback.version}</version>
59                         <scope>provided</scope>
60                 </dependency>
61                 <dependency>
62                         <groupId>com.fasterxml.jackson.core</groupId>
63                         <artifactId>jackson-databind</artifactId>
64                         <version>${jackson.version}</version>
65                 </dependency>
66                 <dependency>
67                         <groupId>com.fasterxml.jackson.dataformat</groupId>
68                         <artifactId>jackson-dataformat-yaml</artifactId>
69                         <version>${jackson.version}</version>
70                 </dependency>
71                 <dependency>
72                         <groupId>commons-codec</groupId>
73                         <artifactId>commons-codec</artifactId>
74                         <version>${commons.codec.version}</version>
75                 </dependency>
76                 <dependency>
77                         <groupId>org.reflections</groupId>
78                         <artifactId>reflections</artifactId>
79                         <version>${org.reflections.version}</version>
80                 </dependency>
81                 <dependency>
82                         <groupId>junit</groupId>
83                         <artifactId>junit</artifactId>
84                         <scope>test</scope>
85                 </dependency>
86
87         </dependencies>
88         <build>
89                 <plugins>
90                         <plugin>
91                                 <groupId>org.jvnet.jaxb2.maven2</groupId>
92                                 <artifactId>maven-jaxb2-plugin</artifactId>
93                                 <version>${mvn.jaxb2.version}</version>
94                                 <executions>
95                                         <execution>
96                                                 <phase>generate-sources</phase>
97                                                 <goals>
98                                                         <goal>generate</goal>
99                                                 </goals>
100                                         </execution>
101                                 </executions>
102                                 <configuration>
103                                         <schemaDirectory>src/main/resources</schemaDirectory>
104                                         <generatePackage>org.onap.sdc.generator.aai.xml</generatePackage>
105                                         <generateDirectory>target/generated-sources/aai/xml</generateDirectory>
106                                         <removeOldOutput>false</removeOldOutput>
107                                         <cleanPackageDirectories>true</cleanPackageDirectories>
108                                         <forceRegenerate>false</forceRegenerate>
109                                         <debug>false</debug>
110                                         <verbose>false</verbose>
111                                         <schemaIncludes>
112                                                 <include>aai_schema_v11.xsd</include>
113                                         </schemaIncludes>
114                                         <extension>true</extension>
115                                         <args>
116                                                 <arg>-Xannotate</arg>
117                                         </args>
118                                         <plugins>
119                                                 <plugin>
120                                                         <groupId>org.jvnet.jaxb2_commons</groupId>
121                                                         <artifactId>jaxb2-basics-annotate</artifactId>
122                                                         <version>0.6.4</version>
123                                                 </plugin>
124                                                 <!-- Add the dependencies with your annotations as 'plugins' below -->
125                                                 <plugin>
126                                                         <groupId>org.jvnet.jaxb2_commons</groupId>
127                                                         <artifactId>jaxb2-annotate-plugin-test-annox-annotations</artifactId>
128                                                         <version>1.0.0</version>
129                                                 </plugin>
130                                         </plugins>
131                                 </configuration>
132                         </plugin>
133                 </plugins>
134         </build>
135
136
137 </project>