You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
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'/>