vm/pom.xml
author Jaroslav Tulach <jaroslav.tulach@apidesign.org>
Sat, 26 Jan 2013 08:47:05 +0100
changeset 592 5e13b1ac2886
parent 218 bbc04118d571
child 672 add357fd6c5c
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.
     1 <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
     2   xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
     3   <modelVersion>4.0.0</modelVersion>
     4   <parent>
     5     <groupId>org.apidesign</groupId>
     6     <artifactId>bck2brwsr</artifactId>
     7     <version>0.3-SNAPSHOT</version>
     8   </parent>
     9 
    10   <groupId>org.apidesign.bck2brwsr</groupId>
    11   <artifactId>vm4brwsr</artifactId>
    12   <version>0.3-SNAPSHOT</version>
    13   <packaging>jar</packaging>
    14 
    15   <name>Java VM for Browser</name>
    16   <url>http://bck2brwsr.apidesign.org</url>
    17 
    18   <properties>
    19     <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
    20     <author.name>Jaroslav Tulach</author.name>
    21     <author.email>jaroslav.tulach@apidesign.org</author.email>
    22   </properties>
    23   
    24   <repositories>
    25       <repository>
    26           <id>netbeans</id>
    27           <name>NetBeans</name>
    28           <url>http://bits.netbeans.org/maven2/</url>
    29       </repository>
    30   </repositories>
    31   <pluginRepositories>
    32     <pluginRepository>
    33         <id>mc-release</id>
    34         <name>Local Maven repository of releases</name>
    35         <url>http://mc-repo.googlecode.com/svn/maven2/releases</url>
    36         <snapshots>
    37             <enabled>false</enabled>
    38         </snapshots>
    39         <releases>
    40             <enabled>true</enabled>
    41         </releases>
    42     </pluginRepository>
    43   </pluginRepositories>
    44   <scm>
    45       <connection>scm:hg:http://source.apidesign.org/hg/bck2brwsr</connection>
    46       <url>http://source.apidesign.org/hg/bck2brwsr</url>
    47   </scm>
    48   <build>
    49       <plugins>
    50           <plugin>
    51               <groupId>org.apache.maven.plugins</groupId>
    52               <artifactId>maven-jar-plugin</artifactId>
    53               <version>2.4</version>
    54               <configuration>
    55                   <archive>
    56                       <manifest>
    57                           <mainClass>org.apidesign.vm4brwsr.Main</mainClass>
    58                       </manifest>
    59                   </archive>
    60               </configuration>
    61           </plugin>
    62          <plugin>
    63             <groupId>org.apache.maven.plugins</groupId>
    64             <artifactId>maven-compiler-plugin</artifactId>
    65             <version>2.3.2</version>
    66             <configuration>
    67                <source>1.7</source>
    68                <target>1.7</target>
    69             </configuration>
    70          </plugin>
    71       </plugins>
    72   </build>
    73   <dependencies>
    74     <dependency>
    75       <groupId>org.testng</groupId>
    76       <artifactId>testng</artifactId>
    77       <scope>test</scope>
    78       <exclusions>
    79         <exclusion>
    80           <artifactId>junit</artifactId>
    81           <groupId>junit</groupId>
    82         </exclusion>
    83       </exclusions>
    84     </dependency>
    85     <dependency>
    86       <groupId>${project.groupId}</groupId>
    87       <artifactId>core</artifactId>
    88       <version>0.3-SNAPSHOT</version>
    89       <type>jar</type>
    90     </dependency>
    91     <dependency>
    92       <groupId>${project.groupId}</groupId>
    93       <artifactId>emul.mini</artifactId>
    94       <version>0.3-SNAPSHOT</version>
    95       <scope>test</scope>
    96     </dependency>
    97     <dependency>
    98       <groupId>${project.groupId}</groupId>
    99       <artifactId>javap</artifactId>
   100       <version>0.3-SNAPSHOT</version>
   101     </dependency>
   102   </dependencies>
   103 </project>