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

Commit 6a8cf20

Browse files
committed
gwt-rpc
1 parent f293149 commit 6a8cf20

File tree

179 files changed

+244
-2
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

179 files changed

+244
-2
lines changed

pom.xml

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -53,6 +53,17 @@
5353
<artifactId>maven-jar-plugin</artifactId>
5454
<version>2.4</version>
5555
</plugin>
56+
<plugin>
57+
<artifactId>maven-source-plugin</artifactId>
58+
<version>2.2.1</version>
59+
<executions>
60+
<execution>
61+
<goals>
62+
<goal>jar-no-fork</goal>
63+
</goals>
64+
</execution>
65+
</executions>
66+
</plugin>
5667
</plugins>
5768
</pluginManagement>
5869
</build>

user/gwt-rpc-api/pom.xml

Lines changed: 55 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,55 @@
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+
<relativePath>..</relativePath>
11+
</parent>
12+
13+
<artifactId>gwt-rpc-api</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+
<!-- super-sources -->
25+
<resource>
26+
<directory>src/main/super</directory>
27+
</resource>
28+
<!-- Where java-source dependencies are unpacked -->
29+
<resource>
30+
<directory>${dependencySourcesDirectory}</directory>
31+
</resource>
32+
</resources>
33+
34+
<plugins>
35+
<!-- Unpack java-source dependencies -->
36+
<plugin>
37+
<artifactId>maven-dependency-plugin</artifactId>
38+
</plugin>
39+
</plugins>
40+
</build>
41+
42+
<dependencies>
43+
<dependency>
44+
<groupId>com.google.gwt.user</groupId>
45+
<artifactId>gwt-rpc-shared</artifactId>
46+
<version>${project.version}</version>
47+
</dependency>
48+
<dependency>
49+
<groupId>com.google.gwt.user</groupId>
50+
<artifactId>gwt-rpc-shared</artifactId>
51+
<version>${project.version}</version>
52+
<type>java-source</type>
53+
</dependency>
54+
</dependencies>
55+
</project>

user/gwt-rpc-client/pom.xml

Lines changed: 60 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,60 @@
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+
<groupId>com.google.gwt.user</groupId>
8+
<artifactId>gwt-user-parent</artifactId>
9+
<version>2.6.0-SNAPSHOT</version>
10+
</parent>
11+
12+
<artifactId>gwt-rpc-client</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+
<!-- super-sources -->
24+
<resource>
25+
<directory>src/main/super</directory>
26+
<targetPath>com/google/gwt/user/translatable</targetPath>
27+
</resource>
28+
</resources>
29+
</build>
30+
31+
<dependencies>
32+
<dependency>
33+
<groupId>com.google.gwt.dev</groupId>
34+
<artifactId>gwt-compiler</artifactId>
35+
<version>${project.version}</version>
36+
</dependency>
37+
<dependency>
38+
<groupId>com.google.gwt.user</groupId>
39+
<artifactId>gwt-rpc-api</artifactId>
40+
<version>${project.version}</version>
41+
</dependency>
42+
<dependency>
43+
<groupId>com.google.gwt.user</groupId>
44+
<artifactId>gwt-http</artifactId>
45+
<version>${project.version}</version>
46+
</dependency>
47+
48+
<dependency>
49+
<groupId>junit</groupId>
50+
<artifactId>junit</artifactId>
51+
</dependency>
52+
<dependency>
53+
<groupId>com.google.gwt.dev</groupId>
54+
<artifactId>gwt-compiler</artifactId>
55+
<version>${project.version}</version>
56+
<type>test-jar</type>
57+
<scope>test</scope>
58+
</dependency>
59+
</dependencies>
60+
</project>

0 commit comments

Comments
 (0)