Skip to content

Commit

Permalink
Updating mule verification
Browse files Browse the repository at this point in the history
  • Loading branch information
meiao committed Nov 20, 2023
1 parent c48c8cc commit 8fc6fe6
Show file tree
Hide file tree
Showing 4 changed files with 11 additions and 19 deletions.
7 changes: 4 additions & 3 deletions instrumentation/mule-3.7/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -24,13 +24,13 @@ jar {
'Implementation-Title-Alias': 'mule_instrumentation' }
}

// This will still match [3.7.1,3.7.5], and [3.8.2,3.8.7]
// This will still match [3.7.1,3.7.5], [3.8.2,3.8.7], and 3.9.5,
// but we can't verify that because the artifacts are enterprise only (behind auth)
verifyInstrumentation {
passes('org.mule:mule-core:3.7.0') {
implementation("org.mule.modules:mule-module-http:3.7.0")
}
passes('org.mule:mule-core:[3.8.0,3.8.2)') {
passes('org.mule:mule-core:[3.8.0,)') {
implementation("org.mule.modules:mule-module-http:3.7.0")
}

Expand All @@ -39,7 +39,8 @@ verifyInstrumentation {
exclude 'org.mule:mule-core:3.5.4'
exclude 'org.mule:mule-core:[3.6.2,3.7.0)'
exclude 'org.mule:mule-core:[3.7.1,3.8.0)'
exclude 'org.mule:mule-core:[3.8.2,)'
exclude 'org.mule:mule-core:3.8.2'
exclude 'org.mule:mule-core:3.9.5'

excludeRegex 'org.mule:mule-core:.*-(EA|HF|RC|M|rc|bighorn|cascade).*[0-9]*.*'
}
Expand Down
5 changes: 3 additions & 2 deletions instrumentation/mule-base/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ jar {
}

verifyInstrumentation {
passes('org.mule:mule-core:[3.4.0,3.8.2)') {
passes('org.mule:mule-core:[3.4.0,)') {
implementation("org.mule.transports:mule-transport-http:3.4.0")
implementation("org.mule.modules:mule-module-launcher:3.4.0")
implementation("org.mule.modules:mule-module-client:3.4.0")
Expand All @@ -45,7 +45,8 @@ verifyInstrumentation {
exclude 'org.mule:mule-core:3.5.4'
exclude 'org.mule:mule-core:[3.6.2,3.7.0)'
exclude 'org.mule:mule-core:[3.7.1,3.8.0)'
exclude 'org.mule:mule-core:[3.8.2,)'
exclude 'org.mule:mule-core:3.8.2'
exclude 'org.mule:mule-core:3.9.5'

excludeRegex 'org.mule:mule-core:.*-(EA|HF|RC|M|rc|bighorn|cascade).*[0-9]*.*'
}
Expand Down
7 changes: 0 additions & 7 deletions instrumentation/mule-ei1/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -29,13 +29,6 @@ verifyInstrumentation {
passes('org.mule:mule-core:[3.4.0,3.5.2)')
passes('org.mule:mule-core:[3.6.0,3.6.2)')

// these versions cause problems getting artifacts
exclude 'org.mule:mule-core:[0,3.4.0)'
exclude 'org.mule:mule-core:3.5.4'
exclude 'org.mule:mule-core:[3.6.2,3.7.0)'
exclude 'org.mule:mule-core:[3.7.1,3.8.0)'
exclude 'org.mule:mule-core:[3.8.2,)'

excludeRegex 'org.mule:mule-core:.*-(EA|HF|RC|M|rc|bighorn|cascade).*[0-9]*.*'
}

Expand Down
11 changes: 4 additions & 7 deletions instrumentation/mule-ei2/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -23,18 +23,15 @@ jar {
}
}

// This will still apply to 3.5.4, [3.6.3,3.6.4], [3.7.1,3.7.5], and [3.8.2,3.8.7]
// This will still apply to 3.5.4, [3.6.3,3.6.4], [3.7.1,3.7.5], [3.8.2,3.8.7], and 3.9.5
// but we can't verify that because the artifacts are enterprise only (behind auth)
verifyInstrumentation {
passes('org.mule:mule-core:3.7.0')
passes('org.mule:mule-core:[3.8.0,3.8.2)')
passes('org.mule:mule-core:[3.8.0,)')

// these versions cause problems getting artifacts
exclude 'org.mule:mule-core:[0,3.4.0)'
exclude 'org.mule:mule-core:3.5.4'
exclude 'org.mule:mule-core:[3.6.2,3.7.0)'
exclude 'org.mule:mule-core:[3.7.1,3.8.0)'
exclude 'org.mule:mule-core:[3.8.2,)'
exclude 'org.mule:mule-core:3.8.2'
exclude 'org.mule:mule-core:3.9.5'

excludeRegex 'org.mule:mule-core:.*-(EA|HF|RC|M|rc|bighorn|cascade).*[0-9]*.*'
}
Expand Down

0 comments on commit 8fc6fe6

Please sign in to comment.