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

Commit 0aa607e

Browse files
committed
Move flow API to own module (GWT and maven)
1 parent 4188b08 commit 0aa607e

36 files changed

+11543
-470
lines changed

.gitignore

+2-1
Original file line numberDiff line numberDiff line change
@@ -5,9 +5,10 @@ target
55
.idea
66
build.number
77
*.bak
8+
gwt-unitCache
9+
810
build/app/war
911
build/war
10-
build/app/gwt-unitCache/
1112

1213
gui/war/WEB-INF
1314
gui/war/app

bom/pom.xml

+6
Original file line numberDiff line numberDiff line change
@@ -43,6 +43,12 @@
4343
<version>${project.version}</version>
4444
</dependency>
4545

46+
<dependency>
47+
<groupId>org.jboss.as</groupId>
48+
<artifactId>jboss-as-console-flow</artifactId>
49+
<version>${project.version}</version>
50+
</dependency>
51+
4652
<dependency>
4753
<groupId>org.jboss.as</groupId>
4854
<artifactId>console-spi</artifactId>

flow/core/pom.xml

+68
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,68 @@
1+
<!--
2+
~ JBoss, Home of Professional Open Source
3+
~ Copyright 2011 Red Hat Inc. and/or its affiliates and other contributors
4+
~ as indicated by the @author tags. All rights reserved.
5+
~ See the copyright.txt in the distribution for a
6+
~ full listing of individual contributors.
7+
~
8+
~ This copyrighted material is made available to anyone wishing to use,
9+
~ modify, copy, or redistribute it subject to the terms and conditions
10+
~ of the GNU Lesser General Public License, v. 2.1.
11+
~ This program is distributed in the hope that it will be useful, but WITHOUT A
12+
~ WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A
13+
~ PARTICULAR PURPOSE. See the GNU Lesser General Public License for more details.
14+
~ You should have received a copy of the GNU Lesser General Public License,
15+
~ v.2.1 along with this distribution; if not, write to the Free Software
16+
~ Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston,
17+
~ MA 02110-1301, USA.
18+
-->
19+
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
20+
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
21+
<modelVersion>4.0.0</modelVersion>
22+
<name>JBoss 7 - Management Console :: Flow :: Core</name>
23+
<artifactId>jboss-as-console-flow</artifactId>
24+
25+
26+
<parent>
27+
<groupId>org.jboss.as</groupId>
28+
<artifactId>jboss-as-console-flow-parent</artifactId>
29+
<version>1.6.0-SNAPSHOT</version>
30+
<relativePath>../pom.xml</relativePath>
31+
</parent>
32+
33+
34+
<dependencyManagement>
35+
<dependencies>
36+
<dependency>
37+
<groupId>org.jboss.as</groupId>
38+
<artifactId>jboss-as-console-bom</artifactId>
39+
<type>pom</type>
40+
<version>${project.version}</version>
41+
<scope>import</scope>
42+
</dependency>
43+
</dependencies>
44+
</dependencyManagement>
45+
<dependencies>
46+
<dependency>
47+
<groupId>com.google.gwt</groupId>
48+
<artifactId>gwt-user</artifactId>
49+
</dependency>
50+
</dependencies>
51+
52+
53+
<build>
54+
<plugins>
55+
<plugin>
56+
<groupId>org.codehaus.mojo</groupId>
57+
<artifactId>gwt-maven-plugin</artifactId>
58+
<executions>
59+
<execution>
60+
<goals>
61+
<goal>source-jar</goal>
62+
</goals>
63+
</execution>
64+
</executions>
65+
</plugin>
66+
</plugins>
67+
</build>
68+
</project>

gui/src/main/java/org/jboss/gwt/flow/Flow.gwt.xml flow/core/src/main/java/org/jboss/gwt/flow/Flow.gwt.xml

+1-3
Original file line numberDiff line numberDiff line change
@@ -16,8 +16,6 @@
1616
~ Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston,
1717
~ MA 02110-1301, USA.
1818
-->
19-
2019
<module>
21-
<inherits name="com.google.gwt.user.User"/>
22-
<source path="client" />
20+
<inherits name="com.google.gwt.user.User" />
2321
</module>

0 commit comments

Comments
 (0)