Compare commits

...

2 Commits

4 changed files with 7 additions and 5 deletions

View File

@ -7,6 +7,7 @@ This project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.htm
## [v2.4.0] - 2022-11-14 ## [v2.4.0] - 2022-11-14
- Ported to Java 11 and GWT 2.10 - Ported to Java 11 and GWT 2.10
- [#26519] Removed Social Networking Library Dependency
## [v2.3.0] - 2018-10-22 ## [v2.3.0] - 2018-10-22

View File

@ -77,9 +77,10 @@
<artifactId>portal-manager</artifactId> <artifactId>portal-manager</artifactId>
</dependency> </dependency>
<dependency> <dependency>
<groupId>org.gcube.portal</groupId> <!-- should be provided -->
<artifactId>social-networking-library</artifactId> <groupId>org.gcube.social-networking</groupId>
<scope>provided</scope> <artifactId>social-service-model</artifactId>
<version>[1.2.0-SNAPSHOT, 2.0.0)</version>
</dependency> </dependency>
<dependency> <dependency>
<groupId>org.gcube.dvos</groupId> <groupId>org.gcube.dvos</groupId>

View File

@ -3,7 +3,7 @@ package org.gcube.portlets.user.questions.client;
import java.util.ArrayList; import java.util.ArrayList;
import org.gcube.common.portal.GCubePortalConstants; 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.client.resources.Images;
import org.gcube.portlets.user.questions.shared.GroupDTO; import org.gcube.portlets.user.questions.shared.GroupDTO;

View File

@ -8,7 +8,7 @@ import java.util.Set;
import org.apache.commons.codec.binary.Base64; import org.apache.commons.codec.binary.Base64;
import org.gcube.common.portal.GCubePortalConstants; import org.gcube.common.portal.GCubePortalConstants;
import org.gcube.common.portal.PortalContext; 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.client.QuestionsService;
import org.gcube.portlets.user.questions.shared.GroupDTO; import org.gcube.portlets.user.questions.shared.GroupDTO;
import org.gcube.vomanagement.usermanagement.impl.LiferayGroupManager; import org.gcube.vomanagement.usermanagement.impl.LiferayGroupManager;