maven parent 1.2.0
This commit is contained in:
parent
88d35fce91
commit
5a2f00813b
|
@ -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
|
||||
|
||||
|
|
2
pom.xml
2
pom.xml
|
@ -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>
|
||||
|
|
|
@ -16,7 +16,7 @@ public class GroupsCache {
|
|||
*/
|
||||
private GroupsCache(){
|
||||
|
||||
logger.info("Building cache");
|
||||
logger.debug("Building cache");
|
||||
CachesManager.getCache(CachesManager.GROUPS_CACHE);
|
||||
|
||||
}
|
||||
|
|
|
@ -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;
|
||||
}
|
||||
|
|
|
@ -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();
|
||||
|
|
Loading…
Reference in New Issue