annotate pom.xml @ 21:1abbfc8f11f2

add ShowAttribute
author one
date Sun, 30 Jun 2013 04:18:12 +0900
parents
children
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
21
1abbfc8f11f2 add ShowAttribute
one
parents:
diff changeset
1 <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
1abbfc8f11f2 add ShowAttribute
one
parents:
diff changeset
2 xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
1abbfc8f11f2 add ShowAttribute
one
parents:
diff changeset
3 <modelVersion>4.0.0</modelVersion>
1abbfc8f11f2 add ShowAttribute
one
parents:
diff changeset
4
1abbfc8f11f2 add ShowAttribute
one
parents:
diff changeset
5 <groupId>jungle.test.codesegment.practice</groupId>
1abbfc8f11f2 add ShowAttribute
one
parents:
diff changeset
6 <artifactId>StartJungleCodeSegment</artifactId>
1abbfc8f11f2 add ShowAttribute
one
parents:
diff changeset
7 <version>0.0.1-SNAPSHOT</version>
1abbfc8f11f2 add ShowAttribute
one
parents:
diff changeset
8 <packaging>jar</packaging>
1abbfc8f11f2 add ShowAttribute
one
parents:
diff changeset
9
1abbfc8f11f2 add ShowAttribute
one
parents:
diff changeset
10 <name>jungleAlice</name>
1abbfc8f11f2 add ShowAttribute
one
parents:
diff changeset
11 <url>http://maven.apache.org</url>
1abbfc8f11f2 add ShowAttribute
one
parents:
diff changeset
12
1abbfc8f11f2 add ShowAttribute
one
parents:
diff changeset
13 <properties>
1abbfc8f11f2 add ShowAttribute
one
parents:
diff changeset
14 <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
1abbfc8f11f2 add ShowAttribute
one
parents:
diff changeset
15 </properties>
1abbfc8f11f2 add ShowAttribute
one
parents:
diff changeset
16
1abbfc8f11f2 add ShowAttribute
one
parents:
diff changeset
17 <dependencies>
1abbfc8f11f2 add ShowAttribute
one
parents:
diff changeset
18 <dependency>
1abbfc8f11f2 add ShowAttribute
one
parents:
diff changeset
19 <groupId>com.google.guava</groupId>
1abbfc8f11f2 add ShowAttribute
one
parents:
diff changeset
20 <artifactId>guava</artifactId>
1abbfc8f11f2 add ShowAttribute
one
parents:
diff changeset
21 <version>12.0</version>
1abbfc8f11f2 add ShowAttribute
one
parents:
diff changeset
22 </dependency>
1abbfc8f11f2 add ShowAttribute
one
parents:
diff changeset
23 </dependencies>
1abbfc8f11f2 add ShowAttribute
one
parents:
diff changeset
24 <build>
1abbfc8f11f2 add ShowAttribute
one
parents:
diff changeset
25 <plugins>
1abbfc8f11f2 add ShowAttribute
one
parents:
diff changeset
26 <plugin>
1abbfc8f11f2 add ShowAttribute
one
parents:
diff changeset
27 <groupId>org.apache.maven.plugins</groupId>
1abbfc8f11f2 add ShowAttribute
one
parents:
diff changeset
28 <artifactId>maven-compiler-plugin</artifactId>
1abbfc8f11f2 add ShowAttribute
one
parents:
diff changeset
29 <configuration>
1abbfc8f11f2 add ShowAttribute
one
parents:
diff changeset
30 <source>1.6</source>
1abbfc8f11f2 add ShowAttribute
one
parents:
diff changeset
31 <target>1.6</target>
1abbfc8f11f2 add ShowAttribute
one
parents:
diff changeset
32 </configuration>
1abbfc8f11f2 add ShowAttribute
one
parents:
diff changeset
33 </plugin>
1abbfc8f11f2 add ShowAttribute
one
parents:
diff changeset
34 </plugins>
1abbfc8f11f2 add ShowAttribute
one
parents:
diff changeset
35 </build>
1abbfc8f11f2 add ShowAttribute
one
parents:
diff changeset
36 </project>