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

Commit d749f83

Browse files
committed
WIP
1 parent d6d9c73 commit d749f83

File tree

141 files changed

+113
-1
lines changed

Some content is hidden

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

141 files changed

+113
-1
lines changed

dev/gwt-compiler/pom.xml

Lines changed: 29 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,9 +37,36 @@
3737
</plugin>
3838
</plugins>
3939
</pluginManagement>
40+
41+
<plugins>
42+
<plugin>
43+
<artifactId>maven-jar-plugin</artifactId>
44+
<executions>
45+
<execution>
46+
<goals>
47+
<goal>test-jar</goal>
48+
</goals>
49+
</execution>
50+
</executions>
51+
</plugin>
52+
</plugins>
4053
</build>
4154

4255
<dependencies>
56+
<dependency>
57+
<groupId>net.sourceforge.htmlunit</groupId>
58+
<artifactId>htmlunit</artifactId>
59+
<exclusions>
60+
<exclusion>
61+
<groupId>xalan</groupId>
62+
<artifactId>xalan</artifactId>
63+
</exclusion>
64+
<exclusion>
65+
<groupId>xerces</groupId>
66+
<artifactId>xercesImpl</artifactId>
67+
</exclusion>
68+
</exclusions>
69+
</dependency>
4370
<dependency>
4471
<groupId>com.google.gwt.util</groupId>
4572
<artifactId>gwt-shared</artifactId>
@@ -90,6 +117,7 @@
90117
<groupId>ant</groupId>
91118
<artifactId>ant</artifactId>
92119
</dependency>
120+
<!--
93121
<dependency>
94122
<groupId>xerces</groupId>
95123
<artifactId>xercesImpl</artifactId>
@@ -111,7 +139,7 @@
111139
<scope>system</scope>
112140
<systemPath>${GWT_TOOLS}/lib/xerces/xerces-2_9_1/xml-apis.jar</systemPath>
113141
</dependency>
114-
142+
-->
115143
<dependency>
116144
<groupId>junit</groupId>
117145
<artifactId>junit</artifactId>

dev/gwt-devmode/pom.xml

Lines changed: 26 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,19 +13,45 @@
1313
<artifactId>gwt-devmode</artifactId>
1414

1515
<dependencies>
16+
<dependency>
17+
<groupId>com.google.gwt.util</groupId>
18+
<artifactId>gwt-tools-api</artifactId>
19+
<version>${project.version}</version>
20+
</dependency>
21+
<dependency>
22+
<groupId>com.google.gwt.dev</groupId>
23+
<artifactId>gwt-dev-ext</artifactId>
24+
<version>${project.version}</version>
25+
</dependency>
1626
<dependency>
1727
<groupId>com.google.gwt.dev</groupId>
1828
<artifactId>gwt-compiler</artifactId>
1929
<version>${project.version}</version>
2030
</dependency>
31+
<dependency>
32+
<groupId>com.google.gwt.dev</groupId>
33+
<artifactId>gwt-jetty-launcher</artifactId>
34+
<version>${project.version}</version>
35+
</dependency>
2136
<dependency>
2237
<groupId>com.google.guava</groupId>
2338
<artifactId>guava</artifactId>
2439
</dependency>
40+
<dependency>
41+
<groupId>com.google.protobug</groupId>
42+
<artifactId>protobuf-java</artifactId>
43+
</dependency>
2544

2645
<dependency>
2746
<groupId>junit</groupId>
2847
<artifactId>junit</artifactId>
2948
</dependency>
49+
<dependency>
50+
<groupId>com.google.gwt.dev</groupId>
51+
<artifactId>gwt-compiler</artifactId>
52+
<version>${project.version}</version>
53+
<type>test-jar</type>
54+
<scope>test</scope>
55+
</dependency>
3056
</dependencies>
3157
</project>

dev/gwt-jetty-launcher/pom.xml

Lines changed: 40 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,40 @@
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+
<artifactId>gwt-dev-parent</artifactId>
9+
<groupId>com.google.gwt.dev</groupId>
10+
<version>2.6.0-SNAPSHOT</version>
11+
</parent>
12+
13+
<artifactId>gwt-jetty-launcher</artifactId>
14+
15+
<dependencies>
16+
<dependency>
17+
<groupId>com.google.gwt.dev</groupId>
18+
<artifactId>gwt-dev-ext</artifactId>
19+
<version>${project.version}</version>
20+
</dependency>
21+
<dependency>
22+
<groupId>org.eclipse.jdt</groupId>
23+
<artifactId>core</artifactId>
24+
</dependency>
25+
<dependency>
26+
<groupId>org.eclipse.jdt</groupId>
27+
<artifactId>jdtCompilerAdapter</artifactId>
28+
</dependency>
29+
<dependency>
30+
<groupId>ant</groupId>
31+
<artifactId>ant</artifactId>
32+
</dependency>
33+
34+
35+
<dependency>
36+
<groupId>org.mortbay.jetty</groupId>
37+
<artifactId>jetty</artifactId>
38+
</dependency>
39+
</dependencies>
40+
</project>

dev/pom.xml

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -45,6 +45,13 @@
4545
<scope>system</scope>
4646
<systemPath>${GWT_TOOLS}/lib/jscomp/r1649/compiler-rebased.jar</systemPath>
4747
</dependency>
48+
<dependency>
49+
<groupId>com.google.protobug</groupId>
50+
<artifactId>protobuf-java</artifactId>
51+
<version>2.2.0-gwt-rebased</version>
52+
<scope>system</scope>
53+
<systemPath>${GWT_TOOLS}/lib/protobuf/protobuf-2.2.0/protobuf-java-rebased-2.2.0.jar</systemPath>
54+
</dependency>
4855

4956
<!-- Not found in Central -->
5057
<dependency>
@@ -69,6 +76,7 @@
6976
<module>gwt-dev-json</module>
7077
<module>gwt-dev-ext</module>
7178
<module>gwt-compiler</module>
79+
<module>gwt-jetty-launcher</module>
7280
<module>gwt-devmode</module>
7381
</modules>
7482
</project>

pom.xml

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -49,12 +49,22 @@
4949
<artifactId>maven-surefire-plugin</artifactId>
5050
<version>2.12.4</version>
5151
</plugin>
52+
<plugin>
53+
<artifactId>maven-jar-plugin</artifactId>
54+
<version>2.4</version>
55+
</plugin>
5256
</plugins>
5357
</pluginManagement>
5458
</build>
5559

5660
<dependencyManagement>
5761
<dependencies>
62+
<dependency>
63+
<groupId>org.mortbay.jetty</groupId>
64+
<artifactId>jetty</artifactId>
65+
<version>6.1.11</version>
66+
</dependency>
67+
5868
<!-- Rebased -->
5969
<dependency>
6070
<groupId>com.google.guava</groupId>

0 commit comments

Comments
 (0)