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

Commit f777210

Browse files
committed
gwt-safecss
1 parent 2a45ed0 commit f777210

File tree

10 files changed

+115
-0
lines changed

10 files changed

+115
-0
lines changed

user/gwt-safecss-client/pom.xml

Lines changed: 69 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,69 @@
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-safecss-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/safecss/super</targetPath>
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-safehtml-server</artifactId>
46+
<version>${project.version}</version>
47+
</dependency>
48+
<dependency>
49+
<groupId>com.google.gwt.user</groupId>
50+
<artifactId>gwt-safehtml-server</artifactId>
51+
<version>${project.version}</version>
52+
<type>java-source</type>
53+
</dependency>
54+
<dependency>
55+
<groupId>com.google.gwt.user</groupId>
56+
<artifactId>gwt-regexp-client</artifactId>
57+
<version>${project.version}</version>
58+
</dependency>
59+
<dependency>
60+
<groupId>com.google.gwt.user</groupId>
61+
<artifactId>gwt-http</artifactId>
62+
<version>${project.version}</version>
63+
</dependency>
64+
<dependency>
65+
<groupId>com.google.jsilver</groupId>
66+
<artifactId>streamhtmlparser</artifactId>
67+
</dependency>
68+
</dependencies>
69+
</project>

user/gwt-safecss-server/pom.xml

Lines changed: 44 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,44 @@
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-safecss-server</artifactId>
13+
14+
<build>
15+
<plugins>
16+
<plugin>
17+
<artifactId>maven-source-plugin</artifactId>
18+
</plugin>
19+
</plugins>
20+
</build>
21+
22+
<dependencies>
23+
<!-- TODO: split gwt-dom with server-only classes -->
24+
<dependency>
25+
<groupId>com.google.gwt.user</groupId>
26+
<artifactId>gwt-dom</artifactId>
27+
<version>${project.version}</version>
28+
</dependency>
29+
<dependency>
30+
<groupId>com.google.gwt.user</groupId>
31+
<artifactId>gwt-safehtml-server</artifactId>
32+
<version>${project.version}</version>
33+
</dependency>
34+
<dependency>
35+
<groupId>com.google.guava</groupId>
36+
<artifactId>guava</artifactId>
37+
</dependency>
38+
39+
<dependency>
40+
<groupId>junit</groupId>
41+
<artifactId>junit</artifactId>
42+
</dependency>
43+
</dependencies>
44+
</project>

user/pom.xml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -106,6 +106,8 @@
106106
<module>gwt-rpc-shared</module>
107107
<module>gwt-rpc-api</module>
108108
<module>gwt-dom</module>
109+
<module>gwt-safecss-server</module>
110+
<module>gwt-safecss-client</module>
109111
<module>gwt-safehtml-client</module>
110112
</modules>
111113
</project>

0 commit comments

Comments
 (0)