javap/pom.xml
author Martin Soch <Martin.Soch@oracle.com>
Thu, 07 Feb 2013 17:24:19 +0100
brancharithmetic
changeset 699 6cad41d877d2
parent 218 bbc04118d571
permissions -rw-r--r--
Final part of Long tests moved from vm/.../NumberTest to vmtest/.../LongArithmeticTest
jtulach@144
     1
<?xml version="1.0"?>
jtulach@144
     2
<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"
jtulach@144
     3
    xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
jtulach@144
     4
  <modelVersion>4.0.0</modelVersion>
jtulach@144
     5
  <parent>
jtulach@144
     6
    <groupId>org.apidesign</groupId>
jtulach@144
     7
    <artifactId>bck2brwsr</artifactId>
jtulach@218
     8
    <version>0.3-SNAPSHOT</version>
jtulach@144
     9
  </parent>
jtulach@144
    10
  <groupId>org.apidesign.bck2brwsr</groupId>
jtulach@144
    11
  <artifactId>javap</artifactId>
jtulach@218
    12
  <version>0.3-SNAPSHOT</version>
jtulach@144
    13
  <name>javap</name>
jtulach@144
    14
  <url>http://maven.apache.org</url>
jtulach@144
    15
  <properties>
jtulach@144
    16
    <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
jtulach@144
    17
  </properties>
jtulach@144
    18
  <build>
jtulach@144
    19
      <plugins>
jtulach@144
    20
          <plugin>
jtulach@144
    21
              <groupId>org.apache.maven.plugins</groupId>
jtulach@144
    22
              <artifactId>maven-compiler-plugin</artifactId>
jtulach@144
    23
              <version>2.5.1</version>
jtulach@144
    24
              <configuration>
jtulach@144
    25
                  <compilerArguments>
jaroslav@152
    26
                      <!--<bootclasspath>non-existing</bootclasspath>-->
jtulach@144
    27
                  </compilerArguments>
jaroslav@151
    28
                 <source>1.6</source>
jaroslav@151
    29
                 <target>1.6</target>
jtulach@144
    30
              </configuration>
jtulach@144
    31
          </plugin>
jtulach@144
    32
      </plugins>
jtulach@144
    33
  </build>
jtulach@144
    34
  <dependencies>
jtulach@144
    35
    <dependency>
jtulach@144
    36
      <groupId>org.apidesign.bck2brwsr</groupId>
jaroslav@554
    37
      <artifactId>emul.mini</artifactId>
jtulach@218
    38
      <version>0.3-SNAPSHOT</version>
jtulach@144
    39
    </dependency>
jtulach@144
    40
  </dependencies>
jtulach@144
    41
</project>