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

Commit c5b809a

Browse files
committed
autobeans
1 parent 538bc0d commit c5b809a

File tree

57 files changed

+133
-0
lines changed

Some content is hidden

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

57 files changed

+133
-0
lines changed

bindery/autobean-gwt/pom.xml

Lines changed: 57 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,57 @@
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-bindery-parent</artifactId>
8+
<groupId>com.google.web.bindery</groupId>
9+
<version>2.6.0-SNAPSHOT</version>
10+
</parent>
11+
12+
<artifactId>autobean-gwt</artifactId>
13+
14+
<build>
15+
<plugins>
16+
<plugin>
17+
<groupId>com.google.gwt.maven</groupId>
18+
<artifactId>gwt-maven-plugin</artifactId>
19+
<configuration>
20+
<moduleName>com.google.web.bindery.autobean.AutoBean</moduleName>
21+
<skipModule>true</skipModule>
22+
</configuration>
23+
</plugin>
24+
</plugins>
25+
</build>
26+
27+
<dependencies>
28+
<dependency>
29+
<groupId>com.google.web.bindery</groupId>
30+
<artifactId>autobean-shared</artifactId>
31+
<version>${project.version}</version>
32+
</dependency>
33+
<dependency>
34+
<groupId>com.google.web.bindery</groupId>
35+
<artifactId>autobean-shared</artifactId>
36+
<version>${project.version}</version>
37+
<type>java-source</type>
38+
</dependency>
39+
<!-- the generator needs it -->
40+
<dependency>
41+
<groupId>com.google.web.bindery</groupId>
42+
<artifactId>autobean-vm</artifactId>
43+
<version>${project.version}</version>
44+
</dependency>
45+
<dependency>
46+
<groupId>com.google.gwt.user</groupId>
47+
<artifactId>gwt-core-client</artifactId>
48+
<version>${project.version}</version>
49+
</dependency>
50+
<dependency>
51+
<groupId>com.google.gwt.user</groupId>
52+
<artifactId>gwt-junit</artifactId>
53+
<version>${project.version}</version>
54+
<scope>test</scope>
55+
</dependency>
56+
</dependencies>
57+
</project>

bindery/autobean-shared/pom.xml

Lines changed: 38 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,38 @@
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-bindery-parent</artifactId>
8+
<groupId>com.google.web.bindery</groupId>
9+
<version>2.6.0-SNAPSHOT</version>
10+
</parent>
11+
12+
<artifactId>autobean-shared</artifactId>
13+
14+
<build>
15+
<plugins>
16+
<!-- Build and attach sources for use in autobean-gwt -->
17+
<plugin>
18+
<artifactId>maven-source-plugin</artifactId>
19+
</plugin>
20+
</plugins>
21+
</build>
22+
23+
<dependencies>
24+
<dependency>
25+
<groupId>com.google.gwt.user</groupId>
26+
<artifactId>gwt-core-shared</artifactId>
27+
<version>${project.version}</version>
28+
</dependency>
29+
<dependency>
30+
<groupId>org.json</groupId>
31+
<artifactId>json</artifactId>
32+
</dependency>
33+
<dependency>
34+
<groupId>junit</groupId>
35+
<artifactId>junit</artifactId>
36+
</dependency>
37+
</dependencies>
38+
</project>

bindery/autobean-vm/pom.xml

Lines changed: 30 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,30 @@
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-bindery-parent</artifactId>
8+
<groupId>com.google.web.bindery</groupId>
9+
<version>2.6.0-SNAPSHOT</version>
10+
</parent>
11+
12+
<artifactId>autobean-vm</artifactId>
13+
14+
<build>
15+
<plugins>
16+
<!-- Build and attach sources for use in autobean-gwt -->
17+
<plugin>
18+
<artifactId>maven-source-plugin</artifactId>
19+
</plugin>
20+
</plugins>
21+
</build>
22+
23+
<dependencies>
24+
<dependency>
25+
<groupId>com.google.web.bindery</groupId>
26+
<artifactId>autobean-shared</artifactId>
27+
<version>${project.version}</version>
28+
</dependency>
29+
</dependencies>
30+
</project>

bindery/pom.xml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -47,5 +47,8 @@
4747
<modules>
4848
<module>event</module>
4949
<module>event-gwt</module>
50+
<module>autobean-shared</module>
51+
<module>autobean-vm</module>
52+
<module>autobean-gwt</module>
5053
</modules>
5154
</project>

pom.xml

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -114,6 +114,11 @@
114114
<artifactId>sac</artifactId>
115115
<version>1.3</version>
116116
</dependency>
117+
<dependency>
118+
<groupId>org.json</groupId>
119+
<artifactId>json</artifactId>
120+
<version>20090211</version>
121+
</dependency>
117122

118123
<!-- Rebased -->
119124
<dependency>

0 commit comments

Comments
 (0)