Subversion Repositories SmartDukaan

Rev

Rev 2572 | 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 -->
3524 chandransh 15
    <gwtVersion>2.4.0</gwtVersion>
2569 chandransh 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>
3524 chandransh 35
      <groupId>org.apache.thrift</groupId>
36
      <artifactId>libthrift</artifactId>
37
      <version>0.7.0</version>
38
      <exclusions>
39
        <exclusion>
40
          <groupId>commons-codec</groupId>
41
          <artifactId>commons-codec</artifactId>
42
        </exclusion>
43
      </exclusions>
2569 chandransh 44
    </dependency>
45
    <dependency>
2572 chandransh 46
      <groupId>readonly.apache</groupId>
47
      <artifactId>poi</artifactId>
48
      <version>3.7-20101029</version>
49
    </dependency>
50
    <dependency>
2569 chandransh 51
      <groupId>com.google.gwt</groupId>
52
      <artifactId>gwt-servlet</artifactId>
3524 chandransh 53
      <version>2.4.0</version>
2569 chandransh 54
      <scope>runtime</scope>
55
    </dependency>
56
    <dependency>
57
      <groupId>com.google.gwt</groupId>
58
      <artifactId>gwt-user</artifactId>
3524 chandransh 59
      <version>2.4.0</version>
2569 chandransh 60
      <scope>provided</scope>
61
    </dependency>  
62
    <dependency>
63
      <groupId>aopalliance</groupId>
64
      <artifactId>aopalliance</artifactId>
65
      <version>1.0</version>
66
    </dependency>
67
    <dependency>
68
      <groupId>junit</groupId>
69
      <artifactId>junit</artifactId>
70
      <version>4.7</version>
71
      <scope>test</scope>
72
    </dependency>
73
  </dependencies>
74
 
75
  <build>
76
    <!-- Generate compiled stuff in the folder used for developing mode -->
77
    <outputDirectory>${webappDirectory}/WEB-INF/classes</outputDirectory>
78
 
79
    <plugins>
80
 
81
      <!-- GWT Maven Plugin -->
82
      <plugin>
83
        <groupId>org.codehaus.mojo</groupId>
84
        <artifactId>gwt-maven-plugin</artifactId>
3524 chandransh 85
        <version>2.4.0</version>
2569 chandransh 86
        <executions>
87
          <execution>
88
            <goals>
89
              <goal>compile</goal>
90
              <goal>test</goal>
91
              <!-- <goal>i18n</goal> -->
2572 chandransh 92
              <!-- <goal>generateAsync</goal> -->
2569 chandransh 93
            </goals>
94
          </execution>
95
        </executions>
96
        <!-- Plugin configuration. There are many available options, see gwt-maven-plugin 
97
          documentation at codehaus.org -->
98
        <configuration>
99
          <runTarget>HotspotDashboard.html</runTarget>
100
          <hostedWebapp>${webappDirectory}</hostedWebapp>
101
          <i18nMessagesBundle>in.shop2020.hotspot.dashboard.client.Messages</i18nMessagesBundle>
102
        </configuration>
103
      </plugin>
104
 
105
      <!-- Copy static web files before executing gwt:run -->
106
      <plugin>
107
        <groupId>org.apache.maven.plugins</groupId>
108
        <artifactId>maven-war-plugin</artifactId>
109
        <version>2.1.1</version>
110
        <executions>
111
          <execution>
112
            <phase>compile</phase>
113
            <goals>
114
              <goal>exploded</goal>
115
            </goals>
116
          </execution>
117
        </executions>
118
        <configuration>
119
          <webappDirectory>${webappDirectory}</webappDirectory>
120
        </configuration>
121
      </plugin>
122
 
123
    </plugins>
124
  </build>
125
 
126
</project>