Mercurial > hg > Members > tatsuki > bench > jungle-core
annotate pom.xml @ 105:78ef456c98a0
add Query Status but has error
author | one |
---|---|
date | Fri, 12 Sep 2014 19:47:25 +0900 |
parents | a0ed2804b045 |
children | c23f70bb791f 38068be4fa4c |
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> | |
64 | 7 <version>0.0.3-SNAPSHOT</version> |
0 | 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> |
58 | 39 <dependency> |
40 <groupId>org.apache.maven.surefire</groupId> | |
41 <artifactId>surefire-junit4</artifactId> | |
42 <version>2.13</version> | |
43 </dependency> | |
0 | 44 </dependencies> |
2 | 45 <build> |
46 <plugins> | |
47 <plugin> | |
48 <groupId>org.apache.maven.plugins</groupId> | |
49 <artifactId>maven-compiler-plugin</artifactId> | |
50 <configuration> | |
51 <source>1.6</source> | |
52 <target>1.6</target> | |
53 </configuration> | |
54 </plugin> | |
55 </plugins> | |
56 </build> | |
0 | 57 </project> |