Changed name of war artifacts

This commit is contained in:
Maximilian Leopold 2019-05-27 15:55:29 +02:00
parent 93d4c664b9
commit 113dbfcc32
3 changed files with 8 additions and 1 deletions

View File

@ -15,6 +15,11 @@ repositories {
mavenCentral()
}
bootWar{
baseName = 'buga19geocachingbackend'
archiveName 'buga19geocachingbackend.war'
}
dependencies {
compile project('labswp_2019_sose_geocaching_frontend')
//Java Spring

View File

@ -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'

View File

@ -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')
}
},