dew/pom.xml
branchcanvas
changeset 1439 6c04b26f9a9a
parent 1438 03cd1b3e2e70
parent 1437 3ec3ae9699ef
child 1440 c943709738df
     1.1 --- a/dew/pom.xml	Tue Feb 11 10:48:24 2014 +0100
     1.2 +++ /dev/null	Thu Jan 01 00:00:00 1970 +0000
     1.3 @@ -1,91 +0,0 @@
     1.4 -<?xml version="1.0"?>
     1.5 -<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">
     1.6 -  <modelVersion>4.0.0</modelVersion>
     1.7 -  <parent>
     1.8 -    <groupId>org.apidesign</groupId>
     1.9 -    <artifactId>bck2brwsr</artifactId>
    1.10 -    <version>0.9-SNAPSHOT</version>
    1.11 -  </parent>
    1.12 -  <groupId>org.apidesign.bck2brwsr</groupId>
    1.13 -  <artifactId>dew</artifactId>
    1.14 -  <version>0.9-SNAPSHOT</version>
    1.15 -  <name>Development Environment for Web</name>
    1.16 -  <url>http://maven.apache.org</url>
    1.17 -    <build>
    1.18 -        <plugins>
    1.19 -            <plugin>
    1.20 -                <groupId>org.apache.maven.plugins</groupId>
    1.21 -                <artifactId>maven-compiler-plugin</artifactId>
    1.22 -                <version>2.3.2</version>
    1.23 -                <configuration>
    1.24 -                    <source>1.7</source>
    1.25 -                    <target>1.7</target>
    1.26 -                </configuration>
    1.27 -            </plugin>
    1.28 -            <plugin>
    1.29 -                <groupId>org.codehaus.mojo</groupId>
    1.30 -                <artifactId>exec-maven-plugin</artifactId>
    1.31 -                <version>1.2.1</version>
    1.32 -                <executions>
    1.33 -                    <execution>
    1.34 -                        <goals>
    1.35 -                            <goal>exec</goal>
    1.36 -                        </goals>
    1.37 -                    </execution>
    1.38 -                </executions>
    1.39 -                <configuration>
    1.40 -                    <executable>java</executable>
    1.41 -                     <arguments>
    1.42 -                        <argument>-classpath</argument>
    1.43 -                        <classpath />
    1.44 -                        <argument>org.apidesign.bck2brwsr.dew.Dew</argument>
    1.45 -                    </arguments>
    1.46 -                </configuration>
    1.47 -            </plugin>
    1.48 -            <plugin>
    1.49 -                <groupId>org.apache.maven.plugins</groupId>
    1.50 -                <artifactId>maven-deploy-plugin</artifactId>
    1.51 -                <version>2.7</version>
    1.52 -                <configuration>
    1.53 -                    <skip>true</skip>
    1.54 -                </configuration>
    1.55 -            </plugin>      
    1.56 -        </plugins>
    1.57 -    </build>
    1.58 -    <properties>
    1.59 -    <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
    1.60 -  </properties>
    1.61 -  <dependencies>
    1.62 -    <dependency>
    1.63 -      <groupId>org.glassfish.grizzly</groupId>
    1.64 -      <artifactId>grizzly-http-server</artifactId>
    1.65 -      <version>2.2.19</version>
    1.66 -    </dependency>
    1.67 -    <dependency>
    1.68 -      <groupId>${project.groupId}</groupId>
    1.69 -      <artifactId>vm4brwsr</artifactId>
    1.70 -      <version>${project.version}</version>
    1.71 -    </dependency>
    1.72 -    <dependency>
    1.73 -      <groupId>org.json</groupId>
    1.74 -      <artifactId>json</artifactId>
    1.75 -      <version>20090211</version>
    1.76 -    </dependency>
    1.77 -    <dependency>
    1.78 -      <groupId>org.testng</groupId>
    1.79 -      <artifactId>testng</artifactId>
    1.80 -      <scope>test</scope>
    1.81 -      <exclusions>
    1.82 -        <exclusion>
    1.83 -          <artifactId>junit</artifactId>
    1.84 -          <groupId>junit</groupId>
    1.85 -        </exclusion>
    1.86 -      </exclusions>
    1.87 -    </dependency>
    1.88 -    <dependency>
    1.89 -      <groupId>${project.groupId}</groupId>
    1.90 -      <artifactId>javaquery.api</artifactId>
    1.91 -      <version>${project.version}</version>
    1.92 -    </dependency>
    1.93 -  </dependencies>
    1.94 -</project>