Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Removes DIL_P doc. #914

6 changes: 3 additions & 3 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ repositories {
if (no_nexus) {
println("using repositories 'jcenter' and 'mavenCentral'")
mavenLocal()
jcenter()
// deprecated: jcenter()
mavenCentral()
maven {
url "https://repo1.maven.org/maven2/"
Expand Down Expand Up @@ -46,7 +46,7 @@ repositories {
url repoUrl
}
}
nexusMaven("${nexus_url}/repository/jcenter/")
// deprecated: nexusMaven("${nexus_url}/repository/jcenter/")
nexusMaven("${nexus_url}/repository/maven-public/")
nexusMaven("${nexus_url}/repository/atlassian_public/")
nexusMaven("${nexus_url}/repository/jenkins-ci-releases/")
Expand Down Expand Up @@ -82,7 +82,7 @@ dependencies {
testImplementation ("com.athaydes:spock-reports:1.6.3") { transitive = false }
testImplementation group: 'org.assertj', name: 'assertj-core', version: '3.21.0'
testImplementation group: 'commons-io', name: 'commons-io', version: '2.8.0'
testImplementation "com.lesfurets:jenkins-pipeline-unit:1.9"
testImplementation group: 'com.lesfurets', name: 'jenkins-pipeline-unit', version: '1.9' // "com.lesfurets:jenkins-pipeline-unit:1.9"
testImplementation "net.bytebuddy:byte-buddy:1.10.8"
testImplementation "org.objenesis:objenesis:3.1"
testImplementation "cglib:cglib-nodep:3.3.0" // for mocking classes
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -202,8 +202,7 @@ class LeVADocumentScheduler extends DocGenScheduler {
(DocumentType.TIR as String) : ["${DocumentType.TIR}_P"],
(DocumentType.OVERALL_TIR as String) : ["${DocumentType.TIR}_P"],
(DocumentType.IVR as String) : ["${DocumentType.IVR}_P"],
(DocumentType.OVERALL_IVR as String) : ["${DocumentType.IVR}_P"],
(DocumentType.DIL as String) : ["${DocumentType.DIL}_P"]
(DocumentType.OVERALL_IVR as String) : ["${DocumentType.IVR}_P"]
]
]

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -6821,7 +6821,6 @@ class LeVADocumentSchedulerSpec extends SpecHelper {

then:
1 * usecase.invokeMethod("createIVR", [[:], data] as Object[])
1 * usecase.invokeMethod("createDIL", [[:], data] as Object[])
0 * usecase.invokeMethod(*_)
}

Expand Down Expand Up @@ -6927,7 +6926,6 @@ class LeVADocumentSchedulerSpec extends SpecHelper {

then:
1 * usecase.invokeMethod("createIVR", [[:], data] as Object[])
1 * usecase.invokeMethod("createDIL", [[:], data] as Object[])
0 * usecase.invokeMethod(*_)
}

Expand Down Expand Up @@ -6995,7 +6993,6 @@ class LeVADocumentSchedulerSpec extends SpecHelper {

then:
1 * usecase.invokeMethod("createIVR", [[:], data] as Object[])
1 * usecase.invokeMethod("createDIL", [[:], data] as Object[])
0 * usecase.invokeMethod(*_)
}

Expand Down