comparison conflict-editor/pom.xml @ 0:6f11757c4811

first drop of the conflict editor - mostly model work
author Dirk Olmes <dirk@xanthippe.ping.de>
date Mon, 12 Sep 2011 11:47:48 +0200
parents
children f2daf738299f
comparison
equal deleted inserted replaced
-1:000000000000 0:6f11757c4811
1 <?xml version="1.0" encoding="UTF-8"?>
2 <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">
3 <modelVersion>4.0.0</modelVersion>
4 <groupId>de.codedo</groupId>
5 <artifactId>conflict-editor</artifactId>
6 <version>1.0-SNAPSHOT</version>
7 <packaging>jar</packaging>
8 <name>new project</name>
9 <url>http://maven.apache.org</url>
10
11 <properties>
12 <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
13 <vmtype>org.eclipse.jdt.internal.debug.ui.launcher.StandardVMType</vmtype>
14 </properties>
15
16 <dependencies>
17 <dependency>
18 <groupId>org.codehaus.jackson</groupId>
19 <artifactId>jackson-mapper-asl</artifactId>
20 <version>1.8.5</version>
21 </dependency>
22
23 <!-- test dependencies -->
24 <dependency>
25 <groupId>junit</groupId>
26 <artifactId>junit</artifactId>
27 <version>4.9</version>
28 <scope>test</scope>
29 </dependency>
30 <dependency>
31 <groupId>org.mockito</groupId>
32 <artifactId>mockito-all</artifactId>
33 <version>1.8.5</version>
34 </dependency>
35 </dependencies>
36
37 <build>
38 <plugins>
39 <plugin>
40 <groupId>org.apache.maven.plugins</groupId>
41 <artifactId>maven-compiler-plugin</artifactId>
42 <version>2.3.2</version>
43 <configuration>
44 <source>1.6</source>
45 <target>1.6</target>
46 <encoding>UTF-8</encoding>
47 </configuration>
48 </plugin>
49 <plugin>
50 <groupId>org.apache.maven.plugins</groupId>
51 <artifactId>maven-eclipse-plugin</artifactId>
52 <version>2.8</version>
53 <configuration>
54 <downloadSources>true</downloadSources>
55 <classpathContainers>
56 <classpathContainer>org.eclipse.jdt.launching.JRE_CONTAINER/${vmtype}/JavaSE-1.6</classpathContainer>
57 </classpathContainers>
58 </configuration>
59 </plugin>
60 </plugins>
61 </build>
62 </project>