Skip to content

Commit

Permalink
Optimized the initialization of this project
Browse files Browse the repository at this point in the history
In this submission, we optimized three points:
1. The package path and `groupId` were changed to `edu.cmipt`.
2. Delete the redundant directory `gcs-back-end`.
3. Use `.gitignore` to set files that git should ignore and not track.
  • Loading branch information
Quentin9922 committed Jul 22, 2024
1 parent 9b52b81 commit 0597302
Show file tree
Hide file tree
Showing 11 changed files with 24 additions and 117 deletions.
22 changes: 22 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -22,3 +22,25 @@
# virtual machine crash logs, see http://www.java.com/en/download/help/error_hotspot.xml
hs_err_pid*
replay_pid*

# Eclipse specific files
/.settings/
/.project
/.classpath
/.factorypath

# IntelliJ IDEA specific files
/.idea/
/*.iml
/out/

# VSCode specific files
/.vscode/

# Maven specific files
/target/

# Other common patterns
*.swp
.DS_Store
Thumbs.db
57 changes: 0 additions & 57 deletions gcs-back-end/.classpath

This file was deleted.

4 changes: 0 additions & 4 deletions gcs-back-end/.factorypath

This file was deleted.

34 changes: 0 additions & 34 deletions gcs-back-end/.project

This file was deleted.

4 changes: 0 additions & 4 deletions gcs-back-end/.settings/org.eclipse.core.resources.prefs

This file was deleted.

4 changes: 0 additions & 4 deletions gcs-back-end/.settings/org.eclipse.jdt.apt.core.prefs

This file was deleted.

9 changes: 0 additions & 9 deletions gcs-back-end/.settings/org.eclipse.jdt.core.prefs

This file was deleted.

4 changes: 0 additions & 4 deletions gcs-back-end/.settings/org.eclipse.m2e.core.prefs

This file was deleted.

3 changes: 2 additions & 1 deletion gcs-back-end/pom.xml → pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
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>

<groupId>com.cmipt</groupId>
<groupId>edu.cmipt</groupId>
<artifactId>gcs-back-end</artifactId>
<version>1.0-SNAPSHOT</version>

Expand All @@ -17,6 +17,7 @@
<maven.compiler.source>17</maven.compiler.source>
<maven.compiler.target>17</maven.compiler.target>
<java.version>17</java.version>
<spring.boot.version>2.5.4</spring.boot.version>
</properties>

<dependencies>
Expand Down
File renamed without changes.
File renamed without changes.

0 comments on commit 0597302

Please sign in to comment.