Mercurial > hg > Members > shoshi > jungle > jungle-core
annotate pom.xml @ 10:a2c019a77c27
commit
author | Shoshi TAMAKI |
---|---|
date | Mon, 10 Dec 2012 18:50:53 +0900 |
parents | 761d04aecfcb |
children | cb9fabaedfd4 |
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> | |
21 <version>3.8.1</version> | |
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> |
35 <groupId>net.sf.jpf</groupId> | |
36 <artifactId>jpf</artifactId> | |
37 <version>1.5</version> | |
38 </dependency> | |
4
761d04aecfcb
added Graph API and some implementation
shoshi <shoshi@cr.ie.u-ryukyu.ac.jp>
parents:
3
diff
changeset
|
39 <dependency> |
761d04aecfcb
added Graph API and some implementation
shoshi <shoshi@cr.ie.u-ryukyu.ac.jp>
parents:
3
diff
changeset
|
40 <groupId>org.functionaljava</groupId> |
761d04aecfcb
added Graph API and some implementation
shoshi <shoshi@cr.ie.u-ryukyu.ac.jp>
parents:
3
diff
changeset
|
41 <artifactId>functionaljava</artifactId> |
761d04aecfcb
added Graph API and some implementation
shoshi <shoshi@cr.ie.u-ryukyu.ac.jp>
parents:
3
diff
changeset
|
42 <version>3.1</version> |
761d04aecfcb
added Graph API and some implementation
shoshi <shoshi@cr.ie.u-ryukyu.ac.jp>
parents:
3
diff
changeset
|
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> |