fixed java version

This commit is contained in:
Ahmed Salah Tawfik Ibrahim 2024-04-17 13:32:53 +02:00
parent 461a50d1f1
commit 5e83765b45
2 changed files with 5 additions and 6 deletions

View File

@ -1,6 +1,6 @@
# Changelog # Changelog
## [v2.0.1] - 2024-04-16 ## [v2.0.1-SNAPSHOT] - 2024-04-16
- fixed dependency versions - fixed dependency versions

View File

@ -12,7 +12,7 @@
<groupId>org.gcube.social-networking</groupId> <groupId>org.gcube.social-networking</groupId>
<artifactId>social-service-client</artifactId> <artifactId>social-service-client</artifactId>
<version>2.0.1</version> <version>2.0.1-SNAPSHOT</version>
<name>social-networking-service-client</name> <name>social-networking-service-client</name>
<packaging>jar</packaging> <packaging>jar</packaging>
<description>The social networking web service client library</description> <description>The social networking web service client library</description>
@ -37,8 +37,7 @@
</dependencyManagement> </dependencyManagement>
<properties> <properties>
<maven.compiler.source>11</maven.compiler.source> <java-version>1.8</java-version>
<maven.compiler.target>11</maven.compiler.target>
<jaxrs.version>2.0.1</jaxrs.version> <jaxrs.version>2.0.1</jaxrs.version>
<distroDirectory>${project.basedir}/distro</distroDirectory> <distroDirectory>${project.basedir}/distro</distroDirectory>
<gCubeSubsystem>social-networking</gCubeSubsystem> <gCubeSubsystem>social-networking</gCubeSubsystem>
@ -157,8 +156,8 @@
<groupId>org.apache.maven.plugins</groupId> <groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId> <artifactId>maven-compiler-plugin</artifactId>
<configuration> <configuration>
<source>11</source> <source>${java_version}</source>
<target>11</target> <target>${java_version}</target>
</configuration> </configuration>
</plugin> </plugin>
<plugin> <plugin>