removed gcf dep

git-svn-id: http://svn.research-infrastructures.eu/public/d4science/gcube/trunk/portlets/user/news-feed@82360 82a268e6-3cf1-43bd-a215-b396298e98cf
This commit is contained in:
Massimiliano Assante 2013-10-03 10:36:20 +00:00
parent 84992c9a6f
commit 9017275c1a
3 changed files with 19 additions and 17 deletions

25
pom.xml
View File

@ -68,14 +68,19 @@
<scope>provided</scope> <scope>provided</scope>
</dependency> </dependency>
<dependency> <dependency>
<groupId>org.gcube.portal</groupId> <groupId>org.gcube.applicationsupportlayer</groupId>
<artifactId>social-networking-library</artifactId> <artifactId>aslcore</artifactId>
<version>[1.0.0-SNAPSHOT, 2.0.0-SNAPSHOT)</version>
<scope>provided</scope> <scope>provided</scope>
</dependency> </dependency>
<dependency> <dependency>
<groupId>org.gcube.core</groupId> <groupId>org.gcube.applicationsupportlayer</groupId>
<artifactId>gcf</artifactId> <artifactId>aslsocial</artifactId>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>org.gcube.portal</groupId>
<artifactId>social-networking-library</artifactId>
<version>[1.0.0-SNAPSHOT, 2.0.0-SNAPSHOT)</version>
<scope>provided</scope> <scope>provided</scope>
</dependency> </dependency>
<dependency> <dependency>
@ -100,14 +105,8 @@
<scope>provided</scope> <scope>provided</scope>
</dependency> </dependency>
<dependency> <dependency>
<groupId>org.gcube.applicationsupportlayer</groupId> <groupId>org.gcube.dvos</groupId>
<artifactId>aslsocial</artifactId> <artifactId>usermanagement-core</artifactId>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>org.gcube.applicationsupportlayer</groupId>
<artifactId>aslcore</artifactId>
<scope>provided</scope>
</dependency> </dependency>
<dependency> <dependency>
<groupId>com.google</groupId> <groupId>com.google</groupId>

View File

@ -4,11 +4,12 @@ import java.util.HashSet;
import java.util.List; import java.util.List;
import org.gcube.applicationsupportlayer.social.NotificationsManager; import org.gcube.applicationsupportlayer.social.NotificationsManager;
import org.gcube.common.core.utils.logging.GCUBEClientLog;
import org.gcube.portal.databook.server.DatabookStore; import org.gcube.portal.databook.server.DatabookStore;
import org.gcube.portal.databook.shared.Comment; import org.gcube.portal.databook.shared.Comment;
import org.gcube.vomanagement.usermanagement.UserManager; import org.gcube.vomanagement.usermanagement.UserManager;
import org.gcube.vomanagement.usermanagement.impl.liferay.LiferayUserManager; import org.gcube.vomanagement.usermanagement.impl.liferay.LiferayUserManager;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
/** /**
* *
@ -16,7 +17,8 @@ import org.gcube.vomanagement.usermanagement.impl.liferay.LiferayUserManager;
* *
*/ */
public class CommentNotificationsThread implements Runnable { public class CommentNotificationsThread implements Runnable {
private static GCUBEClientLog _log = new GCUBEClientLog(CommentNotificationsThread.class);
private static final Logger _log = LoggerFactory.getLogger(CommentNotificationsThread.class);
String commenterUserId; String commenterUserId;
String commentedFeedId; String commentedFeedId;

View File

@ -3,8 +3,9 @@ package org.gcube.portlets.user.newsfeed.server;
import java.util.ArrayList; import java.util.ArrayList;
import org.gcube.applicationsupportlayer.social.NotificationsManager; import org.gcube.applicationsupportlayer.social.NotificationsManager;
import org.gcube.common.core.utils.logging.GCUBEClientLog;
import org.gcube.portal.databook.shared.Like; import org.gcube.portal.databook.shared.Like;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
/** /**
* *
@ -12,7 +13,7 @@ import org.gcube.portal.databook.shared.Like;
* *
*/ */
public class LikeNotificationsThread implements Runnable { public class LikeNotificationsThread implements Runnable {
private static GCUBEClientLog _log = new GCUBEClientLog(LikeNotificationsThread.class); private static final Logger _log = LoggerFactory.getLogger(LikeNotificationsThread.class);
private String commentText; private String commentText;
private NotificationsManager nm; private NotificationsManager nm;