Compare commits
No commits in common. "6bf8a382d849c820247284ef773b3fd01b066a72" and "a391453d7ef3d56dd632b1cffbeb5a50a8b7efff" have entirely different histories.
6bf8a382d8
...
a391453d7e
@ -1,4 +1,4 @@
|
|||||||
# 操作说明2
|
# adsfasdfsadf
|
||||||
|
|
||||||
当然可以!以下是一份 **专为协作者(如你)量身定制的完整 Git + CI/CD 协作流程指南**,基于你的真实使用场景:
|
当然可以!以下是一份 **专为协作者(如你)量身定制的完整 Git + CI/CD 协作流程指南**,基于你的真实使用场景:
|
||||||
|
|
||||||
|
|||||||
8
pom.xml
8
pom.xml
@ -11,12 +11,4 @@
|
|||||||
<maven.compiler.source>17</maven.compiler.source>
|
<maven.compiler.source>17</maven.compiler.source>
|
||||||
<maven.compiler.target>17</maven.compiler.target>
|
<maven.compiler.target>17</maven.compiler.target>
|
||||||
</properties>
|
</properties>
|
||||||
<dependencies>
|
|
||||||
<dependency>
|
|
||||||
<groupId>org.junit.jupiter</groupId>
|
|
||||||
<artifactId>junit-jupiter</artifactId>
|
|
||||||
<version>5.12.2</version>
|
|
||||||
<scope>test</scope>
|
|
||||||
</dependency>
|
|
||||||
</dependencies>
|
|
||||||
</project>
|
</project>
|
||||||
@ -4,10 +4,5 @@ public class App {
|
|||||||
public static void main(String[] args) {
|
public static void main(String[] args) {
|
||||||
System.out.println("Hello, World!");
|
System.out.println("Hello, World!");
|
||||||
}
|
}
|
||||||
|
|
||||||
public String greet() {
|
|
||||||
return "Hello, World!";
|
|
||||||
}
|
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
@ -1,8 +0,0 @@
|
|||||||
package com.example;
|
|
||||||
|
|
||||||
import org.junit.jupiter.api.Test;
|
|
||||||
import static org.junit.jupiter.api.Assertions.*;
|
|
||||||
|
|
||||||
public class AppTest {
|
|
||||||
@Test public void testGreet() { App app = new App(); assertEquals("Hello, World!", app.greet()); }
|
|
||||||
}
|
|
||||||
Loading…
x
Reference in New Issue
Block a user