Skip to content

Commit a320271

Browse files
committed
Added core pom.xml
1 parent 0e7d17a commit a320271

File tree

1 file changed

+50
-0
lines changed

1 file changed

+50
-0
lines changed

Diff for: dygraphs-gwt/pom.xml

+50
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,50 @@
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</artifactId>
10+
<packaging>gwt-lib</packaging>
11+
12+
<name>Dygraphs-GWT</name>
13+
14+
<build>
15+
<plugins>
16+
<plugin>
17+
<groupId>net.ltgt.gwt.maven</groupId>
18+
<artifactId>gwt-maven-plugin</artifactId>
19+
<configuration>
20+
<moduleName>com.github.timeu.DygraphsGWT</moduleName>
21+
</configuration>
22+
</plugin>
23+
</plugins>
24+
</build>
25+
26+
<dependencies>
27+
28+
<!-- GWT dependencies -->
29+
<dependency>
30+
<groupId>com.google.gwt</groupId>
31+
<artifactId>gwt-dev</artifactId>
32+
<scope>provided</scope>
33+
</dependency>
34+
<dependency>
35+
<groupId>com.google.gwt</groupId>
36+
<artifactId>gwt-user</artifactId>
37+
</dependency>
38+
39+
<!-- Test dependencies -->
40+
<dependency>
41+
<groupId>junit</groupId>
42+
<artifactId>junit</artifactId>
43+
</dependency>
44+
<dependency>
45+
<groupId>org.mockito</groupId>
46+
<artifactId>mockito-all</artifactId>
47+
</dependency>
48+
49+
</dependencies>
50+
</project>

0 commit comments

Comments
 (0)