Skip to content

Commit

Permalink
Update jars
Browse files Browse the repository at this point in the history
  • Loading branch information
pambrose committed Oct 19, 2024
1 parent 430957a commit c3b9f54
Show file tree
Hide file tree
Showing 9 changed files with 25 additions and 21 deletions.
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -57,4 +57,4 @@ depends:
./gradlew dependencies

upgrade-wrapper:
./gradlew wrapper --gradle-version=8.9 --distribution-type=bin
./gradlew wrapper --gradle-version=8.10.2 --distribution-type=bin
10 changes: 5 additions & 5 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -9,12 +9,12 @@ buildscript {
plugins {
id 'java'
id 'application'
id 'org.jetbrains.kotlin.jvm' version '2.0.10' apply false
id 'org.jetbrains.kotlin.plugin.serialization' version '2.0.10' apply false
id 'org.jetbrains.kotlin.jvm' version '2.0.21' apply false
id 'org.jetbrains.kotlin.plugin.serialization' version '2.0.21' apply false
id 'org.jmailen.kotlinter' version "4.4.1" apply false
id 'com.github.gmazzo.buildconfig' version '5.4.0' apply false
id 'com.github.gmazzo.buildconfig' version '5.5.0' apply false
id "com.github.ben-manes.versions" version '0.51.0' apply false
id "org.flywaydb.flyway" version "10.17.0"
id "org.flywaydb.flyway" version "10.20.0"
}

ext {
Expand Down Expand Up @@ -87,7 +87,7 @@ ext {
allprojects {
description = 'ReadingBat Core'
group 'com.github.readingbat'
version '1.39.0'
version '1.40.0'

apply plugin: 'application'
apply plugin: 'java-library'
Expand Down
22 changes: 11 additions & 11 deletions gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -6,27 +6,27 @@ org.gradle.parallel=true
org.gradle.caching=true
org.gradle.jvmargs=-Xmx8g -Dkotlin.daemon.jvm.options=-Xmx6g -XX:+HeapDumpOnOutOfMemoryError -Dfile.encoding=UTF-8
# Jars
cloud_version=1.19.1
cloud_version=1.21.0
commons_version=1.12.0
css_version=1.0.0-pre.757
exposed_version=0.53.0
css_version=1.0.0-pre.819
exposed_version=0.55.0
flexmark_version=0.64.8
github_api_version=1.323
github_api_version=1.324
gson_version=2.11.0
hikari_version=5.1.0
hikari_version=6.0.0
java_script_version=2.0.0
khealth_version=2.1.1
kotest_ktor_version=4.4.3
kotest_version=5.9.1
kotlin_version=2.0.10
kotlin_version=2.0.21
ktor_version=2.3.12
logback_version=1.5.6
logback_version=1.5.11
logging_version=7.0.0
pgjdbc_version=0.8.9
postgres_version=42.7.3
postgres_version=42.7.4
prometheus_version=0.16.0
proxy_version=1.22.0
redis_version=5.1.3
redis_version=5.2.0
sendgrid_version=4.10.2
serialization_version=1.7.1
utils_version=2.0.0
serialization_version=1.7.3
utils_version=2.1.0
Binary file modified gradle/wrapper/gradle-wrapper.jar
Binary file not shown.
2 changes: 1 addition & 1 deletion gradle/wrapper/gradle-wrapper.properties
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
distributionBase=GRADLE_USER_HOME
distributionPath=wrapper/dists
distributionUrl=https\://services.gradle.org/distributions/gradle-8.9-bin.zip
distributionUrl=https\://services.gradle.org/distributions/gradle-8.10.2-bin.zip
networkTimeout=10000
validateDistributionUrl=true
zipStoreBase=GRADLE_USER_HOME
Expand Down
5 changes: 4 additions & 1 deletion gradlew
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,8 @@
# See the License for the specific language governing permissions and
# limitations under the License.
#
# SPDX-License-Identifier: Apache-2.0
#

##############################################################################
#
Expand Down Expand Up @@ -84,7 +86,8 @@ done
# shellcheck disable=SC2034
APP_BASE_NAME=${0##*/}
# Discard cd standard output in case $CDPATH is set (https://github.com/gradle/gradle/issues/25036)
APP_HOME=$( cd "${APP_HOME:-./}" > /dev/null && pwd -P ) || exit
APP_HOME=$( cd -P "${APP_HOME:-./}" > /dev/null && printf '%s
' "$PWD" ) || exit

# Use the maximum available, or set MAX_FD != -1 to use that value.
MAX_FD=maximum
Expand Down
2 changes: 2 additions & 0 deletions gradlew.bat
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,8 @@
@rem See the License for the specific language governing permissions and
@rem limitations under the License.
@rem
@rem SPDX-License-Identifier: Apache-2.0
@rem

@if "%DEBUG%"=="" @echo off
@rem ##########################################################################
Expand Down
2 changes: 1 addition & 1 deletion readingbat-core/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -88,7 +88,7 @@ buildConfig {

buildConfigField('String', 'CORE_NAME', "\"${project.name}\"")
buildConfigField('String', 'CORE_VERSION', "\"${project.version}\"")
buildConfigField('String', 'CORE_RELEASE_DATE', "\"06/11/24\"")
buildConfigField('String', 'CORE_RELEASE_DATE', "\"10/19/24\"")
}

// Include build uberjars in heroku deploy
Expand Down
1 change: 0 additions & 1 deletion settings.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -2,4 +2,3 @@ rootProject.name = 'readingbat-core'

include ':readingbat-core'
include ':readingbat-kotest'

0 comments on commit c3b9f54

Please sign in to comment.