javaEE-day04-maven-依赖管理-依赖范围

This commit is contained in:
2026-09-12 14:54:31 +08:00
parent 5436fe032e
commit 18f9390f7e
3 changed files with 35 additions and 8 deletions
@@ -1,6 +1,10 @@
package com.inmind;
//import org.slf4j.Logger;
public class HelloWorld {
// Logger logger;
public static void main(String[] args) {
System.out.println("Hello Maven");
}
@@ -0,0 +1,8 @@
package com.inmind;
import org.slf4j.Logger;
public class DemoTest {
Logger logger;
}