Skip to content

Commit

Permalink
0.1.0 Release Ready
Browse files Browse the repository at this point in the history
  • Loading branch information
Valinaa committed Jul 26, 2023
1 parent 912a322 commit fc492e4
Show file tree
Hide file tree
Showing 35 changed files with 613 additions and 470 deletions.
31 changes: 11 additions & 20 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -8,9 +8,9 @@
<version>3.1.2</version>
<relativePath/>
</parent>
<groupId>cn.valinaa.boot</groupId>
<groupId>tech.valinaa.boot</groupId>
<artifactId>youtis-spring-boot</artifactId>
<version>0.0.1-SNAPSHOT</version>
<version>0.1.0</version>
<packaging>pom</packaging>
<name>youtis-spring-boot</name>
<description>youtis-spring-boot</description>
Expand All @@ -21,8 +21,9 @@
</modules>
<properties>
<java.version>17</java.version>
<youtis-version>0.0.1-SNAPSHOT</youtis-version>
<youtis-version>0.1.0</youtis-version>
<spring-boot.version>3.1.2</spring-boot.version>
<slf4j.version>2.0.7</slf4j.version>
</properties>
<dependencyManagement>
<dependencies>
Expand All @@ -31,17 +32,16 @@
<artifactId>spring-boot-starter</artifactId>
<version>${spring-boot.version}</version>
<optional>true</optional>
<exclusions>
<exclusion>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-logging</artifactId>
</exclusion>
</exclusions>
</dependency>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-devtools</artifactId>
<version>${spring-boot.version}</version>
<scope>runtime</scope>
<optional>true</optional>
</dependency>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-autoconfigure</artifactId>
<artifactId>spring-boot-starter-log4j2</artifactId>
<version>${spring-boot.version}</version>
</dependency>
<dependency>
Expand All @@ -52,13 +52,4 @@
</dependency>
</dependencies>
</dependencyManagement>
<build>
<plugins>
<plugin>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-maven-plugin</artifactId>
</plugin>
</plugins>
</build>

</project>
16 changes: 13 additions & 3 deletions youtis-spring-boot-autoconfigure/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -4,9 +4,9 @@
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<parent>
<groupId>cn.valinaa.boot</groupId>
<groupId>tech.valinaa.boot</groupId>
<artifactId>youtis-spring-boot</artifactId>
<version>0.0.1-SNAPSHOT</version>
<version>0.1.0</version>
</parent>

<artifactId>youtis-spring-boot-autoconfigure</artifactId>
Expand All @@ -15,12 +15,22 @@
<maven.compiler.source>17</maven.compiler.source>
<maven.compiler.target>17</maven.compiler.target>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<hutool.version>5.8.16</hutool.version>
</properties>
<dependencies>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-log4j2</artifactId>
</dependency>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-jdbc</artifactId>
<optional>true</optional>
</dependency>
<dependency>
<groupId>cn.hutool</groupId>
<artifactId>hutool-core</artifactId>
<version>5.8.16</version>
<version>${hutool.version}</version>
</dependency>
<dependency>
<groupId>org.springframework.boot</groupId>
Expand Down

This file was deleted.

This file was deleted.

This file was deleted.

This file was deleted.

Loading

0 comments on commit fc492e4

Please sign in to comment.