Skip to content
Snippets Groups Projects
Commit 34f871ad authored by Ferreira Pires, Luis (UT-EEMCS)'s avatar Ferreira Pires, Luis (UT-EEMCS)
Browse files

Merged fixes to get it working with Java 21 and the most recent versions of the plugins.

parent 956a6889
No related branches found
No related tags found
No related merge requests found
Pipeline #141639 failed
...@@ -5,7 +5,7 @@ plugins { ...@@ -5,7 +5,7 @@ plugins {
} }
group = 'nl.utwente.soa' group = 'nl.utwente.soa'
version = '0.0.1-SNAPSHOT' version = '0.0.1'
repositories { repositories {
mavenCentral() mavenCentral()
......
distributionBase=GRADLE_USER_HOME distributionBase=GRADLE_USER_HOME
distributionPath=wrapper/dists distributionPath=wrapper/dists
<<<<<<< HEAD
distributionUrl=https\://services.gradle.org/distributions/gradle-8.12-bin.zip distributionUrl=https\://services.gradle.org/distributions/gradle-8.12-bin.zip
=======
distributionUrl=https\://services.gradle.org/distributions/gradle-8.6-bin.zip
>>>>>>> d8c5d2041743498991a5e1d2c6fbd928a38be9f9
networkTimeout=10000 networkTimeout=10000
validateDistributionUrl=true validateDistributionUrl=true
zipStoreBase=GRADLE_USER_HOME zipStoreBase=GRADLE_USER_HOME
......
package nl.utwente.soa.sampleWebapplication.services; package nl.utwente.soa.sampleWebapplication.services;
import jakarta.websocket.EncodeException; import jakarta.websocket.EncodeException;
<<<<<<< HEAD
=======
>>>>>>> d8c5d2041743498991a5e1d2c6fbd928a38be9f9
import java.io.IOException; import java.io.IOException;
public interface EchoProxyService { public interface EchoProxyService {
......
package nl.utwente.soa.sampleWebapplication.web; package nl.utwente.soa.sampleWebapplication.web;
import jakarta.websocket.EncodeException;
import nl.utwente.soa.sampleWebapplication.services.EchoProxyService; import nl.utwente.soa.sampleWebapplication.services.EchoProxyService;
import org.springframework.beans.factory.annotation.Autowired; import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.beans.factory.annotation.Qualifier; import org.springframework.beans.factory.annotation.Qualifier;
...@@ -11,10 +10,7 @@ import org.springframework.web.bind.annotation.ModelAttribute; ...@@ -11,10 +10,7 @@ import org.springframework.web.bind.annotation.ModelAttribute;
import org.springframework.web.bind.annotation.RequestMapping; import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.RequestMethod; import org.springframework.web.bind.annotation.RequestMethod;
<<<<<<< HEAD
import jakarta.websocket.EncodeException; import jakarta.websocket.EncodeException;
=======
>>>>>>> d8c5d2041743498991a5e1d2c6fbd928a38be9f9
import java.io.IOException; import java.io.IOException;
@Controller @Controller
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment