Skip to content
Merged
6 changes: 3 additions & 3 deletions build-config/resources/Ballerina.toml
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
[package]
org = "ballerina"
name = "tool_persist"
name = "tool.persist"
version = "@toml.version@"
authors = ["Ballerina"]
keywords = ["persist", "persist tool"]
keywords = ["persist", "persist tool", "ORM"]
license = ["Apache-2.0"]
distribution = "2201.12.4"
distribution = "2201.13.0"
20 changes: 10 additions & 10 deletions gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -2,22 +2,22 @@ org.gradle.caching=true
group=io.ballerina
version=1.7.0-SNAPSHOT

#dependency versions
checkstylePluginVersion=10.12.1
# Java Dependencies
ballerinaLangVersion=2201.13.0-20250924-081800-3dae8c03
picocliVersion=4.7.4
githubSpotbugsVersion=6.0.18
githubJohnrengelmanShadowVersion=8.1.1
underCouchDownloadVersion=5.4.0
researchgateReleaseVersion=2.8.0
testngVersion=7.6.1
jacocoVersion=0.8.10
ballerinaGradlePluginVersion=2.3.0

mySqlDriverVersion=8.0.29
mssqlDriverVersion=11.2.3.jre17
postgresqlDriverVersion=42.6.0

ballerinaLangVersion=2201.13.0-20250613-152200-ecef3657
# Gradle Plugin Versions
checkstylePluginVersion=10.12.1
spotbugsPluginVersion=6.0.18
shadowJarVersion=8.1.1
downloadPluginVersion=5.4.0
releasePluginVersion=2.8.0
ballerinaGradlePluginVersion=2.3.0
jacocoVersion=0.8.10

# Level 01
stdlibIoVersion=1.8.0
Expand Down
6 changes: 3 additions & 3 deletions persist-tool/Ballerina.toml
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
[package]
org = "ballerina"
name = "tool_persist"
name = "tool.persist"
version = "1.7.0"
authors = ["Ballerina"]
keywords = ["persist", "persist tool"]
keywords = ["persist", "persist tool", "ORM"]
license = ["Apache-2.0"]
distribution = "2201.12.4"
distribution = "2201.13.0"
6 changes: 3 additions & 3 deletions persist-tool/Dependencies.toml
Original file line number Diff line number Diff line change
Expand Up @@ -5,13 +5,13 @@

[ballerina]
dependencies-toml-version = "2"
distribution-version = "2201.13.0-20250613-152200-ecef3657"
distribution-version = "2201.13.0-20250924-081800-3dae8c03"

[[package]]
org = "ballerina"
name = "tool_persist"
name = "tool.persist"
version = "1.7.0"
modules = [
{org = "ballerina", packageName = "tool_persist", moduleName = "tool_persist"}
{org = "ballerina", packageName = "tool.persist", moduleName = "tool.persist"}
]

8 changes: 4 additions & 4 deletions settings.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -9,10 +9,10 @@

pluginManagement {
plugins {
id "com.github.spotbugs" version "${githubSpotbugsVersion}"
id "com.github.johnrengelman.shadow" version "${githubJohnrengelmanShadowVersion}"
id "de.undercouch.download" version "${underCouchDownloadVersion}"
id "net.researchgate.release" version "${researchgateReleaseVersion}"
id "com.github.spotbugs" version "${spotbugsPluginVersion}"
id "com.github.johnrengelman.shadow" version "${shadowJarVersion}"
id "de.undercouch.download" version "${downloadPluginVersion}"
id "net.researchgate.release" version "${releasePluginVersion}"
id "io.ballerina.plugin" version "${ballerinaGradlePluginVersion}"
}

Expand Down