Skip to content

Commit cdb86da

Browse files
committed
fix version, add database.yml examples
1 parent 0eeccc1 commit cdb86da

File tree

3 files changed

+6
-6
lines changed

3 files changed

+6
-6
lines changed

build.gradle.kts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -85,7 +85,7 @@ publishing {
8585
publications {
8686
register<MavenPublication>("gpr") {
8787
groupId = "$group"
88-
version = "$version"
88+
version = version
8989
artifact(tasks.named<ShadowJar>("shadowJar").get())
9090
artifact(tasks.named<Jar>("sourcesJar").get())
9191
}

gradle.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
project_version = 0.0.0
1+
project_version = 0.0.3

src/main/resources/database.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
type: Mongo # Avaiable types: mongo, mysql, sqlite
1+
type: Sqlite # Avaiable types: mongo, mysql, sqlite
22

33

44
# MONGO
@@ -9,9 +9,9 @@ Mongo:
99

1010
# mysql
1111
SQL:
12-
connection-string: "jdbc:mysql://localhost:3306/database"
13-
username: "username"
14-
password: "password"
12+
connection-string: "jdbc:sqlite:path/to/db/sample.db"
13+
username: "username" # Not required for sqlite
14+
password: "password" # Not required for sqlite
1515

1616
# sqlite
1717

0 commit comments

Comments
 (0)