Merge "Fix build errors in autorelease full clean build"
[vfc/nfvo/wfengine.git] / winery / org.eclipse.winery.generators.ia / pom.xml
1 <?xml version="1.0" encoding="UTF-8"?>
2 <!--
3 /*******************************************************************************
4  * Copyright (c) 2013 University of Stuttgart.
5  * All rights reserved. This program and the accompanying materials
6  * are made available under the terms of the Eclipse Public License v1.0
7  * and the Apache License 2.0 which both accompany this distribution,
8  * and are available at http://www.eclipse.org/legal/epl-v10.html
9  * and http://www.apache.org/licenses/LICENSE-2.0
10  *
11  * Contributors:
12  *    Tobias Binz - initial API and implementation and/or initial documentation
13  *******************************************************************************/
14 -->
15 <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
16         <modelVersion>4.0.0</modelVersion>
17         <parent>
18                 <groupId>org.eclipse.winery</groupId>
19                 <artifactId>winery</artifactId>
20                 <version>0.1.37-SNAPSHOT</version>
21         </parent>
22         <artifactId>org.eclipse.winery.generators.ia</artifactId>
23         <properties>
24                 <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
25         </properties>
26         <dependencies>
27                 <dependency>
28                         <groupId>org.eclipse.winery</groupId>
29                         <artifactId>org.eclipse.winery.common</artifactId>
30                         <version>0.1.37-SNAPSHOT</version>
31                         <scope>compile</scope>
32                 </dependency>
33                 <dependency>
34                         <groupId>ch.qos.logback</groupId>
35                         <artifactId>logback-classic</artifactId>
36                         <version>1.1.1</version>
37                         <scope>compile</scope>
38                 </dependency>
39                 <dependency>
40                         <groupId>org.slf4j</groupId>
41                         <artifactId>jcl-over-slf4j</artifactId>
42                         <version>1.7.6</version>
43                         <scope>compile</scope>
44                 </dependency>
45                 <dependency>
46                         <groupId>org.eclipse.winery</groupId>
47                         <artifactId>org.eclipse.winery.model.tosca</artifactId>
48                         <version>0.1.21-SNAPSHOT</version>
49                         <scope>compile</scope>
50                 </dependency>
51                 <dependency>
52                         <groupId>org.apache.commons</groupId>
53                         <artifactId>commons-compress</artifactId>
54                         <version>1.6</version>
55                         <scope>compile</scope>
56                         <exclusions>
57                                 <exclusion>
58                                         <groupId>org.tukaani</groupId>
59                                         <artifactId>xz</artifactId>
60                                 </exclusion>
61                         </exclusions>
62                 </dependency>
63                 <dependency>
64                         <!-- Version 1.3 is approved by Eclipse, Version 1.4 is not -->
65                         <groupId>org.tukaani</groupId>
66                         <artifactId>xz</artifactId>
67                         <version>1.3</version>
68                 </dependency>
69                 <dependency>
70                         <groupId>commons-io</groupId>
71                         <artifactId>commons-io</artifactId>
72                         <version>2.4</version>
73                         <scope>compile</scope>
74                 </dependency>
75                 <dependency>
76                         <groupId>junit</groupId>
77                         <artifactId>junit</artifactId>
78                         <version>4.11</version>
79                         <scope>test</scope>
80                 </dependency>
81         </dependencies>
82         <build>
83                 <plugins>
84                         <plugin>
85                                 <groupId>org.apache.maven.plugins</groupId>
86                                 <artifactId>maven-compiler-plugin</artifactId>
87                                 <version>3.1</version>
88                                 <configuration>
89                                         <source>1.7</source>
90                                         <target>1.7</target>
91                                 </configuration>
92                         </plugin>
93                         <plugin>
94                                 <groupId>org.apache.maven.plugins</groupId>
95                                 <artifactId>maven-surefire-plugin</artifactId>
96                                 <version>2.16</version>
97                                 <configuration>
98                                         <skipTests>true</skipTests>
99                                 </configuration>
100                         </plugin>
101                 </plugins>
102         </build>
103 </project>