Change package name from org.github.tursodatabase to tech.turso

This commit is contained in:
김선우
2025-02-12 09:58:25 +09:00
parent ebceefacde
commit cb7bd3d211
46 changed files with 128 additions and 128 deletions

View File

@@ -2,7 +2,7 @@ plugins {
id("java")
}
group = "org.github.tursodatabase"
group = "tech.turso"
version = "1.0-SNAPSHOT"
repositories {
@@ -11,7 +11,7 @@ repositories {
}
dependencies {
implementation("org.github.tursodatabase:limbo:0.0.1-SNAPSHOT")
implementation("tech.turso:limbo:0.0.1-SNAPSHOT")
testImplementation(platform("org.junit:junit-bom:5.10.0"))
testImplementation("org.junit.jupiter:junit-jupiter")
}
@@ -23,5 +23,5 @@ tasks.test {
tasks.register<JavaExec>("run") {
group = "application"
classpath = sourceSets["main"].runtimeClasspath
mainClass.set("org.github.tursodatabase.Main")
mainClass.set("tech.turso.Main")
}

View File

@@ -1,4 +1,4 @@
package org.github.tursodatabase;
package tech.turso;
import java.sql.Connection;
import java.sql.DriverManager;