remove configuration

This commit is contained in:
Alexey Metlyakov
2021-03-14 18:33:48 +03:00
parent 76e8b572a7
commit f03ef53033

View File

@@ -1,26 +0,0 @@
package Netology.buildTypes
import jetbrains.buildServer.configs.kotlin.v2019_2.*
object ExampleTeamcity_Build : BuildType({
id = AbsoluteId("ExampleTeamcity_Build")
name = "Build"
artifactRules = "target/*.jar"
vcs {
root(AbsoluteId("ExampleTeamcity_HttpsGithubComAragastmatbExampleTeamcityGitRefsHeadsMaster"))
}
steps {
maven {
goals = "clean test"
runnerArgs = "-Dmaven.test.failure.ignore=true"
}
}
triggers {
vcs {
}
}
})