javap/pom.xml
author Jaroslav Tulach <jaroslav.tulach@apidesign.org>
Sat, 26 Jan 2013 08:47:05 +0100
changeset 592 5e13b1ac2886
parent 218 bbc04118d571
permissions -rw-r--r--
In order to support fields of the same name in subclasses we are now prefixing them with name of the class that defines them. To provide convenient way to access them from generated bytecode and also directly from JavaScript, there is a getter/setter function for each field. It starts with _ followed by the field name. If called with a parameter, it sets the field, with a parameter it just returns it.
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>