Compare commits
1 Commits
master
...
Feature/26
Author | SHA1 | Date |
---|---|---|
Ahmed Salah Tawfik Ibrahim | 3e226d5011 |
|
@ -7,6 +7,7 @@ This project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.htm
|
|||
## [v1.6.2] - 2022-07-12
|
||||
|
||||
- Ported to git and GWT 2.8.2
|
||||
- Removed social networking library dependency #26527
|
||||
|
||||
## [v1.5.0] - 2017-11-29"
|
||||
|
||||
|
|
7
pom.xml
7
pom.xml
|
@ -91,10 +91,11 @@
|
|||
<artifactId>xml-apis</artifactId>
|
||||
<version>2.6.2</version>
|
||||
</dependency>
|
||||
<!-- should be provided -->
|
||||
<dependency>
|
||||
<groupId>org.gcube.portal</groupId>
|
||||
<artifactId>social-networking-library</artifactId>
|
||||
<scope>provided</scope>
|
||||
<groupId>org.gcube.social-networking</groupId>
|
||||
<artifactId>social-service-model</artifactId>
|
||||
<version>[1.2.0-SNAPSHOT, 2.0.0)</version>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>com.google</groupId>
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
package org.gcube.portlets.widgets.inviteswidget.client;
|
||||
|
||||
import org.gcube.portal.databook.shared.InviteOperationResult;
|
||||
import org.gcube.social_networking.socialnetworking.model.shared.InviteOperationResult;
|
||||
|
||||
import com.google.gwt.user.client.rpc.RemoteService;
|
||||
import com.google.gwt.user.client.rpc.RemoteServiceRelativePath;
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
package org.gcube.portlets.widgets.inviteswidget.client;
|
||||
|
||||
import org.gcube.portal.databook.shared.InviteOperationResult;
|
||||
import org.gcube.social_networking.socialnetworking.model.shared.InviteOperationResult;
|
||||
|
||||
import com.google.gwt.user.client.rpc.AsyncCallback;
|
||||
|
||||
|
|
|
@ -3,7 +3,7 @@
|
|||
*/
|
||||
package org.gcube.portlets.widgets.inviteswidget.client.ui;
|
||||
|
||||
import org.gcube.portal.databook.shared.InviteOperationResult;
|
||||
import org.gcube.social_networking.socialnetworking.model.shared.InviteOperationResult;
|
||||
import org.gcube.portlets.widgets.inviteswidget.client.InviteService;
|
||||
import org.gcube.portlets.widgets.inviteswidget.client.InviteServiceAsync;
|
||||
import org.gcube.portlets.widgets.inviteswidget.client.validation.FormView;
|
||||
|
|
|
@ -4,7 +4,7 @@ package org.gcube.portlets.widgets.inviteswidget.server;
|
|||
import java.util.List;
|
||||
|
||||
import org.gcube.common.portal.PortalContext;
|
||||
import org.gcube.portal.databook.shared.InviteOperationResult;
|
||||
import org.gcube.social_networking.socialnetworking.model.shared.InviteOperationResult;
|
||||
import org.gcube.portal.invites.InvitesManager;
|
||||
import org.gcube.portlets.widgets.inviteswidget.client.InviteService;
|
||||
import org.gcube.vomanagement.usermanagement.GroupManager;
|
||||
|
|
|
@ -7,7 +7,7 @@
|
|||
|
||||
<!-- Other module inherits -->
|
||||
<inherits name="org.jsonmaker.gwt.Gwt_jsonmaker" />
|
||||
<inherits name='org.gcube.portal.databook.GCubeSocialNetworking' />
|
||||
<inherits name='org.gcube.social_networking.socialnetworking.model.GCubeSocialNetworking' />
|
||||
|
||||
<!-- Specify the app entry point class. -->
|
||||
<entry-point
|
||||
|
|
Loading…
Reference in New Issue