]> git.somenet.org - pub/jan/sbc.git/blob - pom.xml
Import Maven Skeleton Project. Make Cook and Waiter executable by Maven plugin
[pub/jan/sbc.git] / 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         <groupId>at.ac.tuwien.sbc</groupId>
5         <artifactId>vales-riegler</artifactId>
6         <version>0.0.1-SNAPSHOT</version>
7
8         <properties>
9                 <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
10         </properties>
11
12         <dependencies>
13                 <dependency>
14                         <groupId>org.slf4j</groupId>
15                         <artifactId>slf4j-api</artifactId>
16                         <version>1.6.6</version>
17                 </dependency>
18                 <dependency>
19                         <groupId>ch.qos.logback</groupId>
20                         <artifactId>logback-classic</artifactId>
21                         <version>1.0.7</version>
22                 </dependency>
23         </dependencies>
24
25         <build>
26                 <plugins>
27                         <plugin>
28                                 <groupId>org.codehaus.mojo</groupId>
29                                 <artifactId>exec-maven-plugin</artifactId>
30                                 <version>1.2.1</version>
31                         </plugin>
32                 </plugins>
33                 <pluginManagement>
34                         <plugins>
35                                 <plugin>
36                                         <artifactId>maven-compiler-plugin</artifactId>
37                                         <version>2.3.2</version>
38                                         <configuration>
39                                                 <source>1.6</source>
40                                                 <target>1.6</target>
41                                         </configuration>
42                                 </plugin>
43                         </plugins>
44                 </pluginManagement>
45         </build>
46
47 </project>