Skip to content

Commit

Permalink
优化代码
Browse files Browse the repository at this point in the history
  • Loading branch information
smthing committed Jan 16, 2025
1 parent 5b323f8 commit 1e54e6e
Show file tree
Hide file tree
Showing 3 changed files with 16 additions and 9 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/tck.yml
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ jobs:
with:
maven-version: '3.9.0'
- name: Build Feat
run: mvn -B install --file feat/feat-core/pom.xml -Dmaven.test.skip=true -Dmaven.compiler.source=8 -Dmaven.compiler.target=8
run: mvn -B install --file feat/pom.xml -Dmaven.test.skip=true -Dmaven.compiler.source=8 -Dmaven.compiler.target=8
- name: Build servlet TCK with Maven
run: mvn -B install --file jakartaee/servlet/pom.xml
- name: Build smart-servlet with Maven
Expand Down
1 change: 1 addition & 0 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -137,6 +137,7 @@
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-gpg-plugin</artifactId>
<version>3.2.7</version>
<executions>
<execution>
<id>sign-artifacts</id>
Expand Down
22 changes: 14 additions & 8 deletions springboot-demo/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -19,15 +19,16 @@
<version>1.0-SNAPSHOT</version>

<properties>
<maven.compiler.source>21</maven.compiler.source>
<maven.compiler.target>21</maven.compiler.target>
<maven.compiler.source>17</maven.compiler.source>
<maven.compiler.target>17</maven.compiler.target>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<springboot.version>3.3.1</springboot.version>
</properties>
<parent>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-parent</artifactId>
<version>3.3.1</version>
</parent>
<!-- <parent>-->
<!-- <groupId>org.springframework.boot</groupId>-->
<!-- <artifactId>spring-boot-starter-parent</artifactId>-->
<!-- <version>3.3.1</version>-->
<!-- </parent>-->

<dependencies>
<!-- ... other dependency elements ... -->
Expand Down Expand Up @@ -59,7 +60,11 @@
<artifactId>smart-servlet-spring-boot-starter</artifactId>
<version>2.7</version><!--最新版本 -->
</dependency>

<dependency>
<groupId>org.slf4j</groupId>
<artifactId>slf4j-simple</artifactId>
<version>2.0.16</version>
</dependency>
<!-- <dependency>-->
<!-- <groupId>org.springframework.boot</groupId>-->
<!-- <artifactId>spring-boot-starter-undertow</artifactId>-->
Expand All @@ -71,6 +76,7 @@
<plugin>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-maven-plugin</artifactId>
<version>${springboot.version}</version>
<configuration>
<!-- 包含systemPath指定的依赖 -->
<includeSystemScope>true</includeSystemScope>
Expand Down

0 comments on commit 1e54e6e

Please sign in to comment.