Subversion Repositories SmartDukaan

Rev

Rev 3463 | Rev 4286 | Go to most recent revision | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 3463 Rev 4112
Line 10... Line 10...
10
  <version>1.0-SNAPSHOT</version>
10
  <version>1.0-SNAPSHOT</version>
11
  <name>GWT Maven Archetype</name>
11
  <name>GWT Maven Archetype</name>
12
 
12
 
13
  <properties>
13
  <properties>
14
    <!-- Convenience property to set the GWT version -->
14
    <!-- Convenience property to set the GWT version -->
15
    <gwtVersion>2.1.0</gwtVersion>
15
    <gwtVersion>2.4.0</gwtVersion>
16
    <!-- GWT needs at least java 1.5 -->
16
    <!-- GWT needs at least java 1.5 -->
17
    <maven.compiler.source>1.5</maven.compiler.source>
17
    <maven.compiler.source>1.5</maven.compiler.source>
18
    <maven.compiler.target>1.5</maven.compiler.target>
18
    <maven.compiler.target>1.5</maven.compiler.target>
19
    <webappDirectory>${project.build.directory}/${project.build.finalName}</webappDirectory>
19
    <webappDirectory>${project.build.directory}/${project.build.finalName}</webappDirectory>
20
  </properties>
20
  </properties>
Line 43... Line 43...
43
      </exclusions>
43
      </exclusions>
44
    </dependency>
44
    </dependency>
45
    <dependency>
45
    <dependency>
46
      <groupId>com.google.gwt</groupId>
46
      <groupId>com.google.gwt</groupId>
47
      <artifactId>gwt-servlet</artifactId>
47
      <artifactId>gwt-servlet</artifactId>
48
      <version>2.1.0</version>
48
      <version>2.4.0</version>
49
      <scope>runtime</scope>
49
      <scope>runtime</scope>
50
    </dependency>
50
    </dependency>
51
    <dependency>
51
    <dependency>
52
      <groupId>com.google.gwt</groupId>
52
      <groupId>com.google.gwt</groupId>
53
      <artifactId>gwt-user</artifactId>
53
      <artifactId>gwt-user</artifactId>
54
      <version>2.1.0</version>
54
      <version>2.4.0</version>
55
      <scope>provided</scope>
55
      <scope>provided</scope>
56
    </dependency>  
56
    </dependency>  
57
    <dependency>
57
    <dependency>
58
      <groupId>aopalliance</groupId>
58
      <groupId>aopalliance</groupId>
59
      <artifactId>aopalliance</artifactId>
59
      <artifactId>aopalliance</artifactId>
60
      <version>1.0</version>
60
      <version>1.0</version>
61
    </dependency>
61
    </dependency>
62
    <dependency>
62
    <dependency>
63
      <groupId>com.google.gwt.inject</groupId>
63
      <groupId>com.google.gwt.inject</groupId>
64
      <artifactId>gin</artifactId>
64
      <artifactId>gin</artifactId>
65
      <version>1.0</version>
65
      <version>1.5.0</version>
66
    </dependency>
66
    </dependency>
67
    <dependency>
67
    <dependency>
68
      <groupId>com.google.inject</groupId>
68
      <groupId>com.google.inject</groupId>
69
      <artifactId>guice</artifactId>
69
      <artifactId>guice</artifactId>
70
      <version>2.0</version>
70
      <version>3.0</version>
71
    </dependency>
71
    </dependency>
72
    <dependency>
72
    <dependency>
73
      <groupId>com.google.inject.extensions</groupId>
73
      <groupId>com.google.inject.extensions</groupId>
74
      <artifactId>guice-servlet</artifactId>
74
      <artifactId>guice-servlet</artifactId>
75
      <version>2.0</version>
75
      <version>3.0</version>
76
    </dependency>
76
    </dependency>
77
    <dependency>
77
    <dependency>
78
      <groupId>net.customware.gwt.dispatch</groupId>
78
      <groupId>net.customware.gwt.dispatch</groupId>
79
      <artifactId>gwt-dispatch</artifactId>
79
      <artifactId>gwt-dispatch</artifactId>
80
      <version>1.0.0</version>
80
      <version>1.0.0</version>
Line 117... Line 117...
117
 
117
 
118
      <!-- GWT Maven Plugin -->
118
      <!-- GWT Maven Plugin -->
119
      <plugin>
119
      <plugin>
120
        <groupId>org.codehaus.mojo</groupId>
120
        <groupId>org.codehaus.mojo</groupId>
121
        <artifactId>gwt-maven-plugin</artifactId>
121
        <artifactId>gwt-maven-plugin</artifactId>
122
        <version>2.1.0-1</version>
122
        <version>2.4.0</version>
123
        <executions>
123
        <executions>
124
          <execution>
124
          <execution>
125
            <goals>
125
            <goals>
126
              <goal>compile</goal>
126
              <goal>compile</goal>
127
              <goal>test</goal>
127
              <goal>test</goal>