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