dew/pom.xml
author Jaroslav Tulach <jaroslav.tulach@apidesign.org>
Thu, 07 Mar 2013 23:34:33 +0100
changeset 821 60caf5806aa8
parent 819 caf1e66268fd
child 822 76064c9092a5
permissions -rw-r--r--
[maven-release-plugin] prepare for next development iteration
     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.5-SNAPSHOT</version>
     8   </parent>
     9   <groupId>org.apidesign.bck2brwsr</groupId>
    10   <artifactId>dew</artifactId>
    11   <version>0.5-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         </plugins>
    46     </build>
    47     <properties>
    48     <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
    49   </properties>
    50   <dependencies>
    51     <dependency>
    52       <groupId>org.glassfish.grizzly</groupId>
    53       <artifactId>grizzly-http-server</artifactId>
    54       <version>2.2.19</version>
    55     </dependency>
    56     <dependency>
    57       <groupId>${project.groupId}</groupId>
    58       <artifactId>vm4brwsr</artifactId>
    59       <version>${project.version}</version>
    60     </dependency>
    61     <dependency>
    62       <groupId>org.json</groupId>
    63       <artifactId>json</artifactId>
    64       <version>20090211</version>
    65     </dependency>
    66     <dependency>
    67       <groupId>org.testng</groupId>
    68       <artifactId>testng</artifactId>
    69       <scope>test</scope>
    70       <exclusions>
    71         <exclusion>
    72           <artifactId>junit</artifactId>
    73           <groupId>junit</groupId>
    74         </exclusion>
    75       </exclusions>
    76     </dependency>
    77     <dependency>
    78       <groupId>${project.groupId}</groupId>
    79       <artifactId>javaquery.api</artifactId>
    80       <version>${project.version}</version>
    81     </dependency>
    82   </dependencies>
    83 </project>