maven parent 1.2.0

This commit is contained in:
Ahmed Salah Tawfik Ibrahim 2024-05-17 11:16:13 +02:00
parent 88d35fce91
commit 5a2f00813b
5 changed files with 6 additions and 5 deletions

View File

@ -3,6 +3,7 @@
## [v3.0.1-SNAPSHOT] - 2023-04-22
- Feature 27286: removed noisy logs
- Bug 27218: advance social networking library version
## [v3.0.0-SNAPSHOT] - 2023-12-06

View File

@ -6,7 +6,7 @@
<parent>
<groupId>org.gcube.tools</groupId>
<artifactId>maven-parent</artifactId>
<version>1.1.0</version>
<version>1.2.0</version>
</parent>
<groupId>org.gcube.portal</groupId>

View File

@ -16,7 +16,7 @@ public class GroupsCache {
*/
private GroupsCache(){
logger.info("Building cache");
logger.debug("Building cache");
CachesManager.getCache(CachesManager.GROUPS_CACHE);
}

View File

@ -55,7 +55,7 @@ public class SocialNetworkingSiteFinder {
// read fallback properties
try{
logger.info("Trying to read config.properties");
logger.debug("Trying to read config.properties");
ClassLoader classLoader = Thread.currentThread().getContextClassLoader();
InputStream input = classLoader.getResourceAsStream("config.properties");
Properties properties = new Properties();
@ -140,7 +140,7 @@ public class SocialNetworkingSiteFinder {
if(gatewayVirtualGroups != null && !gatewayVirtualGroups.isEmpty()){
for (VirtualGroup gatewayVirtualGroup : gatewayVirtualGroups) {
if(virtualGroupsOfGroup.contains(gatewayVirtualGroup)){
logger.info("Matching gateway for scope " + scope + " is " + gateway);
logger.debug("Matching gateway for scope " + scope + " is " + gateway);
matchingGateway = gateway;
break ext_loop;
}

View File

@ -33,7 +33,7 @@ public class UsersCache{
new Thread(){
public void run() {
try{
logger.info("Fetching users and putting them into cache");
logger.debug("Fetching users and putting them into cache");
Ehcache usersCache = CachesManager.getCache(CachesManager.USERS_CACHE);
GroupManager groupManager = GroupManagerWSBuilder.getInstance().getGroupManager();
UserManager userManager = UserManagerWSBuilder.getInstance().getUserManager();