Subversion Repositories SmartDukaan

Rev

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

Rev 2572 Rev 3524
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 30... Line 30...
30
      <artifactId>Common</artifactId>
30
      <artifactId>Common</artifactId>
31
      <version>1.0-SNAPSHOT</version>
31
      <version>1.0-SNAPSHOT</version>
32
    </dependency>
32
    </dependency>
33
 
33
 
34
    <dependency>
34
    <dependency>
35
      <groupId>readonly.apache</groupId>
35
      <groupId>org.apache.thrift</groupId>
36
      <artifactId>thrift</artifactId>
36
      <artifactId>libthrift</artifactId>
37
      <version>0.2.0</version>
37
      <version>0.7.0</version>
-
 
38
      <exclusions>
-
 
39
        <exclusion>
-
 
40
          <groupId>commons-codec</groupId>
-
 
41
          <artifactId>commons-codec</artifactId>
-
 
42
        </exclusion>
-
 
43
      </exclusions>
38
    </dependency>
44
    </dependency>
39
    <dependency>
45
    <dependency>
40
      <groupId>readonly.apache</groupId>
46
      <groupId>readonly.apache</groupId>
41
      <artifactId>poi</artifactId>
47
      <artifactId>poi</artifactId>
42
      <version>3.7-20101029</version>
48
      <version>3.7-20101029</version>
43
    </dependency>
49
    </dependency>
44
    <dependency>
50
    <dependency>
45
      <groupId>com.google.gwt</groupId>
51
      <groupId>com.google.gwt</groupId>
46
      <artifactId>gwt-servlet</artifactId>
52
      <artifactId>gwt-servlet</artifactId>
47
      <version>2.1.0</version>
53
      <version>2.4.0</version>
48
      <scope>runtime</scope>
54
      <scope>runtime</scope>
49
    </dependency>
55
    </dependency>
50
    <dependency>
56
    <dependency>
51
      <groupId>com.google.gwt</groupId>
57
      <groupId>com.google.gwt</groupId>
52
      <artifactId>gwt-user</artifactId>
58
      <artifactId>gwt-user</artifactId>
53
      <version>2.1.0</version>
59
      <version>2.4.0</version>
54
      <scope>provided</scope>
60
      <scope>provided</scope>
55
    </dependency>  
61
    </dependency>  
56
    <dependency>
62
    <dependency>
57
      <groupId>aopalliance</groupId>
63
      <groupId>aopalliance</groupId>
58
      <artifactId>aopalliance</artifactId>
64
      <artifactId>aopalliance</artifactId>
Line 74... Line 80...
74
 
80
 
75
      <!-- GWT Maven Plugin -->
81
      <!-- GWT Maven Plugin -->
76
      <plugin>
82
      <plugin>
77
        <groupId>org.codehaus.mojo</groupId>
83
        <groupId>org.codehaus.mojo</groupId>
78
        <artifactId>gwt-maven-plugin</artifactId>
84
        <artifactId>gwt-maven-plugin</artifactId>
79
        <version>2.1.0-1</version>
85
        <version>2.4.0</version>
80
        <executions>
86
        <executions>
81
          <execution>
87
          <execution>
82
            <goals>
88
            <goals>
83
              <goal>compile</goal>
89
              <goal>compile</goal>
84
              <goal>test</goal>
90
              <goal>test</goal>