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

Commit b2f76a2

Browse files
committed
WIP
1 parent 3d6cdf9 commit b2f76a2

Some content is hidden

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

63 files changed

+204
-23
lines changed

.gitignore

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
target/
2+

dev/gwt-jsni-parser/pom.xml

Lines changed: 36 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,36 @@
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-jsni-parser</artifactId>
14+
15+
<licenses>
16+
<license>
17+
<name>Netscape Public License Version 1.1</name>
18+
<url>http://www.mozilla.org/NPL/</url>
19+
</license>
20+
<license>
21+
<name>GNU Public License</name>
22+
</license>
23+
</licenses>
24+
25+
<dependencies>
26+
<dependency>
27+
<groupId>com.google.guava</groupId>
28+
<artifactId>guava</artifactId>
29+
</dependency>
30+
31+
<dependency>
32+
<groupId>junit</groupId>
33+
<artifactId>junit</artifactId>
34+
</dependency>
35+
</dependencies>
36+
</project>

dev/pom.xml

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

maven/poms/gwt/pom-template.xml

Lines changed: 0 additions & 23 deletions
This file was deleted.

pom.xml

Lines changed: 69 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,69 @@
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>org.sonatype.oss</groupId>
9+
<artifactId>oss-parent</artifactId>
10+
<version>7</version>
11+
</parent>
12+
13+
<groupId>com.google.gwt</groupId>
14+
<artifactId>gwt</artifactId>
15+
<version>2.6.0-SNAPSHOT</version>
16+
<packaging>pom</packaging>
17+
18+
<name>Google Web Toolkit</name>
19+
<url>http://code.google.com/webtoolkit/</url>
20+
<licenses>
21+
<license>
22+
<name>Google Web Toolkit Terms</name>
23+
<url>http://code.google.com/webtoolkit/terms.html</url>
24+
</license>
25+
</licenses>
26+
27+
<properties>
28+
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
29+
</properties>
30+
31+
<modules>
32+
<module>util</module>
33+
<module>dev</module>
34+
</modules>
35+
36+
<build>
37+
<pluginManagement>
38+
<plugins>
39+
<plugin>
40+
<artifactId>maven-compiler-plugin</artifactId>
41+
<version>2.5.1</version>
42+
<configuration>
43+
<source>1.6</source>
44+
<target>1.6</target>
45+
</configuration>
46+
</plugin>
47+
</plugins>
48+
</pluginManagement>
49+
</build>
50+
51+
<dependencyManagement>
52+
<dependencies>
53+
<dependency>
54+
<groupId>com.google.guava</groupId>
55+
<artifactId>guava</artifactId>
56+
<version>10.0.1-gwt-rebased</version>
57+
<scope>system</scope>
58+
<systemPath>${GWT_TOOLS}/lib/guava/guava-10.0.1/guava-10.0.1-rebased.jar</systemPath>
59+
</dependency>
60+
61+
<dependency>
62+
<groupId>junit</groupId>
63+
<artifactId>junit</artifactId>
64+
<version>4.8.2</version>
65+
<scope>test</scope>
66+
</dependency>
67+
</dependencies>
68+
</dependencyManagement>
69+
</project>

util/gwt-shared/pom.xml

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

util/gwt-tools-api/pom.xml

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
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.util</groupId>
9+
<artifactId>gwt-util-parent</artifactId>
10+
<version>2.6.0-SNAPSHOT</version>
11+
</parent>
12+
13+
<artifactId>gwt-tools-api</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+
</dependencies>
22+
</project>

util/pom.xml

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
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</groupId>
9+
<artifactId>gwt</artifactId>
10+
<version>2.6.0-SNAPSHOT</version>
11+
</parent>
12+
13+
<groupId>com.google.gwt.util</groupId>
14+
<artifactId>gwt-util-parent</artifactId>
15+
<version>2.6.0-SNAPSHOT</version>
16+
<packaging>pom</packaging>
17+
18+
<modules>
19+
<module>gwt-shared</module>
20+
<module>gwt-tools-api</module>
21+
</modules>
22+
</project>

0 commit comments

Comments
 (0)