|
47 | 47 | <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> |
48 | 48 | </properties> |
49 | 49 | <dependencies> |
| 50 | + <!--slf4j日志门面--> |
50 | 51 | <dependency> |
51 | 52 | <groupId>org.slf4j</groupId> |
52 | 53 | <artifactId>slf4j-api</artifactId> |
53 | | - <version>1.7.10</version> |
| 54 | + <version>1.7.25</version> |
54 | 55 | </dependency> |
| 56 | + <!--logback日志实现 logback-classic涵盖了logback-core依赖,不需要重复导入--> |
55 | 57 | <dependency> |
56 | 58 | <groupId>ch.qos.logback</groupId> |
57 | 59 | <artifactId>logback-classic</artifactId> |
58 | | - <version>1.4.4</version> |
59 | | - </dependency> |
60 | | - <dependency> |
61 | | - <groupId>io.github.er1c</groupId> |
62 | | - <artifactId>scala-stringutils_2.13</artifactId> |
63 | | - <version>0.1.0</version> |
| 60 | + <version>1.2.3</version> |
64 | 61 | </dependency> |
65 | 62 | <dependency> |
66 | 63 | <groupId>org.apache.commons</groupId> |
|
73 | 70 | <version>23.0.0</version> |
74 | 71 | <scope>compile</scope> |
75 | 72 | </dependency> |
76 | | - <dependency> |
77 | | - <groupId>org.springframework.boot</groupId> |
78 | | - <artifactId>spring-boot-starter-data-jdbc</artifactId> |
79 | | - <version>2.7.5</version> |
80 | | - </dependency> |
81 | | - <dependency> |
82 | | - <groupId>org.springframework.boot</groupId> |
83 | | - <artifactId>spring-boot-starter-data-jpa</artifactId> |
84 | | - <version>2.7.5</version> |
85 | | - </dependency> |
86 | | - <dependency> |
87 | | - <groupId>org.springframework.boot</groupId> |
88 | | - <artifactId>spring-boot-starter-jdbc</artifactId> |
89 | | - <version>2.7.5</version> |
90 | | - </dependency> |
91 | | - <dependency> |
92 | | - <groupId>org.springframework.boot</groupId> |
93 | | - <artifactId>spring-boot-starter-web</artifactId> |
94 | | - <version>2.7.5</version> |
95 | | - </dependency> |
96 | | - |
97 | | - <dependency> |
98 | | - <groupId>mysql</groupId> |
99 | | - <artifactId>mysql-connector-java</artifactId> |
100 | | - <version>8.0.30</version> |
101 | | - <scope>runtime</scope> |
102 | | - </dependency> |
103 | | - <dependency> |
104 | | - <groupId>org.mariadb.jdbc</groupId> |
105 | | - <artifactId>mariadb-java-client</artifactId> |
106 | | - <version>3.0.6</version> |
107 | | - <scope>runtime</scope> |
108 | | - </dependency> |
109 | | - <dependency> |
110 | | - <groupId>org.springframework.boot</groupId> |
111 | | - <artifactId>spring-boot-starter-test</artifactId> |
112 | | - <version>2.7.5</version> |
113 | | - <scope>test</scope> |
114 | | - </dependency> |
115 | | - <dependency> |
116 | | - <groupId>org.fusesource</groupId> |
117 | | - <artifactId>sigar</artifactId> |
118 | | - <version>1.6.4</version> |
119 | | - </dependency> |
120 | 73 | <dependency> |
121 | 74 | <groupId>commons-io</groupId> |
122 | 75 | <artifactId>commons-io</artifactId> |
|
129 | 82 | </dependency> |
130 | 83 | </dependencies> |
131 | 84 | <build> |
| 85 | + <defaultGoal>compile</defaultGoal> |
132 | 86 | <plugins> |
133 | 87 | <plugin> |
134 | 88 | <groupId>org.springframework.boot</groupId> |
|
0 commit comments