Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Binary file modified Delay/gradle/wrapper/gradle-wrapper.jar
Binary file not shown.
2 changes: 1 addition & 1 deletion Delay/gradle/wrapper/gradle-wrapper.properties
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
distributionBase=GRADLE_USER_HOME
distributionPath=wrapper/dists
distributionUrl=https\://services.gradle.org/distributions/gradle-6.7-bin.zip
distributionUrl=https\://services.gradle.org/distributions/gradle-8.9-bin.zip
zipStoreBase=GRADLE_USER_HOME
zipStorePath=wrapper/dists
53 changes: 33 additions & 20 deletions Delay/gradlew
100644 → 100755

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

173 changes: 89 additions & 84 deletions Delay/gradlew.bat

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

17 changes: 10 additions & 7 deletions EvaluateMathExpression/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ group = 'com.ca.apim.gateway.assertion'
version = '1.0.0'

description = 'The Evaluate Math Expression assertion can be used to evaluate complex mathematical expressions.'
jar.baseName = 'EvaluateMathExpressionAssertion'
jar.archiveBaseName = 'EvaluateMathExpressionAssertion'

repositories {
mavenCentral()
Expand All @@ -19,28 +19,31 @@ repositories {
}
}

sourceCompatibility = 1.8
targetCompatibility = 1.8
java {
sourceCompatibility = JavaVersion.VERSION_11
targetCompatibility = JavaVersion.VERSION_11
}

configurations {
// dependencies that do not need to be bundled in the assertion's jar
provided

compile {
implementation {
extendsFrom provided
}
}

dependencies {
implementation files('lib/layer7-api-8.11.01.jar')
provided 'com.l7tech:layer7-api:8.11.02.+'
implementation 'net.objecthunter:exp4j:0.4.8'
// this is required to compile and run using GUI designer
implementation 'com.intellij:forms_rt:7.0.3'

testImplementation 'org.mockito:mockito-core:2.22.0'
testImplementation 'junit:junit:4.12'
testImplementation group: 'org.mockito', name: 'mockito-core', version: '5.12.0'
testImplementation group: 'org.junit.vintage', name: 'junit-vintage-engine', version: '5.10.3'
}


project.jar {
// add dependencies to the jar's `lib` directory
into('lib') {
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
distributionBase=GRADLE_USER_HOME
distributionPath=wrapper/dists
distributionUrl=https\://services.gradle.org/distributions/gradle-6.7.1-bin.zip
distributionUrl=https\://services.gradle.org/distributions/gradle-8.9-bin.zip
zipStoreBase=GRADLE_USER_HOME
zipStorePath=wrapper/dists
Empty file modified EvaluateMathExpression/gradlew
100644 → 100755
Empty file.
Loading