mirror of
https://github.com/aljazceru/turso.git
synced 2025-12-18 17:14:20 +01:00
Change package name from org.github.tursodatabase to tech.turso
This commit is contained in:
@@ -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")
|
||||
}
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
package org.github.tursodatabase;
|
||||
package tech.turso;
|
||||
|
||||
import java.sql.Connection;
|
||||
import java.sql.DriverManager;
|
||||
Reference in New Issue
Block a user