diff --git a/build.gradle b/build.gradle index 841dd55..e2a06be 100644 --- a/build.gradle +++ b/build.gradle @@ -58,6 +58,9 @@ dependencies { compile group: 'io.springfox', name: 'springfox-swagger-ui', version: '2.0.2' + // https://mvnrepository.com/artifact/com.mashape.unirest/unirest-java + compile group: 'com.mashape.unirest', name: 'unirest-java', version: '1.3.1' + } node { diff --git a/frontend/quasar.conf.js b/frontend/quasar.conf.js index 4df0238..7e353ec 100644 --- a/frontend/quasar.conf.js +++ b/frontend/quasar.conf.js @@ -111,12 +111,12 @@ module.exports = function (ctx) { ? { // Base URL for API-Calls: DEV API: JSON.stringify('http://localhost:8080'), // API: JSON.stringify('https://seserver.se.hs-heilbronn.de:8443/buga19geocaching'), - USER_API: JSON.stringify('https://seserver.se.hs-heilbronn.de:8443/buga19usermanagement') + USER_API: JSON.stringify('https://seserver.se.hs-heilbronn.de:9443/buga19usermanagement') } : { // Base URL for API-Calls: PRODUCTION (build) API: JSON.stringify('http://localhost:8080'), //API: JSON.stringify('https://seserver.se.hs-heilbronn.de:8443/buga19geocaching'), - USER_API: JSON.stringify('https://seserver.se.hs-heilbronn.de:8443/buga19usermanagement') + USER_API: JSON.stringify('https://seserver.se.hs-heilbronn.de:9443/buga19usermanagement') } }, diff --git a/frontend/src/pages/CacheStart.vue b/frontend/src/pages/CacheStart.vue index 635b544..2973271 100644 --- a/frontend/src/pages/CacheStart.vue +++ b/frontend/src/pages/CacheStart.vue @@ -1,11 +1,11 @@