Skip to content

Commit

Permalink
first commit
Browse files Browse the repository at this point in the history
  • Loading branch information
2486865216 committed Mar 11, 2022
0 parents commit d400ece
Show file tree
Hide file tree
Showing 2 changed files with 23 additions and 0 deletions.
12 changes: 12 additions & 0 deletions pom.xml
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
<?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 http://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>

<groupId>org.example</groupId>
<artifactId>GItTest01</artifactId>
<version>1.0-SNAPSHOT</version>


</project>
11 changes: 11 additions & 0 deletions src/main/java/com/example/HelloGit/Hello.java
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
package com.example.HelloGit;

/**
* author ye
* createDate 2022/3/11 13:39
*/
public class Hello {
public static void main(String[] args) {
System.out.println("hello");
}
}

0 comments on commit d400ece

Please sign in to comment.