emul/pom.xml
branchjdk7-b147
changeset 682 5d25a1df3540
child 58 2ca1bb929895
     1.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     1.2 +++ b/emul/pom.xml	Wed Feb 06 15:07:20 2013 +0100
     1.3 @@ -0,0 +1,40 @@
     1.4 +<?xml version="1.0"?>
     1.5 +<project xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd" xmlns="http://maven.apache.org/POM/4.0.0"
     1.6 +    xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
     1.7 +  <modelVersion>4.0.0</modelVersion>
     1.8 +  <parent>
     1.9 +    <groupId>org.apidesign</groupId>
    1.10 +    <artifactId>bck2brwsr</artifactId>
    1.11 +    <version>1.0-SNAPSHOT</version>
    1.12 +  </parent>
    1.13 +  <groupId>org.apidesign.bck2brwsr</groupId>
    1.14 +  <artifactId>emul</artifactId>
    1.15 +  <version>1.0-SNAPSHOT</version>
    1.16 +  <name>Java API Emulation</name>
    1.17 +  <url>http://maven.apache.org</url>
    1.18 +  <properties>
    1.19 +    <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
    1.20 +  </properties>
    1.21 +  <dependencies>
    1.22 +    <dependency>
    1.23 +      <groupId>junit</groupId>
    1.24 +      <artifactId>junit</artifactId>
    1.25 +      <version>3.8.1</version>
    1.26 +      <scope>test</scope>
    1.27 +    </dependency>
    1.28 +  </dependencies>
    1.29 +  <build>
    1.30 +      <plugins>
    1.31 +          <plugin>
    1.32 +              <groupId>org.apache.maven.plugins</groupId>
    1.33 +              <artifactId>maven-compiler-plugin</artifactId>
    1.34 +              <version>2.5.1</version>
    1.35 +              <configuration>
    1.36 +                  <compilerArguments>
    1.37 +                      <bootclasspath>non-existing</bootclasspath>
    1.38 +                  </compilerArguments>
    1.39 +              </configuration>
    1.40 +          </plugin>
    1.41 +      </plugins>
    1.42 +  </build>
    1.43 +</project>