~ubuntu-branches/ubuntu/utopic/jetty/utopic-proposed

« back to all changes in this revision

Viewing changes to extras/gwt/pom.xml

  • Committer: Bazaar Package Importer
  • Author(s): Torsten Werner
  • Date: 2009-08-09 08:48:10 UTC
  • Revision ID: james.westby@ubuntu.com-20090809084810-k522b97ind2robyd
ImportĀ upstreamĀ versionĀ 6.1.19

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
<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/maven-v4_0_0.xsd">
 
2
  <parent>
 
3
    <artifactId>project</artifactId>
 
4
    <groupId>org.mortbay.jetty</groupId>
 
5
    <version>6.1.19</version>
 
6
    <relativePath>../../pom.xml</relativePath>
 
7
  </parent>
 
8
  <modelVersion>4.0.0</modelVersion>
 
9
  <groupId>org.mortbay.jetty</groupId>
 
10
  <artifactId>jetty-gwt</artifactId>
 
11
  <packaging>jar</packaging>
 
12
  <name>Jetty Contrib :: jetty-gwt RemoteServiceServlet</name>
 
13
  <build>
 
14
    <plugins>
 
15
       <plugin>
 
16
        <artifactId>maven-compiler-plugin</artifactId>
 
17
        <configuration>
 
18
          <source>1.5</source>
 
19
          <target>1.5</target>
 
20
        </configuration>
 
21
      </plugin>
 
22
    </plugins>
 
23
  </build>
 
24
  <repositories>
 
25
    <repository>
 
26
      <releases>
 
27
        <enabled>true</enabled>
 
28
      </releases>
 
29
      <id>gwt-maven-repo</id>
 
30
      <name>GWT Maven Repo</name>      
 
31
      <url>http://gwt-maven.googlecode.com/svn/trunk/mavenrepo</url>
 
32
    </repository>
 
33
  </repositories>
 
34
  <dependencies>
 
35
    <dependency>
 
36
      <groupId>com.google.gwt</groupId>
 
37
      <artifactId>gwt-servlet</artifactId>
 
38
      <version>${gwt-version}</version>
 
39
    </dependency>
 
40
    <dependency>
 
41
      <groupId>org.mortbay.jetty</groupId>
 
42
      <artifactId>servlet-api</artifactId>
 
43
      <version>${servlet-version}</version>
 
44
      <scope>provided</scope>
 
45
    </dependency>    
 
46
    <dependency>
 
47
      <groupId>org.mortbay.jetty</groupId>
 
48
      <artifactId>jetty</artifactId>
 
49
      <version>${project.version}</version>
 
50
      <scope>test</scope>
 
51
    </dependency>    
 
52
    <dependency>
 
53
      <groupId>junit</groupId>
 
54
      <artifactId>junit</artifactId>
 
55
      <scope>test</scope>
 
56
    </dependency>    
 
57
  </dependencies>
 
58
  <properties>
 
59
    <gwt-version>1.5.0-rc1</gwt-version>
 
60
  </properties>  
 
61
</project>