Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
B
backend
Manage
Activity
Members
Labels
Plan
Issues
2
Issue boards
Milestones
Wiki
Code
Merge requests
0
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package Registry
Container Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Bioinformatics
backend
Commits
22193335
Commit
22193335
authored
1 year ago
by
Michal Petrovič
Browse files
Options
Downloads
Patches
Plain Diff
remove comments
parent
ad0b7cb5
Branches
Branches containing commit
1 merge request
!5
Resolve "Implement CpG isladns analysis"
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
build.gradle
+2
-51
2 additions, 51 deletions
build.gradle
with
2 additions
and
51 deletions
build.gradle
+
2
−
51
View file @
22193335
...
...
@@ -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
//
//}
This diff is collapsed.
Click to expand it.
Preview
0%
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment