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

Commit 8df27b5

Browse files
committed
WIP
1 parent b2f76a2 commit 8df27b5

File tree

199 files changed

+213
-4
lines changed

Some content is hidden

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

199 files changed

+213
-4
lines changed

dev/gwt-compiler/pom.xml

Lines changed: 41 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,41 @@
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.dev</groupId>
9+
<artifactId>gwt-dev-parent</artifactId>
10+
<version>2.6.0-SNAPSHOT</version>
11+
</parent>
12+
13+
<artifactId>gwt-compiler</artifactId>
14+
15+
<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-jsni-parser</artifactId>
24+
<version>${project.version}</version>
25+
</dependency>
26+
<dependency>
27+
<groupId>com.google.gwt.dev</groupId>
28+
<artifactId>gwt-dev-ext</artifactId>
29+
<version>${project.version}</version>
30+
</dependency>
31+
<dependency>
32+
<groupId>com.google.guava</groupId>
33+
<artifactId>guava</artifactId>
34+
</dependency>
35+
36+
<dependency>
37+
<groupId>junit</groupId>
38+
<artifactId>junit</artifactId>
39+
</dependency>
40+
</dependencies>
41+
</project>

dev/gwt-dev-ext/pom.xml

Lines changed: 53 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,53 @@
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.dev</groupId>
9+
<artifactId>gwt-dev-parent</artifactId>
10+
<version>2.6.0-SNAPSHOT</version>
11+
</parent>
12+
13+
<artifactId>gwt-dev-ext</artifactId>
14+
15+
<dependencies>
16+
<dependency>
17+
<groupId>com.google.gwt.util</groupId>
18+
<artifactId>gwt-shared</artifactId>
19+
<version>${project.version}</version>
20+
</dependency>
21+
<dependency>
22+
<groupId>com.google.gwt.dev</groupId>
23+
<artifactId>gwt-dev-json</artifactId>
24+
<version>${project.version}</version>
25+
</dependency>
26+
<dependency>
27+
<groupId>commons-collections</groupId>
28+
<artifactId>commons-collections</artifactId>
29+
<version>3.2.1</version>
30+
</dependency>
31+
<dependency>
32+
<groupId>com.google.javascript</groupId>
33+
<artifactId>sourcemap</artifactId>
34+
</dependency>
35+
<dependency>
36+
<groupId>com.google.guava</groupId>
37+
<artifactId>guava</artifactId>
38+
</dependency>
39+
<dependency>
40+
<groupId>net.sourceforge.htmlunit</groupId>
41+
<artifactId>htmlunit</artifactId>
42+
</dependency>
43+
<dependency>
44+
<groupId>net.sourceforge.htmlunit</groupId>
45+
<artifactId>htmlunit-core-js</artifactId>
46+
</dependency>
47+
48+
<dependency>
49+
<groupId>junit</groupId>
50+
<artifactId>junit</artifactId>
51+
</dependency>
52+
</dependencies>
53+
</project>

dev/gwt-dev-json/pom.xml

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
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-dev-parent</artifactId>
8+
<groupId>com.google.gwt.dev</groupId>
9+
<version>2.6.0-SNAPSHOT</version>
10+
</parent>
11+
12+
<artifactId>gwt-dev-json</artifactId>
13+
14+
<dependencies>
15+
<dependency>
16+
<groupId>junit</groupId>
17+
<artifactId>junit</artifactId>
18+
</dependency>
19+
</dependencies>
20+
</project>

dev/gwt-devmode/pom.xml

Lines changed: 31 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,31 @@
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.dev</groupId>
9+
<artifactId>gwt-dev-parent</artifactId>
10+
<version>2.6.0-SNAPSHOT</version>
11+
</parent>
12+
13+
<artifactId>gwt-devmode</artifactId>
14+
15+
<dependencies>
16+
<dependency>
17+
<groupId>com.google.gwt.dev</groupId>
18+
<artifactId>gwt-compiler</artifactId>
19+
<version>${project.version}</version>
20+
</dependency>
21+
<dependency>
22+
<groupId>com.google.guava</groupId>
23+
<artifactId>guava</artifactId>
24+
</dependency>
25+
26+
<dependency>
27+
<groupId>junit</groupId>
28+
<artifactId>junit</artifactId>
29+
</dependency>
30+
</dependencies>
31+
</project>

dev/pom.xml

Lines changed: 22 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -5,17 +5,35 @@
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.dev</groupId>
1414
<artifactId>gwt-dev-parent</artifactId>
15-
<version>2.6.0-SNAPSHOT</version>
1615
<packaging>pom</packaging>
1716

17+
<build>
18+
<pluginManagement>
19+
<plugins>
20+
<plugin>
21+
<artifactId>maven-surefire-plugin</artifactId>
22+
<configuration>
23+
<includes>
24+
<include>com/google/**/*Test.java</include>
25+
</includes>
26+
</configuration>
27+
</plugin>
28+
</plugins>
29+
</pluginManagement>
30+
</build>
31+
1832
<modules>
1933
<module>gwt-jsni-parser</module>
34+
<module>gwt-dev-json</module>
35+
<module>gwt-dev-ext</module>
36+
<module>gwt-compiler</module>
37+
<module>gwt-devmode</module>
2038
</modules>
2139
</project>

pom.xml

Lines changed: 46 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -44,20 +44,66 @@
4444
<target>1.6</target>
4545
</configuration>
4646
</plugin>
47+
<plugin>
48+
<artifactId>maven-surefire-plugin</artifactId>
49+
<version>2.12.4</version>
50+
</plugin>
4751
</plugins>
4852
</pluginManagement>
4953
</build>
5054

5155
<dependencyManagement>
5256
<dependencies>
57+
<!-- Rebased -->
5358
<dependency>
5459
<groupId>com.google.guava</groupId>
5560
<artifactId>guava</artifactId>
5661
<version>10.0.1-gwt-rebased</version>
5762
<scope>system</scope>
5863
<systemPath>${GWT_TOOLS}/lib/guava/guava-10.0.1/guava-10.0.1-rebased.jar</systemPath>
5964
</dependency>
65+
<dependency>
66+
<groupId>com.google.javascript</groupId>
67+
<artifactId>closure-compiler</artifactId>
68+
<version>r1649</version>
69+
<scope>system</scope>
70+
<systemPath>${GWT_TOOLS}/lib/jscomp/r1649/compiler-rebased.jar</systemPath>
71+
</dependency>
72+
73+
<!-- Patched -->
74+
<dependency>
75+
<!-- Our patches have been integrated in 2.10 -->
76+
<groupId>net.sourceforge.htmlunit</groupId>
77+
<artifactId>htmlunit</artifactId>
78+
<version>2.10</version>
79+
<!--
80+
<version>2.9-gwt-patched</version>
81+
<scope>system</scope>
82+
<systemPath>${GWT_TOOLS}/lib/htmlunit/htmlunit-2.9/htmlunit-2.9.jar</systemPath>
83+
-->
84+
</dependency>
85+
<dependency>
86+
<!-- Our patches have been integrated in 2.10 -->
87+
<groupId>net.sourceforge.htmlunit</groupId>
88+
<artifactId>htmlunit-core-js</artifactId>
89+
<version>2.10</version>
90+
<!--
91+
<version>2.9-gwt-patched</version>
92+
<scope>system</scope>
93+
<systemPath>${GWT_TOOLS}/lib/htmlunit/htmlunit-2.9/htmlunit-core-js-2.9.jar</systemPath>
94+
-->
95+
</dependency>
96+
97+
<!-- Custom -->
98+
<dependency>
99+
<groupId>com.google.javascript</groupId>
100+
<artifactId>sourcemap</artifactId>
101+
<version>1.0</version>
102+
<scope>system</scope>
103+
<systemPath>${GWT_TOOLS}/lib/jscomp/sourcemap-rebased.jar</systemPath>
104+
</dependency>
60105

106+
<!-- Test -->
61107
<dependency>
62108
<groupId>junit</groupId>
63109
<artifactId>junit</artifactId>

0 commit comments

Comments
 (0)