Compare commits

...

2 Commits

Author SHA1 Message Date
1f0da1fdd0 build: 更新项目配置和依赖版本
- 添加项目名称、描述和 URL
- 更新 plusone-dependencies 和 plusone-commons 依赖版本
2025-07-26 03:15:49 +08:00
748cf430b3 chore: 设置 SQL 文件缩进为 2 个空格 (plusone/simple-jdbc#6 from gitea)
在 .editorconfig 文件中设置 SQL 文件的 indent_size 为 2
2025-07-26 03:04:01 +08:00
2 changed files with 11 additions and 2 deletions

View File

@@ -10,3 +10,6 @@ end_of_line = lf
charset = utf-8 charset = utf-8
trim_trailing_whitespace = true trim_trailing_whitespace = true
insert_final_newline = true insert_final_newline = true
[*.sql]
indent_size = 2

10
pom.xml
View File

@@ -8,10 +8,16 @@
<artifactId>simple-jdbc</artifactId> <artifactId>simple-jdbc</artifactId>
<version>1.0.0-alpha</version> <version>1.0.0-alpha</version>
<name>Simple JDBC</name>
<description>对 JDBC 的简单封装。</description>
<url>http://gitea.zhouxy.xyz/plusone/simple-jdbc</url>
<properties> <properties>
<maven.compiler.source>8</maven.compiler.source> <maven.compiler.source>8</maven.compiler.source>
<maven.compiler.target>8</maven.compiler.target> <maven.compiler.target>8</maven.compiler.target>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<plusone-commons.version>1.1.0-RC1</plusone-commons.version>
</properties> </properties>
<dependencyManagement> <dependencyManagement>
@@ -19,7 +25,7 @@
<dependency> <dependency>
<groupId>xyz.zhouxy.plusone</groupId> <groupId>xyz.zhouxy.plusone</groupId>
<artifactId>plusone-dependencies</artifactId> <artifactId>plusone-dependencies</artifactId>
<version>1.1.0-SNAPSHOT</version> <version>${plusone-commons.version}</version>
<type>pom</type> <type>pom</type>
<scope>import</scope> <scope>import</scope>
</dependency> </dependency>
@@ -30,7 +36,7 @@
<dependency> <dependency>
<groupId>xyz.zhouxy.plusone</groupId> <groupId>xyz.zhouxy.plusone</groupId>
<artifactId>plusone-commons</artifactId> <artifactId>plusone-commons</artifactId>
<version>1.1.0-SNAPSHOT</version> <version>${plusone-commons.version}</version>
</dependency> </dependency>
<dependency> <dependency>