diff --git a/build.gradle b/build.gradle index ba127e3..3dc4e7d 100644 --- a/build.gradle +++ b/build.gradle @@ -15,6 +15,11 @@ repositories { mavenCentral() } +bootWar{ + baseName = 'buga19geocachingbackend' + archiveName 'buga19geocachingbackend.war' +} + dependencies { compile project('labswp_2019_sose_geocaching_frontend') //Java Spring diff --git a/labswp_2019_sose_geocaching_frontend/build.gradle b/labswp_2019_sose_geocaching_frontend/build.gradle index 001bc0d..0965012 100644 --- a/labswp_2019_sose_geocaching_frontend/build.gradle +++ b/labswp_2019_sose_geocaching_frontend/build.gradle @@ -18,6 +18,8 @@ war { from 'web/' // adds a file-set to the root of the archive webInf { from 'WEB-INF' } // adds a file-set to the WEB-INF dir. webXml = file('WEB-INF/web.xml') // copies a file to WEB-INF/web.xml + baseName = 'buga19geocaching' + archiveName 'buga19geocaching.war' } buildDir '../build' diff --git a/labswp_2019_sose_geocaching_frontend/frontend/quasar.conf.js b/labswp_2019_sose_geocaching_frontend/frontend/quasar.conf.js index 54496d0..bfe65e3 100644 --- a/labswp_2019_sose_geocaching_frontend/frontend/quasar.conf.js +++ b/labswp_2019_sose_geocaching_frontend/frontend/quasar.conf.js @@ -120,7 +120,7 @@ module.exports = function (ctx) { } : { // Base URL for API-Calls: PRODUCTION (build) //API: JSON.stringify('http://localhost:8080'), - API: JSON.stringify('https://seserver.se.hs-heilbronn.de:9443/buga19geocaching'), + API: JSON.stringify('https://seserver.se.hs-heilbronn.de:9443/buga19geocachingbackend'), USER_API: JSON.stringify('https://seserver.se.hs-heilbronn.de:9443/buga19usermanagement') } },