view pom.xml @ 0:81d5bb6831b2

fast commit
author one
date Tue, 04 Mar 2014 01:32:38 +0900
parents
children 047bbe894005
line wrap: on
line source

<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">
  <modelVersion>4.0.0</modelVersion>
  <groupId>jungle-bench</groupId>
  <artifactId>jungle-bench</artifactId>
  <version>0.0.1-SNAPSHOT</version>
  <build>
    <sourceDirectory>src/main/java</sourceDirectory>
     <testSourceDirectory>src/test/java</testSourceDirectory>
    <plugins>
      <plugin>
        <artifactId>maven-compiler-plugin</artifactId>
        <version>2.3.2</version>
        <configuration>
          <source>1.7</source>
          <target>1.7</target>
        </configuration>
      </plugin>
    </plugins>
  </build>
    <dependencies>

  <dependency>
  		<groupId>jungle</groupId>
  		<artifactId>jungle-core</artifactId>
  		<version>0.0.3-SNAPSHOT</version>
  	</dependency>
  <dependency>
  	<groupId>junit</groupId>
  	<artifactId>junit</artifactId>
  	<version>4.7</version>
  </dependency>
    </dependencies>
</project>