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

Commit 8ce8e3f

Browse files
committed
gwt-http
1 parent e7cc7af commit 8ce8e3f

16 files changed

+50
-4
lines changed

user/gwt-http/pom.xml

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

user/pom.xml

Lines changed: 16 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -5,17 +5,29 @@
55
<modelVersion>4.0.0</modelVersion>
66

77
<parent>
8-
<groupId>com.google.gwt</groupId>
9-
<artifactId>gwt</artifactId>
10-
<version>2.6.0-SNAPSHOT</version>
8+
<groupId>com.google.gwt</groupId>
9+
<artifactId>gwt</artifactId>
10+
<version>2.6.0-SNAPSHOT</version>
1111
</parent>
1212

1313
<groupId>com.google.gwt.user</groupId>
1414
<artifactId>gwt-user-parent</artifactId>
1515
<packaging>pom</packaging>
1616

17+
<dependencyManagement>
18+
<dependencies>
19+
<dependency>
20+
<groupId>javax.servlet</groupId>
21+
<artifactId>servlet-api</artifactId>
22+
<version>2.5</version>
23+
<scope>provided</scope>
24+
</dependency>
25+
</dependencies>
26+
</dependencyManagement>
27+
1728
<modules>
18-
<module>gwt-user-core</module>
1929
<module>gwt-lang</module>
30+
<module>gwt-user-core</module>
31+
<module>gwt-http</module>
2032
</modules>
2133
</project>

0 commit comments

Comments
 (0)