Mercurial > hg > ConflictEditor
comparison conflict-editor/pom.xml @ 38:6c85a4fcfe28
add a toplevel pom, make this a reactor build
author | Dirk Olmes <dirk@xanthippe.ping.de> |
---|---|
date | Sun, 09 Oct 2011 07:29:59 +0200 |
parents | 56cf93ee85f4 |
children |
comparison
equal
deleted
inserted
replaced
37:76b2dafcb1b4 | 38:6c85a4fcfe28 |
---|---|
1 <?xml version="1.0" encoding="UTF-8"?> | 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"> | 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> | 3 <modelVersion>4.0.0</modelVersion> |
4 <groupId>de.codedo</groupId> | 4 <parent> |
5 <groupId>de.codedo</groupId> | |
6 <artifactId>conflict-editor-parent</artifactId> | |
7 <version>1.0-SNAPSHOT</version> | |
8 </parent> | |
5 <artifactId>conflict-editor</artifactId> | 9 <artifactId>conflict-editor</artifactId> |
6 <version>1.0-SNAPSHOT</version> | |
7 <packaging>jar</packaging> | 10 <packaging>jar</packaging> |
8 <name>Conflict Editor</name> | 11 <name>Conflict Editor</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 | 12 |
16 <dependencies> | 13 <dependencies> |
17 <dependency> | 14 <dependency> |
18 <groupId>org.codehaus.jackson</groupId> | 15 <groupId>org.codehaus.jackson</groupId> |
19 <artifactId>jackson-mapper-asl</artifactId> | 16 <artifactId>jackson-mapper-asl</artifactId> |
49 <artifactId>mockito-all</artifactId> | 46 <artifactId>mockito-all</artifactId> |
50 <version>1.8.5</version> | 47 <version>1.8.5</version> |
51 <scope>test</scope> | 48 <scope>test</scope> |
52 </dependency> | 49 </dependency> |
53 </dependencies> | 50 </dependencies> |
54 | |
55 <build> | |
56 <plugins> | |
57 <plugin> | |
58 <groupId>org.apache.maven.plugins</groupId> | |
59 <artifactId>maven-compiler-plugin</artifactId> | |
60 <version>2.3.2</version> | |
61 <configuration> | |
62 <source>1.6</source> | |
63 <target>1.6</target> | |
64 <encoding>UTF-8</encoding> | |
65 </configuration> | |
66 </plugin> | |
67 <plugin> | |
68 <groupId>org.apache.maven.plugins</groupId> | |
69 <artifactId>maven-eclipse-plugin</artifactId> | |
70 <version>2.8</version> | |
71 <configuration> | |
72 <downloadSources>true</downloadSources> | |
73 <classpathContainers> | |
74 <classpathContainer>org.eclipse.jdt.launching.JRE_CONTAINER/${vmtype}/JavaSE-1.6</classpathContainer> | |
75 </classpathContainers> | |
76 </configuration> | |
77 </plugin> | |
78 </plugins> | |
79 </build> | |
80 </project> | 51 </project> |