Docker implementation

This commit is contained in:
2020-08-29 21:42:36 +02:00
parent 504df2b15d
commit 7736f9abfc
5 changed files with 32 additions and 1 deletions

View File

@@ -7,6 +7,15 @@ apply plugin: 'io.spring.dependency-management'
sourceCompatibility = '11'
task fullJar(type: Jar) {
manifest {
attributes 'Implementation-Title': 'WebQuizEngine Jar File',
'Main-Class': 'org.hyperskill.webquiz.engine.WebQuizEngine'
}
from { configurations.compile.collect { it.isDirectory() ? it : zipTree(it) } }
with jar
}
repositories {
mavenCentral()
}