Mercurial > hg > ConflictEditor
annotate conflict-editor/pom.xml @ 25:7593675c1eff
pull the buttons into their own panel so they can be activated/deactivated in a single operation
author | dirk |
---|---|
date | Sun, 18 Sep 2011 10:13:48 +0200 |
parents | f2daf738299f |
children | 56cf93ee85f4 |
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> |
14
f2daf738299f
implement a test case for DocumentMatcher that covers the currently implemented cases
dirk
parents:
0
diff
changeset
|
8 <name>Conflict Editor</name> |
0
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> |
14
f2daf738299f
implement a test case for DocumentMatcher that covers the currently implemented cases
dirk
parents:
0
diff
changeset
|
29 <exclusions> |
f2daf738299f
implement a test case for DocumentMatcher that covers the currently implemented cases
dirk
parents:
0
diff
changeset
|
30 <exclusion> |
f2daf738299f
implement a test case for DocumentMatcher that covers the currently implemented cases
dirk
parents:
0
diff
changeset
|
31 <groupId>org.hamcrest</groupId> |
f2daf738299f
implement a test case for DocumentMatcher that covers the currently implemented cases
dirk
parents:
0
diff
changeset
|
32 <artifactId>hamcrest-core</artifactId> |
f2daf738299f
implement a test case for DocumentMatcher that covers the currently implemented cases
dirk
parents:
0
diff
changeset
|
33 </exclusion> |
f2daf738299f
implement a test case for DocumentMatcher that covers the currently implemented cases
dirk
parents:
0
diff
changeset
|
34 </exclusions> |
f2daf738299f
implement a test case for DocumentMatcher that covers the currently implemented cases
dirk
parents:
0
diff
changeset
|
35 </dependency> |
f2daf738299f
implement a test case for DocumentMatcher that covers the currently implemented cases
dirk
parents:
0
diff
changeset
|
36 <dependency> |
f2daf738299f
implement a test case for DocumentMatcher that covers the currently implemented cases
dirk
parents:
0
diff
changeset
|
37 <groupId>org.hamcrest</groupId> |
f2daf738299f
implement a test case for DocumentMatcher that covers the currently implemented cases
dirk
parents:
0
diff
changeset
|
38 <artifactId>hamcrest-library</artifactId> |
f2daf738299f
implement a test case for DocumentMatcher that covers the currently implemented cases
dirk
parents:
0
diff
changeset
|
39 <version>1.3.RC2</version> |
f2daf738299f
implement a test case for DocumentMatcher that covers the currently implemented cases
dirk
parents:
0
diff
changeset
|
40 <scope>test</scope> |
0
6f11757c4811
first drop of the conflict editor - mostly model work
Dirk Olmes <dirk@xanthippe.ping.de>
parents:
diff
changeset
|
41 </dependency> |
6f11757c4811
first drop of the conflict editor - mostly model work
Dirk Olmes <dirk@xanthippe.ping.de>
parents:
diff
changeset
|
42 <dependency> |
6f11757c4811
first drop of the conflict editor - mostly model work
Dirk Olmes <dirk@xanthippe.ping.de>
parents:
diff
changeset
|
43 <groupId>org.mockito</groupId> |
6f11757c4811
first drop of the conflict editor - mostly model work
Dirk Olmes <dirk@xanthippe.ping.de>
parents:
diff
changeset
|
44 <artifactId>mockito-all</artifactId> |
6f11757c4811
first drop of the conflict editor - mostly model work
Dirk Olmes <dirk@xanthippe.ping.de>
parents:
diff
changeset
|
45 <version>1.8.5</version> |
14
f2daf738299f
implement a test case for DocumentMatcher that covers the currently implemented cases
dirk
parents:
0
diff
changeset
|
46 <scope>test</scope> |
0
6f11757c4811
first drop of the conflict editor - mostly model work
Dirk Olmes <dirk@xanthippe.ping.de>
parents:
diff
changeset
|
47 </dependency> |
6f11757c4811
first drop of the conflict editor - mostly model work
Dirk Olmes <dirk@xanthippe.ping.de>
parents:
diff
changeset
|
48 </dependencies> |
6f11757c4811
first drop of the conflict editor - mostly model work
Dirk Olmes <dirk@xanthippe.ping.de>
parents:
diff
changeset
|
49 |
6f11757c4811
first drop of the conflict editor - mostly model work
Dirk Olmes <dirk@xanthippe.ping.de>
parents:
diff
changeset
|
50 <build> |
6f11757c4811
first drop of the conflict editor - mostly model work
Dirk Olmes <dirk@xanthippe.ping.de>
parents:
diff
changeset
|
51 <plugins> |
6f11757c4811
first drop of the conflict editor - mostly model work
Dirk Olmes <dirk@xanthippe.ping.de>
parents:
diff
changeset
|
52 <plugin> |
6f11757c4811
first drop of the conflict editor - mostly model work
Dirk Olmes <dirk@xanthippe.ping.de>
parents:
diff
changeset
|
53 <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
|
54 <artifactId>maven-compiler-plugin</artifactId> |
6f11757c4811
first drop of the conflict editor - mostly model work
Dirk Olmes <dirk@xanthippe.ping.de>
parents:
diff
changeset
|
55 <version>2.3.2</version> |
6f11757c4811
first drop of the conflict editor - mostly model work
Dirk Olmes <dirk@xanthippe.ping.de>
parents:
diff
changeset
|
56 <configuration> |
6f11757c4811
first drop of the conflict editor - mostly model work
Dirk Olmes <dirk@xanthippe.ping.de>
parents:
diff
changeset
|
57 <source>1.6</source> |
6f11757c4811
first drop of the conflict editor - mostly model work
Dirk Olmes <dirk@xanthippe.ping.de>
parents:
diff
changeset
|
58 <target>1.6</target> |
6f11757c4811
first drop of the conflict editor - mostly model work
Dirk Olmes <dirk@xanthippe.ping.de>
parents:
diff
changeset
|
59 <encoding>UTF-8</encoding> |
6f11757c4811
first drop of the conflict editor - mostly model work
Dirk Olmes <dirk@xanthippe.ping.de>
parents:
diff
changeset
|
60 </configuration> |
6f11757c4811
first drop of the conflict editor - mostly model work
Dirk Olmes <dirk@xanthippe.ping.de>
parents:
diff
changeset
|
61 </plugin> |
6f11757c4811
first drop of the conflict editor - mostly model work
Dirk Olmes <dirk@xanthippe.ping.de>
parents:
diff
changeset
|
62 <plugin> |
6f11757c4811
first drop of the conflict editor - mostly model work
Dirk Olmes <dirk@xanthippe.ping.de>
parents:
diff
changeset
|
63 <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
|
64 <artifactId>maven-eclipse-plugin</artifactId> |
6f11757c4811
first drop of the conflict editor - mostly model work
Dirk Olmes <dirk@xanthippe.ping.de>
parents:
diff
changeset
|
65 <version>2.8</version> |
6f11757c4811
first drop of the conflict editor - mostly model work
Dirk Olmes <dirk@xanthippe.ping.de>
parents:
diff
changeset
|
66 <configuration> |
6f11757c4811
first drop of the conflict editor - mostly model work
Dirk Olmes <dirk@xanthippe.ping.de>
parents:
diff
changeset
|
67 <downloadSources>true</downloadSources> |
6f11757c4811
first drop of the conflict editor - mostly model work
Dirk Olmes <dirk@xanthippe.ping.de>
parents:
diff
changeset
|
68 <classpathContainers> |
6f11757c4811
first drop of the conflict editor - mostly model work
Dirk Olmes <dirk@xanthippe.ping.de>
parents:
diff
changeset
|
69 <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
|
70 </classpathContainers> |
6f11757c4811
first drop of the conflict editor - mostly model work
Dirk Olmes <dirk@xanthippe.ping.de>
parents:
diff
changeset
|
71 </configuration> |
6f11757c4811
first drop of the conflict editor - mostly model work
Dirk Olmes <dirk@xanthippe.ping.de>
parents:
diff
changeset
|
72 </plugin> |
6f11757c4811
first drop of the conflict editor - mostly model work
Dirk Olmes <dirk@xanthippe.ping.de>
parents:
diff
changeset
|
73 </plugins> |
6f11757c4811
first drop of the conflict editor - mostly model work
Dirk Olmes <dirk@xanthippe.ping.de>
parents:
diff
changeset
|
74 </build> |
6f11757c4811
first drop of the conflict editor - mostly model work
Dirk Olmes <dirk@xanthippe.ping.de>
parents:
diff
changeset
|
75 </project> |