Skip to content
This repository was archived by the owner on Sep 26, 2020. It is now read-only.

Commit 2554f7f

Browse files
committed
gwt-jsonp
1 parent c561419 commit 2554f7f

File tree

7 files changed

+39
-0
lines changed

7 files changed

+39
-0
lines changed

user/gwt-jsonp/pom.xml

Lines changed: 38 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,38 @@
1+
<project xmlns="http://maven.apache.org/POM/4.0.0"
2+
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
3+
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
4+
<modelVersion>4.0.0</modelVersion>
5+
6+
<parent>
7+
<artifactId>gwt-user-parent</artifactId>
8+
<groupId>com.google.gwt.user</groupId>
9+
<version>2.6.0-SNAPSHOT</version>
10+
</parent>
11+
12+
<artifactId>gwt-jsonp</artifactId>
13+
14+
<build>
15+
<resources>
16+
<resource>
17+
<directory>src/main/resources</directory>
18+
</resource>
19+
<!-- embed sources in the JAR -->
20+
<resource>
21+
<directory>src/main/java</directory>
22+
</resource>
23+
</resources>
24+
</build>
25+
26+
<dependencies>
27+
<dependency>
28+
<groupId>com.google.gwt.user</groupId>
29+
<artifactId>gwt-dom</artifactId>
30+
<version>${project.version}</version>
31+
</dependency>
32+
<dependency>
33+
<groupId>com.google.gwt.user</groupId>
34+
<artifactId>gwt-timer</artifactId>
35+
<version>${project.version}</version>
36+
</dependency>
37+
</dependencies>
38+
</project>

user/pom.xml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -113,6 +113,7 @@
113113
<module>gwt-safecss-server</module>
114114
<module>gwt-safecss-client</module>
115115
<module>gwt-safehtml-client</module>
116+
<module>gwt-jsonp</module>
116117
<module>gwt-resources</module>
117118
<module>gwt-window</module>
118119
<module>gwt-timer</module>

0 commit comments

Comments
 (0)