Subversion Repositories SmartDukaan

Rev

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