048ff0497691b5bf382f067e450c687f74937f71
[vfc/nfvo/wfengine.git] / winery / org.eclipse.winery.common / 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 Unger - initial API and implementation and/or initial documentation
13  *    Oliver Kopp - improvements
14  *******************************************************************************/
15 -->
16 <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">
17         <modelVersion>4.0.0</modelVersion>
18         <parent>
19                 <groupId>org.eclipse.winery</groupId>
20                 <artifactId>winery</artifactId>
21                 <version>0.1.37-SNAPSHOT</version>
22         </parent>
23         <artifactId>org.eclipse.winery.common</artifactId>
24         <properties>
25                 <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
26         </properties>
27         <dependencies>
28                 <dependency>
29                         <groupId>ch.qos.logback</groupId>
30                         <artifactId>logback-classic</artifactId>
31                         <version>1.1.1</version>
32                         <scope>compile</scope>
33                 </dependency>
34                 <dependency>
35                         <groupId>org.eclipse.winery</groupId>
36                         <artifactId>org.eclipse.winery.model.tosca</artifactId>
37                         <version>0.1.21-SNAPSHOT</version>
38                         <scope>compile</scope>
39                 </dependency>
40                 <dependency>
41                         <groupId>org.slf4j</groupId>
42                         <artifactId>jcl-over-slf4j</artifactId>
43                         <version>1.7.6</version>
44                         <scope>compile</scope>
45                 </dependency>
46                 <dependency>
47                         <groupId>jstl</groupId>
48                         <artifactId>jstl</artifactId>
49                         <version>1.2</version>
50                         <scope>compile</scope>
51                 </dependency>
52                 <dependency>
53                         <groupId>commons-io</groupId>
54                         <artifactId>commons-io</artifactId>
55                         <version>2.4</version>
56                         <scope>compile</scope>
57                         <exclusions>
58                                 <exclusion>
59                                         <artifactId>commons-logging</artifactId>
60                                         <groupId>commons-logging</groupId>
61                                 </exclusion>
62                         </exclusions>
63                 </dependency>
64                 <dependency>
65                         <groupId>org.apache.commons</groupId>
66                         <artifactId>commons-lang3</artifactId>
67                         <version>3.1</version>
68                         <scope>compile</scope>
69                 </dependency>
70                 <dependency>
71                         <groupId>junit</groupId>
72                         <artifactId>junit</artifactId>
73                         <version>4.11</version>
74                         <scope>test</scope>
75                 </dependency>
76         </dependencies>
77         <build>
78                 <plugins>
79                         <plugin>
80                                 <groupId>org.apache.maven.plugins</groupId>
81                                 <artifactId>maven-compiler-plugin</artifactId>
82                                 <version>3.1</version>
83                                 <configuration>
84                                         <source>1.7</source>
85                                         <target>1.7</target>
86                                 </configuration>
87                         </plugin>
88                 </plugins>
89         </build>
90 </project>