dew/pom.xml
author Jaroslav Tulach <jaroslav.tulach@apidesign.org>
Sat, 26 Jan 2013 08:47:05 +0100
changeset 592 5e13b1ac2886
parent 544 08ffdc3938e7
child 804 7367a296a9ec
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 <?xml version="1.0"?>
     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"
     3     xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
     4   <modelVersion>4.0.0</modelVersion>
     5   <parent>
     6     <groupId>org.apidesign</groupId>
     7     <artifactId>bck2brwsr</artifactId>
     8     <version>0.3-SNAPSHOT</version>
     9   </parent>
    10   <groupId>org.apidesign.bck2brwsr</groupId>
    11   <artifactId>dew</artifactId>
    12   <version>0.3-SNAPSHOT</version>
    13   <name>Development Environment for Web</name>
    14   <url>http://maven.apache.org</url>
    15     <build>
    16         <plugins>
    17             <plugin>
    18                 <groupId>org.apache.maven.plugins</groupId>
    19                 <artifactId>maven-compiler-plugin</artifactId>
    20                 <version>2.3.2</version>
    21                 <configuration>
    22                     <source>1.7</source>
    23                     <target>1.7</target>
    24                 </configuration>
    25             </plugin>
    26             <plugin>
    27                 <groupId>org.codehaus.mojo</groupId>
    28                 <artifactId>exec-maven-plugin</artifactId>
    29                 <version>1.2.1</version>
    30                 <executions>
    31                     <execution>
    32                         <goals>
    33                             <goal>exec</goal>
    34                         </goals>
    35                     </execution>
    36                 </executions>
    37                 <configuration>
    38                     <executable>java</executable>
    39                      <arguments>
    40                         <argument>-classpath</argument>
    41                         <classpath/>
    42                         <argument>org.apidesign.bck2brwsr.dew.Dew</argument>
    43                     </arguments>
    44                 </configuration>
    45             </plugin>
    46         </plugins>
    47     </build>
    48     <properties>
    49     <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
    50   </properties>
    51   <dependencies>
    52     <dependency>
    53       <groupId>org.glassfish.grizzly</groupId>
    54       <artifactId>grizzly-http-server</artifactId>
    55       <version>2.2.19</version>
    56     </dependency>
    57     <dependency>
    58       <groupId>${project.groupId}</groupId>
    59       <artifactId>vm4brwsr</artifactId>
    60       <version>${project.version}</version>
    61     </dependency>
    62     <dependency>
    63       <groupId>org.json</groupId>
    64       <artifactId>json</artifactId>
    65       <version>20090211</version>
    66     </dependency>
    67     <dependency>
    68       <groupId>org.testng</groupId>
    69       <artifactId>testng</artifactId>
    70       <scope>test</scope>
    71       <exclusions>
    72         <exclusion>
    73           <artifactId>junit</artifactId>
    74           <groupId>junit</groupId>
    75         </exclusion>
    76       </exclusions>
    77     </dependency>
    78     <dependency>
    79       <groupId>${project.groupId}</groupId>
    80       <artifactId>javaquery.api</artifactId>
    81       <version>${project.version}</version>
    82     </dependency>
    83   </dependencies>
    84 </project>