Skip to content

Commit b1109fd

Browse files
mareknovotnysgilda
authored andcommitted
fixed helloworld-gwt qs
1 parent 5e001f9 commit b1109fd

File tree

2 files changed

+14
-7
lines changed

2 files changed

+14
-7
lines changed

helloworld-gwt/pom.xml

Lines changed: 13 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,8 @@
4646
<version.jboss.maven.plugin>7.4.Final</version.jboss.maven.plugin>
4747

4848
<!-- Define the version of the JBoss BOMs we want to import to specify tested stacks. -->
49-
<version.jboss.bom.wfk>2.5.0-build-2</version.jboss.bom.wfk>
49+
<version.org.jboss.spec.jboss.javaee.6.0>3.0.2.Final-redhat-7</version.org.jboss.spec.jboss.javaee.6.0>
50+
<version.com.google.gwt>2.5.1</version.com.google.gwt>
5051

5152
<!-- other plugin versions -->
5253
<version.org.codehaus.mojo.gwt.maven.plugin>2.5.1</version.org.codehaus.mojo.gwt.maven.plugin>
@@ -66,13 +67,19 @@
6667
read this as the JBoss stack of the Java EE Web Profile 6 APIs).
6768
You can actually use this stack with any version of JBoss that implements Java EE 6, not
6869
just JBoss EAP 6! -->
69-
<dependency>
70-
<groupId>org.jboss.bom.wfk</groupId>
71-
<artifactId>jboss-javaee-6.0-with-errai</artifactId>
72-
<version>${version.jboss.bom.wfk}</version>
70+
<dependency>
71+
<groupId>org.jboss.spec</groupId>
72+
<artifactId>jboss-javaee-6.0</artifactId>
73+
<version>${version.org.jboss.spec.jboss.javaee.6.0}</version>
7374
<type>pom</type>
7475
<scope>import</scope>
75-
</dependency>
76+
</dependency>
77+
<!-- Google Web Toolkit (GWT) -->
78+
<dependency>
79+
<groupId>com.google.gwt</groupId>
80+
<artifactId>gwt-user</artifactId>
81+
<version>${version.com.google.gwt}</version>
82+
</dependency>
7683
</dependencies>
7784
</dependencyManagement>
7885

pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@
5252

5353
<version.jboss.maven.plugin>7.4.Final</version.jboss.maven.plugin>
5454

55-
<!-- Define the version of the JBoss BOMs we want to import to specify tested stacks. -->
55+
<!-- Define the version of the JBoss BOMs we want to import to specify tested stacks. -->
5656
<version.jboss.bom.wfk>2.5.0-build-2</version.jboss.bom.wfk>
5757
<version.jboss.bom.eap>6.2.0.GA</version.jboss.bom.eap>
5858

0 commit comments

Comments
 (0)