diff --git a/CHANGELOG.md b/CHANGELOG.md index 9d16898..631c318 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -7,6 +7,7 @@ This project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.htm ## [v2.4.0] - 2022-11-14 - Ported to Java 11 and GWT 2.10 +- [#26519] Removed Social Networking Library Dependency ## [v2.3.0] - 2018-10-22 diff --git a/pom.xml b/pom.xml index fa984e9..2caccbf 100644 --- a/pom.xml +++ b/pom.xml @@ -77,9 +77,9 @@ portal-manager - org.gcube.portal - social-networking-library - provided + org.gcube.social-networking + social-service-model + [1.2.0-SNAPSHOT, 2.0.0) org.gcube.dvos diff --git a/src/main/java/org/gcube/portlets/user/questions/client/GroupsPanel.java b/src/main/java/org/gcube/portlets/user/questions/client/GroupsPanel.java index a5bef1e..e5c9aea 100644 --- a/src/main/java/org/gcube/portlets/user/questions/client/GroupsPanel.java +++ b/src/main/java/org/gcube/portlets/user/questions/client/GroupsPanel.java @@ -3,7 +3,7 @@ package org.gcube.portlets.user.questions.client; import java.util.ArrayList; import org.gcube.common.portal.GCubePortalConstants; -import org.gcube.portal.databook.client.GCubeSocialNetworking; +import org.gcube.social_networking.socialnetworking.model.client.GCubeSocialNetworking; import org.gcube.portlets.user.questions.client.resources.Images; import org.gcube.portlets.user.questions.shared.GroupDTO; diff --git a/src/main/java/org/gcube/portlets/user/questions/server/QuestionsServiceImpl.java b/src/main/java/org/gcube/portlets/user/questions/server/QuestionsServiceImpl.java index 636e9bd..7c0a966 100644 --- a/src/main/java/org/gcube/portlets/user/questions/server/QuestionsServiceImpl.java +++ b/src/main/java/org/gcube/portlets/user/questions/server/QuestionsServiceImpl.java @@ -8,7 +8,7 @@ import java.util.Set; import org.apache.commons.codec.binary.Base64; import org.gcube.common.portal.GCubePortalConstants; import org.gcube.common.portal.PortalContext; -import org.gcube.portal.databook.client.GCubeSocialNetworking; +import org.gcube.social_networking.socialnetworking.model.client.GCubeSocialNetworking; import org.gcube.portlets.user.questions.client.QuestionsService; import org.gcube.portlets.user.questions.shared.GroupDTO; import org.gcube.vomanagement.usermanagement.impl.LiferayGroupManager;