commit for release

This commit is contained in:
Lucio Lelii 2024-11-27 12:33:01 +01:00
parent 25a9e4e474
commit 4d1b592ef4
3 changed files with 3 additions and 3 deletions

View File

@ -2,7 +2,7 @@ This project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.htm
# Changelog for org.gcube.data-access.sh-fuse-integration
## [v3.0.0-SNAPSHOT]
## [v3.0.0]
- porting to gcube-bom 4.0.0

View File

@ -4,7 +4,7 @@
<modelVersion>4.0.0</modelVersion>
<groupId>org.gcube.data-access</groupId>
<artifactId>sh-fuse-integration</artifactId>
<version>3.0.0-SNAPSHOT</version>
<version>3.0.0</version>
<name>SHFuseIntegration</name>
<parent>
<artifactId>maven-parent</artifactId>

View File

@ -33,7 +33,7 @@ public class PathUtils {
while (path.substring(path.length() - 1).equals("/")) {
path = path.substring(0, path.length() - 1);
}
return path.substring(path.lastIndexOf("/") + 1);
}