webidor/pom.xml
changeset 35 2e85dd878f04
parent 28 77f6d8bf0d6c
child 38 373f537e0153
     1.1 --- a/webidor/pom.xml	Sat May 30 14:54:31 2009 +0200
     1.2 +++ b/webidor/pom.xml	Sun Jul 12 13:59:07 2009 +0200
     1.3 @@ -8,56 +8,59 @@
     1.4      </parent>
     1.5    <groupId>org.apidesign</groupId>
     1.6    <artifactId>webidor</artifactId>
     1.7 -  <packaging>war</packaging>
     1.8 +  <packaging>jar</packaging>
     1.9    <version>1.0</version>
    1.10 -  <name>webidor JEE5 Webapp</name>
    1.11 +  <name>webidor server</name>
    1.12    <url>http://maven.apache.org</url>
    1.13 +  <repositories>
    1.14 +    <repository>
    1.15 +        <id>maven2-repository.dev.java.net</id>
    1.16 +        <name>Java.net Repository for Maven</name>
    1.17 +        <url>http://download.java.net/maven/2/</url>
    1.18 +        <layout>default</layout>
    1.19 +    </repository>
    1.20 +    <repository>
    1.21 +        <id>maven-repository.dev.java.net</id>
    1.22 +        <name>Java.net Maven 1 Repository (legacy)</name>
    1.23 +        <url>http://download.java.net/maven/1</url>
    1.24 +        <layout>legacy</layout>
    1.25 +    </repository>
    1.26 +  </repositories>
    1.27    <dependencies>
    1.28  
    1.29      <dependency>
    1.30 -      <groupId>javax.servlet</groupId>
    1.31 -      <artifactId>servlet-api</artifactId>
    1.32 -      <version>2.5</version>
    1.33 -      <scope>provided</scope>
    1.34 -    </dependency>
    1.35 -
    1.36 -    <dependency>
    1.37 -      <groupId>javax.servlet.jsp</groupId>
    1.38 -      <artifactId>jsp-api</artifactId>
    1.39 -      <version>2.1</version>
    1.40 -      <scope>provided</scope>
    1.41 -    </dependency>
    1.42 -
    1.43 -    <dependency>
    1.44        <groupId>junit</groupId>
    1.45        <artifactId>junit</artifactId>
    1.46 -      <version>3.8.1</version>
    1.47 +      <version>4.5</version>
    1.48        <scope>test</scope>
    1.49      </dependency>
    1.50      <dependency>
    1.51 -      <groupId>org.springframework</groupId>
    1.52 -      <artifactId>spring-webmvc</artifactId>
    1.53 -      <version>2.5</version>
    1.54 +      <groupId>com.sun.jersey</groupId>
    1.55 +      <artifactId>jersey-core</artifactId>
    1.56 +      <version>1.1.0-ea</version>
    1.57      </dependency>
    1.58      <dependency>
    1.59 -      <groupId>org.springframework</groupId>
    1.60 -      <artifactId>spring</artifactId>
    1.61 -      <version>2.5</version>
    1.62 +      <groupId>com.sun.jersey</groupId>
    1.63 +      <artifactId>jersey-server</artifactId>
    1.64 +      <version>1.1.0-ea</version>
    1.65      </dependency>
    1.66      <dependency>
    1.67 -      <groupId>org.springframework.security</groupId>
    1.68 -      <artifactId>spring-security-openid</artifactId>
    1.69 -      <version>2.0.4</version>
    1.70 -      <exclusions>
    1.71 -        <exclusion>
    1.72 -          <artifactId>icu4j</artifactId>
    1.73 -          <groupId>com.ibm.icu</groupId>
    1.74 -        </exclusion>
    1.75 -        <exclusion>
    1.76 -          <artifactId>xml-apis</artifactId>
    1.77 -          <groupId>xml-apis</groupId>
    1.78 -        </exclusion>
    1.79 -      </exclusions>
    1.80 +      <groupId>com.sun.jersey</groupId>
    1.81 +      <artifactId>jersey-json</artifactId>
    1.82 +      <version>1.1.0-ea</version>
    1.83 +      <type>jar</type>
    1.84 +    </dependency>
    1.85 +    <dependency>
    1.86 +      <groupId>com.sun.jersey.test.framework</groupId>
    1.87 +      <artifactId>jersey-test-framework</artifactId>
    1.88 +      <version>1.1.0-ea</version>
    1.89 +      <scope>test</scope>
    1.90 +    </dependency>
    1.91 +    <dependency>
    1.92 +      <groupId>org.apidesign</groupId>
    1.93 +      <artifactId>quoridor</artifactId>
    1.94 +      <version>1.0</version>
    1.95 +      <type>jar</type>
    1.96      </dependency>
    1.97    </dependencies>
    1.98    <build>
    1.99 @@ -71,15 +74,14 @@
   1.100            <target>1.5</target>
   1.101          </configuration>
   1.102        </plugin>
   1.103 +      <plugin>
   1.104 +        <groupId>org.codehaus.mojo</groupId>
   1.105 +        <artifactId>exec-maven-plugin</artifactId>
   1.106 +        <configuration>
   1.107 +            <mainClass>cz.xelfi.quoridor.webidor.Main</mainClass>
   1.108 +        </configuration>
   1.109 +      </plugin>
   1.110      </plugins>
   1.111      <finalName>webidor</finalName>
   1.112    </build>
   1.113 -  <properties>
   1.114 -    <netbeans.hint.deploy.server>gfv3</netbeans.hint.deploy.server>
   1.115 -  </properties>
   1.116  </project>
   1.117 -
   1.118 -
   1.119 -
   1.120 -
   1.121 -