Subversion Repositories SmartDukaan

Rev

Rev 3524 | 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>
5128 amit.gupta 68
	  <groupId>javax.mail</groupId>
69
	  <artifactId>mail</artifactId>
70
	  <version>1.4</version>
71
	</dependency>
72
    <dependency>
2569 chandransh 73
      <groupId>junit</groupId>
74
      <artifactId>junit</artifactId>
75
      <version>4.7</version>
76
      <scope>test</scope>
77
    </dependency>
78
  </dependencies>
79
 
80
  <build>
81
    <!-- Generate compiled stuff in the folder used for developing mode -->
82
    <outputDirectory>${webappDirectory}/WEB-INF/classes</outputDirectory>
83
 
84
    <plugins>
85
 
86
      <!-- GWT Maven Plugin -->
87
      <plugin>
88
        <groupId>org.codehaus.mojo</groupId>
89
        <artifactId>gwt-maven-plugin</artifactId>
3524 chandransh 90
        <version>2.4.0</version>
2569 chandransh 91
        <executions>
92
          <execution>
93
            <goals>
94
              <goal>compile</goal>
95
              <goal>test</goal>
96
              <!-- <goal>i18n</goal> -->
2572 chandransh 97
              <!-- <goal>generateAsync</goal> -->
2569 chandransh 98
            </goals>
99
          </execution>
100
        </executions>
101
        <!-- Plugin configuration. There are many available options, see gwt-maven-plugin 
102
          documentation at codehaus.org -->
103
        <configuration>
104
          <runTarget>HotspotDashboard.html</runTarget>
105
          <hostedWebapp>${webappDirectory}</hostedWebapp>
106
          <i18nMessagesBundle>in.shop2020.hotspot.dashboard.client.Messages</i18nMessagesBundle>
107
        </configuration>
108
      </plugin>
109
 
110
      <!-- Copy static web files before executing gwt:run -->
111
      <plugin>
112
        <groupId>org.apache.maven.plugins</groupId>
113
        <artifactId>maven-war-plugin</artifactId>
114
        <version>2.1.1</version>
115
        <executions>
116
          <execution>
117
            <phase>compile</phase>
118
            <goals>
119
              <goal>exploded</goal>
120
            </goals>
121
          </execution>
122
        </executions>
123
        <configuration>
124
          <webappDirectory>${webappDirectory}</webappDirectory>
125
        </configuration>
126
      </plugin>
127
 
128
    </plugins>
129
  </build>
130
 
131
</project>