Subversion Repositories SmartDukaan

Rev

Rev 2572 | Go to most recent revision | Details | 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>
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>junit</groupId>
58
      <artifactId>junit</artifactId>
59
      <version>4.7</version>
60
      <scope>test</scope>
61
    </dependency>
62
  </dependencies>
63
 
64
  <build>
65
    <!-- Generate compiled stuff in the folder used for developing mode -->
66
    <outputDirectory>${webappDirectory}/WEB-INF/classes</outputDirectory>
67
 
68
    <plugins>
69
 
70
      <!-- GWT Maven Plugin -->
71
      <plugin>
72
        <groupId>org.codehaus.mojo</groupId>
73
        <artifactId>gwt-maven-plugin</artifactId>
74
        <version>2.1.0-1</version>
75
        <executions>
76
          <execution>
77
            <goals>
78
              <goal>compile</goal>
79
              <goal>test</goal>
80
              <!-- <goal>i18n</goal> -->
81
              <goal>generateAsync</goal>
82
            </goals>
83
          </execution>
84
        </executions>
85
        <!-- Plugin configuration. There are many available options, see gwt-maven-plugin 
86
          documentation at codehaus.org -->
87
        <configuration>
88
          <runTarget>HotspotDashboard.html</runTarget>
89
          <hostedWebapp>${webappDirectory}</hostedWebapp>
90
          <i18nMessagesBundle>in.shop2020.hotspot.dashboard.client.Messages</i18nMessagesBundle>
91
        </configuration>
92
      </plugin>
93
 
94
      <!-- Copy static web files before executing gwt:run -->
95
      <plugin>
96
        <groupId>org.apache.maven.plugins</groupId>
97
        <artifactId>maven-war-plugin</artifactId>
98
        <version>2.1.1</version>
99
        <executions>
100
          <execution>
101
            <phase>compile</phase>
102
            <goals>
103
              <goal>exploded</goal>
104
            </goals>
105
          </execution>
106
        </executions>
107
        <configuration>
108
          <webappDirectory>${webappDirectory}</webappDirectory>
109
        </configuration>
110
      </plugin>
111
 
112
    </plugins>
113
  </build>
114
 
115
</project>