dew/pom.xml
author Jaroslav Tulach <jaroslav.tulach@apidesign.org>
Wed, 17 Apr 2013 13:46:06 +0200
branchfx
changeset 1003 bf8b1d7d76e0
parent 896 30e9ac29654f
child 984 52a4a5f868bc
permissions -rw-r--r--
Merge of the processor fix into fx branch, so the TwitterClient class can find TwitterModel
     1 <?xml version="1.0"?>
     2 <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" 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.6-SNAPSHOT</version>
     8   </parent>
     9   <groupId>org.apidesign.bck2brwsr</groupId>
    10   <artifactId>dew</artifactId>
    11   <version>0.6-SNAPSHOT</version>
    12   <name>Development Environment for Web</name>
    13   <url>http://maven.apache.org</url>
    14     <build>
    15         <plugins>
    16             <plugin>
    17                 <groupId>org.apache.maven.plugins</groupId>
    18                 <artifactId>maven-compiler-plugin</artifactId>
    19                 <version>2.3.2</version>
    20                 <configuration>
    21                     <source>1.7</source>
    22                     <target>1.7</target>
    23                 </configuration>
    24             </plugin>
    25             <plugin>
    26                 <groupId>org.codehaus.mojo</groupId>
    27                 <artifactId>exec-maven-plugin</artifactId>
    28                 <version>1.2.1</version>
    29                 <executions>
    30                     <execution>
    31                         <goals>
    32                             <goal>exec</goal>
    33                         </goals>
    34                     </execution>
    35                 </executions>
    36                 <configuration>
    37                     <executable>java</executable>
    38                      <arguments>
    39                         <argument>-classpath</argument>
    40                         <classpath />
    41                         <argument>org.apidesign.bck2brwsr.dew.Dew</argument>
    42                     </arguments>
    43                 </configuration>
    44             </plugin>
    45             <plugin>
    46                 <groupId>org.apache.maven.plugins</groupId>
    47                 <artifactId>maven-deploy-plugin</artifactId>
    48                 <version>2.7</version>
    49                 <configuration>
    50                     <skip>true</skip>
    51                 </configuration>
    52             </plugin>      
    53         </plugins>
    54     </build>
    55     <properties>
    56     <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
    57   </properties>
    58   <dependencies>
    59     <dependency>
    60       <groupId>org.glassfish.grizzly</groupId>
    61       <artifactId>grizzly-http-server</artifactId>
    62       <version>2.2.19</version>
    63     </dependency>
    64     <dependency>
    65       <groupId>${project.groupId}</groupId>
    66       <artifactId>vm4brwsr</artifactId>
    67       <version>${project.version}</version>
    68     </dependency>
    69     <dependency>
    70       <groupId>org.json</groupId>
    71       <artifactId>json</artifactId>
    72       <version>20090211</version>
    73     </dependency>
    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>javaquery.api</artifactId>
    88       <version>${project.version}</version>
    89     </dependency>
    90   </dependencies>
    91 </project>