Initialer commit
This commit is contained in:
17
localdeploy/.project
Normal file
17
localdeploy/.project
Normal file
@@ -0,0 +1,17 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<projectDescription>
|
||||
<name>localdeploy</name>
|
||||
<comment></comment>
|
||||
<projects>
|
||||
</projects>
|
||||
<buildSpec>
|
||||
<buildCommand>
|
||||
<name>org.eclipse.buildship.core.gradleprojectbuilder</name>
|
||||
<arguments>
|
||||
</arguments>
|
||||
</buildCommand>
|
||||
</buildSpec>
|
||||
<natures>
|
||||
<nature>org.eclipse.buildship.core.gradleprojectnature</nature>
|
||||
</natures>
|
||||
</projectDescription>
|
||||
2
localdeploy/.settings/org.eclipse.buildship.core.prefs
Normal file
2
localdeploy/.settings/org.eclipse.buildship.core.prefs
Normal file
@@ -0,0 +1,2 @@
|
||||
connection.project.dir=..
|
||||
eclipse.preferences.version=1
|
||||
1
localdeploy/build.gradle
Normal file
1
localdeploy/build.gradle
Normal file
@@ -0,0 +1 @@
|
||||
apply from: "localdeploy.gradle"
|
||||
1
localdeploy/localdeploy.bat
Normal file
1
localdeploy/localdeploy.bat
Normal file
@@ -0,0 +1 @@
|
||||
call gradlew localdeploy:deploy
|
||||
28
localdeploy/localdeploy.gradle
Normal file
28
localdeploy/localdeploy.gradle
Normal file
@@ -0,0 +1,28 @@
|
||||
def wildflyHome = project.hasProperty('wildflyHome') ? project.getProperty('wildflyHome') : (System.getenv('JBOSS_HOME') != null ? System.getenv('JBOSS_HOME').replaceAll('\\\\', '/') : '')
|
||||
|
||||
ext {
|
||||
println wildflyHome
|
||||
}
|
||||
|
||||
configurations {
|
||||
deploy
|
||||
}
|
||||
|
||||
dependencies {
|
||||
deploy project(path: ":aufgaben-service", configuration: 'archives')
|
||||
deploy project(path: ":mail-service", configuration: 'archives')
|
||||
deploy project(path: ":registration-service", configuration: 'archives')
|
||||
deploy project(path: ":session-service", configuration: 'archives')
|
||||
deploy project(path: ":user-service", configuration: 'archives')
|
||||
}
|
||||
|
||||
task clearDeploymentFolder {
|
||||
doFirst {
|
||||
delete wildflyHome + '/standalone/deployments/'
|
||||
}
|
||||
}
|
||||
|
||||
task deploy(dependsOn:['clearDeploymentFolder'], type: Copy) {
|
||||
from configurations.deploy
|
||||
into wildflyHome + '/standalone/deployments'
|
||||
}
|
||||
BIN
localdeploy/standalone/deployments/aufgaben-service.war
Normal file
BIN
localdeploy/standalone/deployments/aufgaben-service.war
Normal file
Binary file not shown.
BIN
localdeploy/standalone/deployments/mail-service.war
Normal file
BIN
localdeploy/standalone/deployments/mail-service.war
Normal file
Binary file not shown.
BIN
localdeploy/standalone/deployments/registration-service.war
Normal file
BIN
localdeploy/standalone/deployments/registration-service.war
Normal file
Binary file not shown.
BIN
localdeploy/standalone/deployments/session-service.war
Normal file
BIN
localdeploy/standalone/deployments/session-service.war
Normal file
Binary file not shown.
BIN
localdeploy/standalone/deployments/user-service.war
Normal file
BIN
localdeploy/standalone/deployments/user-service.war
Normal file
Binary file not shown.
Reference in New Issue
Block a user