javap/pom.xml
author Jaroslav Tulach <jaroslav.tulach@apidesign.org>
Thu, 13 Dec 2012 23:20:47 +0100
changeset 316 8da329789435
parent 152 2cda429aeb49
child 554 05224402145d
permissions -rw-r--r--
Providing JavaScript specific implementations of Hashtable and Vector. Those should likely be faster for the JavaScript VM than interpreting bytecode. This is the way to get the best of JavaScript and yet provide reasonably well working implementation in Java.
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>
jtulach@144
    37
      <artifactId>emul</artifactId>
jtulach@218
    38
      <version>0.3-SNAPSHOT</version>
jtulach@144
    39
    </dependency>
jtulach@144
    40
  </dependencies>
jtulach@144
    41
</project>