Subversion Repositories SmartDukaan

Rev

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

Rev Author Line No. Line
2354 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>HotspotDashboard</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>
40
      <groupId>com.google.gwt</groupId>
41
      <artifactId>gwt-servlet</artifactId>
42
      <version>2.1.0</version>
43
      <scope>runtime</scope>
44
    </dependency>
45
    <dependency>
46
      <groupId>com.google.gwt</groupId>
47
      <artifactId>gwt-user</artifactId>
48
      <version>2.1.0</version>
49
      <scope>provided</scope>
50
    </dependency>  
51
    <dependency>
52
      <groupId>aopalliance</groupId>
53
      <artifactId>aopalliance</artifactId>
54
      <version>1.0</version>
55
    </dependency>
56
    <dependency>
57
      <groupId>com.google.gwt.inject</groupId>
58
      <artifactId>gin</artifactId>
59
      <version>1.0</version>
60
    </dependency>
61
    <dependency>
62
      <groupId>com.google.inject</groupId>
63
      <artifactId>guice</artifactId>
64
      <version>2.0</version>
65
    </dependency>
66
    <dependency>
67
      <groupId>com.google.inject.extensions</groupId>
68
      <artifactId>guice-servlet</artifactId>
69
      <version>2.0</version>
70
    </dependency>
71
    <dependency>
72
      <groupId>net.customware.gwt.dispatch</groupId>
73
      <artifactId>gwt-dispatch</artifactId>
74
      <version>1.0.0</version>
75
    </dependency>
76
    <dependency>
77
      <groupId>readonly.gwt-mvp</groupId>
78
      <artifactId>gwt-mvp</artifactId>
79
      <version>1.0.0</version>
80
    </dependency>
81
 
2786 chandransh 82
    <dependency>
83
      <groupId>readonly.apache</groupId>
84
      <artifactId>poi</artifactId>
85
      <version>3.7-20101029</version>
86
    </dependency>
2354 chandransh 87
 
88
    <dependency>
89
      <groupId>junit</groupId>
90
      <artifactId>junit</artifactId>
91
      <version>4.7</version>
92
      <scope>test</scope>
93
    </dependency>
94
  </dependencies>
95
 
96
  <build>
97
    <!-- Generate compiled stuff in the folder used for developing mode -->
98
    <outputDirectory>${webappDirectory}/WEB-INF/classes</outputDirectory>
99
 
100
    <plugins>
101
 
102
      <!-- GWT Maven Plugin -->
103
      <plugin>
104
        <groupId>org.codehaus.mojo</groupId>
105
        <artifactId>gwt-maven-plugin</artifactId>
106
        <version>2.1.0-1</version>
107
        <executions>
108
          <execution>
109
            <goals>
110
              <goal>compile</goal>
111
              <goal>test</goal>
112
              <!-- <goal>i18n</goal> -->
113
              <goal>generateAsync</goal>
114
            </goals>
115
          </execution>
116
        </executions>
117
        <!-- Plugin configuration. There are many available options, see gwt-maven-plugin 
118
          documentation at codehaus.org -->
119
        <configuration>
120
          <runTarget>HotspotDashboard.html</runTarget>
121
          <hostedWebapp>${webappDirectory}</hostedWebapp>
122
          <i18nMessagesBundle>in.shop2020.hotspot.dashboard.client.Messages</i18nMessagesBundle>
123
        </configuration>
124
      </plugin>
125
 
126
      <!-- Copy static web files before executing gwt:run -->
127
      <plugin>
128
        <groupId>org.apache.maven.plugins</groupId>
129
        <artifactId>maven-war-plugin</artifactId>
130
        <version>2.1.1</version>
131
        <executions>
132
          <execution>
133
            <phase>compile</phase>
134
            <goals>
135
              <goal>exploded</goal>
136
            </goals>
137
          </execution>
138
        </executions>
139
        <configuration>
140
          <webappDirectory>${webappDirectory}</webappDirectory>
141
        </configuration>
142
      </plugin>
143
 
144
    </plugins>
145
  </build>
146
 
147
</project>