Compare commits

..

No commits in common. 'main' and 'boBo' have entirely different histories.
main ... boBo

24
.gitignore vendored

@ -1,8 +1,13 @@
# ---> Java
# Compiled class file
*.class
# Log file
*.log
# BlueJ files
*.ctxt
# Mobile Tools for Java (J2ME)
.mtj.tmp/
@ -19,20 +24,3 @@
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,6 +1,5 @@
<component name="InspectionProjectProfileManager">
<profile version="1.0">
<!-- 我是仓库拥有者 -->
<option name="myName" value="Project Default" />
</profile>
</component>

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

@ -1,36 +0,0 @@
<?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