Skip to content
This repository was archived by the owner on May 9, 2019. It is now read-only.

Using Common Framework with GWT

Ari Kamen edited this page Sep 2, 2015 · 5 revisions

You can use anything in any package under soleng.framework.core from GWT clients if you do the following: Edit pom.xml. In addition to the normal common-framework , you also need a second common-framework dependency that specifies sources.

For example:

<dependency>
<groupId>com.blackducksoftware.soleng</groupId>
<artifactId>common-framework</artifactId>
<version>1.5.0</version>
</dependency>
 <!-- also need the common-framework sources for the GWT-client code -->
<dependency>
<groupId>com.blackducksoftware.soleng</groupId>
<artifactId>common-framework</artifactId>
<version>1.5.0</version>
<classifier>sources</classifier>  <!-- THIS GETS THE SOURCE CODE -->
</dependency>

Edit your .gwt.xml file and add:

<!--  Common Framework -->
<inherits name='com.blackducksoftware.tools.commonframework.core'/>

Clone this wiki locally