Skip to content

Commit

Permalink
bump dependency versions
Browse files Browse the repository at this point in the history
  • Loading branch information
paulk-asert committed May 22, 2024
1 parent ef21c78 commit 59fc95c
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 6 deletions.
1 change: 1 addition & 0 deletions gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -33,6 +33,7 @@ djlVersion = 0.28.0
groovy3Version = 3.0.21
groovy4Version = 4.0.21
igniteVersion = 2.16.0
igniteMlVersion = 2.15.0
jacksonVersion = 2.17.1
jfreechartVersion = 1.5.4
junitVersion = 4.13.1
Expand Down
7 changes: 4 additions & 3 deletions subprojects/HousePricesIgnite/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -37,14 +37,15 @@ tasks.named('run').configure {
dependencies {
implementation "org.apache.groovy:groovy:$groovy4Version"
implementation "org.apache.ignite:ignite-core:$igniteVersion"
implementation "org.apache.ignite:ignite-ml:$igniteVersion"
implementation "org.apache.ignite:ignite-ml:$igniteMlVersion"
runtimeOnly "org.apache.ignite:ignite-spring:$igniteVersion"
runtimeOnly "org.slf4j:slf4j-simple:$slf4jVersion"
implementation "tech.tablesaw:tablesaw-core:$tablesawVersion"
implementation "com.google.guava:guava:32.1.3-jre" // non-vulnerable dependency tablesaw-core
}

task copyToLib(type: Copy) {
into "$buildDir/lib"
tasks.register('copyToLib', Copy) {
into layout.buildDirectory.dir('lib')
from configurations.runtimeClasspath
}

Expand Down
2 changes: 2 additions & 0 deletions subprojects/HousePricesSpark/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -33,6 +33,8 @@ tasks.named('run').configure {
dependencies {
implementation "org.apache.groovy:groovy:$groovy4Version"
implementation "org.apache.spark:spark-sql_$sparkVariant:$sparkVersion"
implementation "org.apache.avro:avro:1.11.3" // non-vulnerable dependency spark-sql
implementation "org.apache.avro:avro-mapred:1.11.3" // non-vulnerable dependency spark-sql
implementation "org.apache.spark:spark-mllib_$sparkVariant:$sparkVersion"
implementation "com.fasterxml.jackson:jackson-bom:$jacksonVersion"
runtimeOnly "org.apache.spark:spark-core_$sparkVariant:$sparkVersion"
Expand Down
4 changes: 1 addition & 3 deletions subprojects/WhiskeyIgnite/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -39,12 +39,10 @@ dependencies {
implementation "org.apache.groovy:groovy:$groovy4Version"
// implementation project(':ChartUtil')
implementation "org.apache.ignite:ignite-core:$igniteVersion"
implementation "org.apache.ignite:ignite-ml:$igniteVersion"
implementation "org.apache.ignite:ignite-ml:$igniteMlVersion"
runtimeOnly "org.apache.ignite:ignite-spring:$igniteVersion"
runtimeOnly "org.slf4j:slf4j-simple:$slf4jVersion"
implementation "org.apache.commons:commons-csv:$commonsCsvVersion"
// implementation "com.github.haifengl:smile-core:$smileVersion"
// runtimeOnly "org.bytedeco:openblas-platform:$openblasPlatformVersion"
}

tasks.register('versionInfo') {
Expand Down

0 comments on commit 59fc95c

Please sign in to comment.