Prechádzať zdrojové kódy

优化本地jar的配置

ChenYang 1 rok pred
rodič
commit
da7f73e321
1 zmenil súbory, kde vykonal 28 pridanie a 2 odobranie
  1. 28 2
      pom.xml

+ 28 - 2
pom.xml

@@ -53,11 +53,13 @@
       <groupId>ch.qos.logback</groupId>
       <artifactId>logback-core</artifactId>
       <version>1.1.11</version>
+      <optional>true</optional>
     </dependency>
     <dependency>
       <groupId>ch.qos.logback</groupId>
       <artifactId>logback-classic</artifactId>
       <version>1.1.11</version>
+      <optional>true</optional>
     </dependency>
 
     <dependency>
@@ -85,14 +87,38 @@
       </extension>
     </extensions>
     <plugins>
-      <plugin>
+      <!--<plugin>
         <groupId>org.springframework.boot</groupId>
         <artifactId>spring-boot-maven-plugin</artifactId>
         <configuration>
           <includeSystemScope>true</includeSystemScope>
         </configuration>
+      </plugin>-->
+
+
+      <!-- Maven Assembly Plugin -->
+      <plugin>
+        <groupId>org.apache.maven.plugins</groupId>
+        <artifactId>maven-assembly-plugin</artifactId>
+        <configuration>
+          <!-- get all project dependencies -->
+          <descriptorRefs>
+            <descriptorRef>jar-with-dependencies</descriptorRef>
+          </descriptorRefs>
+        </configuration>
+        <executions>
+          <execution>
+            <id>make-assembly</id>
+            <!-- bind to the packaging phase -->
+            <phase>package</phase>
+            <goals>
+              <goal>single</goal>
+            </goals>
+          </execution>
+        </executions>
       </plugin>
-<!--      生成java文档注释-->
+
+      <!--      生成java文档注释-->
       <plugin>
         <groupId>org.apache.maven.plugins</groupId>
         <artifactId>maven-source-plugin</artifactId>