Skip to content

Commit 74b9209

Browse files
committed
Added sample pom.xml file
1 parent a320271 commit 74b9209

File tree

1 file changed

+46
-0
lines changed

1 file changed

+46
-0
lines changed

Diff for: dygraphs-gwt-sample/pom.xml

+46
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,46 @@
1+
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
2+
<modelVersion>4.0.0</modelVersion>
3+
<parent>
4+
<groupId>com.github.timeu.dygraphs-gwt</groupId>
5+
<artifactId>dygraphs-gwt-parent</artifactId>
6+
<version>1.0.0-SNAPSHOT</version>
7+
</parent>
8+
9+
<artifactId>dygraphs-gwt-sample</artifactId>
10+
<packaging>war</packaging>
11+
12+
<name>Dygraphs-GWT Sample Application</name>
13+
14+
<build>
15+
<plugins>
16+
<plugin>
17+
<groupId>net.ltgt.gwt.maven</groupId>
18+
<artifactId>gwt-maven-plugin</artifactId>
19+
<executions>
20+
<execution>
21+
<goals>
22+
<goal>generate-module</goal>
23+
<goal>compile</goal>
24+
</goals>
25+
</execution>
26+
</executions>
27+
<configuration>
28+
<moduleName>sample.DygraphsGWTSample</moduleName>
29+
</configuration>
30+
</plugin>
31+
</plugins>
32+
</build>
33+
34+
<dependencies>
35+
<dependency>
36+
<groupId>com.google.gwt</groupId>
37+
<artifactId>gwt-user</artifactId>
38+
<scope>provided</scope>
39+
</dependency>
40+
<dependency>
41+
<groupId>com.github.timeu.dygraphs-gwt</groupId>
42+
<artifactId>dygraphs-gwt</artifactId>
43+
<scope>provided</scope>
44+
</dependency>
45+
</dependencies>
46+
</project>

0 commit comments

Comments
 (0)