Skip to content
Snippets Groups Projects
Commit 22193335 authored by Michal Petrovič's avatar Michal Petrovič
Browse files

remove comments

parent ad0b7cb5
Branches
1 merge request!5Resolve "Implement CpG isladns analysis"
......@@ -20,47 +20,11 @@ configurations {
repositories {
mavenCentral()
}
group = 'cz.dnaAnalyser'
version = '0.0.1-SNAPSHOT'
/*
def dockerRepository = 'dna-analyser'
def dockerName = "$dockerImageNamespace/$dockerRepository:$dockerImageTag"
group = 'cz.mendelu.bioinformatics'
version = gitVersion
sourceCompatibility = '1.8'
*/
/*
compileJava {
options.compilerArgs.addAll(['--release', '8']) // FIX issue #383
}
*/
/*
bootJar {
mainClassName = 'cz.mendelu.dnaAnalyser.Application'
manifest {
attributes(
'Implementation-Title': project.name,
'Implementation-Version': gitVersion,
)
}
}
task dockerBuild {
group 'build'
description 'Build docker image from Dockerfile'
dependsOn bootJar
doLast {
def jarFile = "build/libs/backend-${version}.jar"
exec {
workingDir "$buildDir/.."
commandLine "docker build --rm --build-arg JAR_FILE=$jarFile -t $dockerName .".split(" ")
}
print "Successfully built image '$dockerName'"
}
}
*/
group = 'cz.dnaAnalyser'
processResources {
include '**'
filter ReplaceTokens, tokens: [
......@@ -123,16 +87,3 @@ dependencies {
}
//dependencies {
//
// // Test compile
// testCompile 'org.springframework.boot:spring-boot-starter-test'
// testCompile 'org.spockframework:spock-core:1.1-groovy-2.4'
// testCompile 'org.spockframework:spock-spring:1.1-groovy-2.4'
// testRuntime 'cglib:cglib-nodep:3.+'
//
// // JavaMelody
//
//}
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment