Subversion Repositories SmartDukaan

Rev

Rev 2569 | Rev 3524 | Go to most recent revision | Details | Compare with Previous | Last modification | View Log | RSS feed

Rev Author Line No. Line
2569 chandransh 1
<?xml version="1.0" encoding="UTF-8"?>
2
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
3
  xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
4
 
5
  <!-- POM file generated with GWT webAppCreator -->
6
  <modelVersion>4.0.0</modelVersion>
7
  <groupId>in.shop2020</groupId>
8
  <artifactId>CatalogDashboard</artifactId>
9
  <packaging>war</packaging>
10
  <version>1.0-SNAPSHOT</version>
11
  <name>GWT Maven Archetype</name>
12
 
13
  <properties>
14
    <!-- Convenience property to set the GWT version -->
15
    <gwtVersion>2.1.0</gwtVersion>
16
    <!-- GWT needs at least java 1.5 -->
17
    <maven.compiler.source>1.5</maven.compiler.source>
18
    <maven.compiler.target>1.5</maven.compiler.target>
19
    <webappDirectory>${project.build.directory}/${project.build.finalName}</webappDirectory>
20
  </properties>
21
 
22
  <dependencies>
23
    <dependency>
24
      <groupId>in.shop2020</groupId>
25
      <artifactId>ThriftConfig</artifactId>
26
      <version>1.0-SNAPSHOT</version>
27
    </dependency>
28
    <dependency>
29
      <groupId>in.shop2020</groupId>
30
      <artifactId>Common</artifactId>
31
      <version>1.0-SNAPSHOT</version>
32
    </dependency>
33
 
34
    <dependency>
35
      <groupId>readonly.apache</groupId>
36
      <artifactId>thrift</artifactId>
37
      <version>0.2.0</version>
38
    </dependency>
39
    <dependency>
2572 chandransh 40
      <groupId>readonly.apache</groupId>
41
      <artifactId>poi</artifactId>
42
      <version>3.7-20101029</version>
43
    </dependency>
44
    <dependency>
2569 chandransh 45
      <groupId>com.google.gwt</groupId>
46
      <artifactId>gwt-servlet</artifactId>
47
      <version>2.1.0</version>
48
      <scope>runtime</scope>
49
    </dependency>
50
    <dependency>
51
      <groupId>com.google.gwt</groupId>
52
      <artifactId>gwt-user</artifactId>
53
      <version>2.1.0</version>
54
      <scope>provided</scope>
55
    </dependency>  
56
    <dependency>
57
      <groupId>aopalliance</groupId>
58
      <artifactId>aopalliance</artifactId>
59
      <version>1.0</version>
60
    </dependency>
61
    <dependency>
62
      <groupId>junit</groupId>
63
      <artifactId>junit</artifactId>
64
      <version>4.7</version>
65
      <scope>test</scope>
66
    </dependency>
67
  </dependencies>
68
 
69
  <build>
70
    <!-- Generate compiled stuff in the folder used for developing mode -->
71
    <outputDirectory>${webappDirectory}/WEB-INF/classes</outputDirectory>
72
 
73
    <plugins>
74
 
75
      <!-- GWT Maven Plugin -->
76
      <plugin>
77
        <groupId>org.codehaus.mojo</groupId>
78
        <artifactId>gwt-maven-plugin</artifactId>
79
        <version>2.1.0-1</version>
80
        <executions>
81
          <execution>
82
            <goals>
83
              <goal>compile</goal>
84
              <goal>test</goal>
85
              <!-- <goal>i18n</goal> -->
2572 chandransh 86
              <!-- <goal>generateAsync</goal> -->
2569 chandransh 87
            </goals>
88
          </execution>
89
        </executions>
90
        <!-- Plugin configuration. There are many available options, see gwt-maven-plugin 
91
          documentation at codehaus.org -->
92
        <configuration>
93
          <runTarget>HotspotDashboard.html</runTarget>
94
          <hostedWebapp>${webappDirectory}</hostedWebapp>
95
          <i18nMessagesBundle>in.shop2020.hotspot.dashboard.client.Messages</i18nMessagesBundle>
96
        </configuration>
97
      </plugin>
98
 
99
      <!-- Copy static web files before executing gwt:run -->
100
      <plugin>
101
        <groupId>org.apache.maven.plugins</groupId>
102
        <artifactId>maven-war-plugin</artifactId>
103
        <version>2.1.1</version>
104
        <executions>
105
          <execution>
106
            <phase>compile</phase>
107
            <goals>
108
              <goal>exploded</goal>
109
            </goals>
110
          </execution>
111
        </executions>
112
        <configuration>
113
          <webappDirectory>${webappDirectory}</webappDirectory>
114
        </configuration>
115
      </plugin>
116
 
117
    </plugins>
118
  </build>
119
 
120
</project>