Mercurial > hg > Members > shoshi > jungle > jungle-core
annotate pom.xml @ 51:bc119c52d5cc
modified LoggingNode package
author | Shoshi TAMAKI |
---|---|
date | Fri, 08 Feb 2013 02:21:00 +0900 |
parents | cb9fabaedfd4 |
children | a3a8c49ad209 |
rev | line source |
---|---|
0 | 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 | |
5 <groupId>jungle</groupId> | |
6 <artifactId>jungle-core</artifactId> | |
7 <version>0.0.1-SNAPSHOT</version> | |
8 <packaging>jar</packaging> | |
9 | |
10 <name>jungle-core</name> | |
11 <url>http://maven.apache.org</url> | |
12 | |
13 <properties> | |
14 <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> | |
15 </properties> | |
16 | |
17 <dependencies> | |
18 <dependency> | |
19 <groupId>junit</groupId> | |
20 <artifactId>junit</artifactId> | |
38
cb9fabaedfd4
added tests and changed testing provider to junit47
Shoshi TAMAKI
parents:
4
diff
changeset
|
21 <version>4.7</version> |
0 | 22 <scope>test</scope> |
23 </dependency> | |
24 <dependency> | |
25 <groupId>com.google.guava</groupId> | |
26 <artifactId>guava</artifactId> | |
27 <version>12.0</version> | |
28 </dependency> | |
29 <dependency> | |
30 <groupId>commons-collections</groupId> | |
31 <artifactId>commons-collections</artifactId> | |
32 <version>3.2.1</version> | |
33 </dependency> | |
3 | 34 <dependency> |
4
761d04aecfcb
added Graph API and some implementation
shoshi <shoshi@cr.ie.u-ryukyu.ac.jp>
parents:
3
diff
changeset
|
35 <groupId>org.functionaljava</groupId> |
761d04aecfcb
added Graph API and some implementation
shoshi <shoshi@cr.ie.u-ryukyu.ac.jp>
parents:
3
diff
changeset
|
36 <artifactId>functionaljava</artifactId> |
761d04aecfcb
added Graph API and some implementation
shoshi <shoshi@cr.ie.u-ryukyu.ac.jp>
parents:
3
diff
changeset
|
37 <version>3.1</version> |
761d04aecfcb
added Graph API and some implementation
shoshi <shoshi@cr.ie.u-ryukyu.ac.jp>
parents:
3
diff
changeset
|
38 </dependency> |
0 | 39 </dependencies> |
2 | 40 <build> |
41 <plugins> | |
42 <plugin> | |
43 <groupId>org.apache.maven.plugins</groupId> | |
44 <artifactId>maven-compiler-plugin</artifactId> | |
45 <configuration> | |
46 <source>1.6</source> | |
47 <target>1.6</target> | |
48 </configuration> | |
49 </plugin> | |
38
cb9fabaedfd4
added tests and changed testing provider to junit47
Shoshi TAMAKI
parents:
4
diff
changeset
|
50 <plugin> |
cb9fabaedfd4
added tests and changed testing provider to junit47
Shoshi TAMAKI
parents:
4
diff
changeset
|
51 <groupId>org.apache.maven.plugin</groupId> |
cb9fabaedfd4
added tests and changed testing provider to junit47
Shoshi TAMAKI
parents:
4
diff
changeset
|
52 <artifactId>maven-surefire-plugin</artifactId> |
cb9fabaedfd4
added tests and changed testing provider to junit47
Shoshi TAMAKI
parents:
4
diff
changeset
|
53 <version>2.13</version> |
cb9fabaedfd4
added tests and changed testing provider to junit47
Shoshi TAMAKI
parents:
4
diff
changeset
|
54 <configuration> |
cb9fabaedfd4
added tests and changed testing provider to junit47
Shoshi TAMAKI
parents:
4
diff
changeset
|
55 <exclude>**/*TestBase.java</exclude> |
cb9fabaedfd4
added tests and changed testing provider to junit47
Shoshi TAMAKI
parents:
4
diff
changeset
|
56 </configuration> |
cb9fabaedfd4
added tests and changed testing provider to junit47
Shoshi TAMAKI
parents:
4
diff
changeset
|
57 <dependencies> |
cb9fabaedfd4
added tests and changed testing provider to junit47
Shoshi TAMAKI
parents:
4
diff
changeset
|
58 <dependency> |
cb9fabaedfd4
added tests and changed testing provider to junit47
Shoshi TAMAKI
parents:
4
diff
changeset
|
59 <groupId>org.apache.maven.surefire</groupId> |
cb9fabaedfd4
added tests and changed testing provider to junit47
Shoshi TAMAKI
parents:
4
diff
changeset
|
60 <artifactId>surefire-junit47</artifactId> |
cb9fabaedfd4
added tests and changed testing provider to junit47
Shoshi TAMAKI
parents:
4
diff
changeset
|
61 <version>2.13</version> |
cb9fabaedfd4
added tests and changed testing provider to junit47
Shoshi TAMAKI
parents:
4
diff
changeset
|
62 </dependency> |
cb9fabaedfd4
added tests and changed testing provider to junit47
Shoshi TAMAKI
parents:
4
diff
changeset
|
63 </dependencies> |
cb9fabaedfd4
added tests and changed testing provider to junit47
Shoshi TAMAKI
parents:
4
diff
changeset
|
64 </plugin> |
2 | 65 </plugins> |
66 </build> | |
0 | 67 </project> |