70dd0107ad18f311bc450738f3da8cdfef02f8f5
[sdc.git] / common / openecomp-sdc-artifact-generator-lib / openecomp-sdc-artifact-generator-core / pom.xml
1 <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-core</name>
6     <groupId>org.openecomp.sdc.common</groupId>
7     <artifactId>openecomp-sdc-artifact-generator-core</artifactId>
8
9     <parent>
10         <artifactId>openecomp-common-lib</artifactId>
11         <groupId>org.openecomp.sdc.common</groupId>
12         <version>1.1.0-SNAPSHOT</version>
13         <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.openecomp.sdc.common</groupId>
51             <artifactId>openecomp-logging-api</artifactId>
52             <version>${project.version}</version>
53         </dependency>
54         <dependency>
55             <groupId>org.openecomp.sdc.common</groupId>
56             <artifactId>openecomp-logging-core</artifactId>
57             <version>${project.version}</version>
58         </dependency>
59         <dependency>
60             <groupId>org.openecomp.sdc.common</groupId>
61             <artifactId>openecomp-sdc-artifact-generator-api</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         </dependency>
70         <dependency>
71             <groupId>commons-io</groupId>
72             <artifactId>commons-io</artifactId>
73             <version>RELEASE</version>
74             <scope>test</scope>
75         </dependency>
76         <dependency>
77             <groupId>org.reflections</groupId>
78             <artifactId>reflections</artifactId>
79             <version>${org.reflections.version}</version>
80         </dependency>
81     </dependencies>
82     <build>
83         <pluginManagement>
84             <plugins>
85                 <plugin>
86                     <groupId>org.apache.maven.plugins</groupId>
87                     <artifactId>maven-surefire-plugin</artifactId>
88                     <version>${mvn.surefire.version}</version>
89                     <configuration>
90                         <systemPropertyVariables>
91                             <artifactgenerator.config>${project.basedir}/src/test/resources/config/Artifact-Generator.properties</artifactgenerator.config>
92                         </systemPropertyVariables>
93                     </configuration>
94                 </plugin>
95
96                 <plugin>
97                     <groupId>org.codehaus.mojo</groupId>
98                     <artifactId>aspectj-maven-plugin</artifactId>
99                     <version>1.8</version>
100                     <!-- new configuration is here -->
101                     <configuration>
102                         <complianceLevel>1.8</complianceLevel>
103                         <source>1.8</source>
104                         <target>1.8</target>
105                     </configuration>
106                     <executions>
107                         <execution>
108                             <goals>
109                                 <goal>compile</goal>
110                                 <goal>test-compile</goal>
111                             </goals>
112                         </execution>
113                     </executions>
114                 </plugin>
115             </plugins>
116         </pluginManagement>
117
118         <plugins>
119             <plugin>
120                 <groupId>org.codehaus.mojo</groupId>
121                 <artifactId>aspectj-maven-plugin</artifactId>
122             </plugin>
123         </plugins>
124     </build>
125 </project>