Commit 0982ec46 by guominglei

去除无用的日志依赖

parent 7c2dd41c
...@@ -32,19 +32,6 @@ ...@@ -32,19 +32,6 @@
</dependency> </dependency>
<dependency> <dependency>
<groupId>apache-log4j</groupId>
<artifactId>log4j</artifactId>
<version>1.2.8</version>
</dependency>
<dependency>
<groupId>org.slf4j</groupId>
<artifactId>slf4j-simple</artifactId>
<version>1.7.25</version>
<scope>compile</scope>
</dependency>
<dependency>
<groupId>commons-io</groupId> <groupId>commons-io</groupId>
<artifactId>commons-io</artifactId> <artifactId>commons-io</artifactId>
<version>2.6</version> <version>2.6</version>
...@@ -63,11 +50,11 @@ ...@@ -63,11 +50,11 @@
<build> <build>
<plugins> <plugins>
<plugin> <!--<plugin>
<groupId>org.springframework.boot</groupId> <groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-maven-plugin</artifactId> <artifactId>spring-boot-maven-plugin</artifactId>
<configuration> <configuration>
<!-- 指定SpringBoot程序的main函数入口类 --> &lt;!&ndash; 指定SpringBoot程序的main函数入口类 &ndash;&gt;
<mainClass>com.byit.executor.Test</mainClass> <mainClass>com.byit.executor.Test</mainClass>
</configuration> </configuration>
...@@ -78,6 +65,20 @@ ...@@ -78,6 +65,20 @@
</goals> </goals>
</execution> </execution>
</executions> </executions>
</plugin>-->
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-source-plugin</artifactId>
<version>2.0.2</version>
<executions>
<execution>
<id>attach-sources</id>
<goals>
<goal>jar</goal>
</goals>
</execution>
</executions>
</plugin> </plugin>
<plugin> <plugin>
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment