Skip to content

Commit 60f9825

Browse files
committed
First version code.
1 parent 50d2a39 commit 60f9825

12 files changed

Lines changed: 1071 additions & 1 deletion

File tree

.gitignore

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -22,3 +22,17 @@
2222
# virtual machine crash logs, see http://www.java.com/en/download/help/error_hotspot.xml
2323
hs_err_pid*
2424
replay_pid*
25+
26+
# Gradle files
27+
.gradle/
28+
build/
29+
30+
# IntelliJ
31+
*.iml
32+
.idea/
33+
34+
# Folder
35+
database/
36+
data/
37+
out/
38+
META-INF

LICENSE

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -186,7 +186,7 @@
186186
same "printed page" as the copyright notice for easier
187187
identification within third-party archives.
188188

189-
Copyright [yyyy] [name of copyright owner]
189+
Copyright 2023 Zhang Guanhu
190190

191191
Licensed under the Apache License, Version 2.0 (the "License");
192192
you may not use this file except in compliance with the License.

build.gradle

Lines changed: 39 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,39 @@
1+
plugins {
2+
id 'java'
3+
id 'maven-publish'
4+
}
5+
6+
group = 'com.github.artbits'
7+
version = '0.0.1'
8+
9+
repositories {
10+
maven { url 'https://maven.aliyun.com/nexus/content/groups/public/' }
11+
}
12+
13+
dependencies {
14+
implementation 'org.xerial:sqlite-jdbc:3.43.0.0'
15+
testImplementation platform('org.junit:junit-bom:5.9.1')
16+
testImplementation 'org.junit.jupiter:junit-jupiter'
17+
}
18+
19+
test {
20+
useJUnitPlatform()
21+
}
22+
23+
java {
24+
withSourcesJar()
25+
withJavadocJar()
26+
}
27+
28+
publishing {
29+
publications {
30+
maven(MavenPublication) {
31+
from components.java
32+
}
33+
}
34+
}
35+
36+
wrapper {
37+
gradleVersion = "8.0"
38+
distributionType = Wrapper.DistributionType.ALL
39+
}
Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
#Sun Sep 03 17:55:37 CST 2023
2+
distributionBase=GRADLE_USER_HOME
3+
distributionPath=wrapper/dists
4+
distributionUrl=https\://services.gradle.org/distributions/gradle-8.0-bin.zip
5+
zipStoreBase=GRADLE_USER_HOME
6+
zipStorePath=wrapper/dists

gradlew

Lines changed: 234 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)