forked from plusone/simple-jdbc
Compare commits
2 Commits
d79e4bc328
...
1f0da1fdd0
Author | SHA1 | Date | |
---|---|---|---|
1f0da1fdd0 | |||
748cf430b3 |
@@ -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
10
pom.xml
@@ -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>
|
||||||
|
Reference in New Issue
Block a user