更新自述文件,pom文件和gitignore文件

shuai
chenshuai 4 months ago
parent f3149617e8
commit fb22cad1a2

24
.gitignore vendored

@ -1,13 +1,8 @@
# ---> Java
# Compiled class file
*.class
# Log file
*.log
# BlueJ files
*.ctxt
# Mobile Tools for Java (J2ME)
.mtj.tmp/
@ -24,3 +19,20 @@
hs_err_pid*
replay_pid*
# 默认忽略的文件
/shelf/
/workspace.xml
# 基于编辑器的 HTTP 客户端请求
/httpRequests/
# IntelliJ IDEA
.idea/
*.iml
*.ipr
*.iws
# Datasource local storage ignored files
/dataSources/
/dataSources.local.xml

@ -1,2 +1,3 @@
# LineCountProject
此存储库是一个试验性项目尝试摸索出touGe平台的行数统计规则。

@ -0,0 +1,36 @@
<?xml version="1.0" encoding="UTF-8"?>
<project xmlns="http://maven.apache.org/POM/4.0.0"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<parent>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-parent</artifactId>
<version>3.3.1</version>
<relativePath/> <!-- lookup parent from repository -->
</parent>
<groupId>com.example</groupId>
<artifactId>linecountproject</artifactId>
<version>0.0.1-SNAPSHOT</version>
<name>lineCountProject</name>
<properties>
<java.version>17</java.version>
</properties>
<dependencies>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-web</artifactId>
</dependency>
</dependencies>
<build>
<plugins>
<plugin>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-maven-plugin</artifactId>
</plugin>
</plugins>
</build>
</project>
Loading…
Cancel
Save