Fix test sysprop name to work on Windows

This commit is contained in:
Daz DeBoer 2022-08-24 08:19:52 -06:00
parent c77676cc69
commit 6e56b59601
No known key found for this signature in database
GPG key ID: DD6B9F0B06683D5D
3 changed files with 7 additions and 7 deletions

View file

@ -63,17 +63,17 @@ test('will cleanup unused gradle versions', async () => {
})
async function runGradleBuild(projectRoot: string, args: string, version: string = '3.1'): Promise<void> {
const status31 = await exec.exec(`gradle -g HOME --no-daemon --build-cache -Dcommons-math3.version=${version} ${args}`, [], {
const status31 = await exec.exec(`gradle -g HOME --no-daemon --build-cache -Dcommons_math3_version=${version} ${args}`, [], {
cwd: projectRoot
})
console.log(`Gradle User Home initialized with commons-math3.version=${version} ${args}`)
console.log(`Gradle User Home initialized with commons_math3_version=${version} ${args}`)
}
async function runGradleWrapperBuild(projectRoot: string, args: string, version: string = '3.1'): Promise<void> {
const status31 = await exec.exec(`./gradlew -g HOME --no-daemon --build-cache -Dcommons-math3.version=${version} ${args}`, [], {
const status31 = await exec.exec(`./gradlew -g HOME --no-daemon --build-cache -Dcommons_math3_version=${version} ${args}`, [], {
cwd: projectRoot
})
console.log(`Gradle User Home initialized with commons-math3.version=${version} ${args}`)
console.log(`Gradle User Home initialized with commons_math3_version=${version} ${args}`)
}
function prepareTestProject(): string {

View file

@ -7,5 +7,5 @@ repositories {
}
dependencies {
api "org.apache.commons:commons-math3:${System.properties['commons-math3.version']}"
api "org.apache.commons:commons-math3:${System.properties['commons_math3_version']}"
}