Explorar el Código

解决打包第三方依赖jar无法打包问题

hujie hace 1 año
padre
commit
c4c790a773
Se han modificado 1 ficheros con 17 adiciones y 1 borrados
  1. 17 1
      cn.com.taiji.system/pom.xml

+ 17 - 1
cn.com.taiji.system/pom.xml

@@ -366,7 +366,6 @@
 	</dependencies>
 	<build>
 		<plugins>
-		 
 			<plugin>
 				<groupId>org.apache.maven.plugins</groupId>
 				<artifactId>maven-compiler-plugin</artifactId>
@@ -409,6 +408,23 @@
 					</execution>
 				</executions>
 			</plugin>
+			<plugin>
+				<groupId>org.apache.maven.plugins</groupId>
+				<artifactId>maven-dependency-plugin</artifactId>
+				<version>2.8</version>
+				<executions>
+					<execution>
+						<phase>compile</phase>
+						<goals>
+							<goal>unpack-dependencies</goal>
+						</goals>
+						<configuration>
+							<includeScope>system</includeScope>
+							<outputDirectory>${project.build.outputDirectory}</outputDirectory>
+						</configuration>
+					</execution>
+				</executions>
+			</plugin>
 		</plugins>
 	</build>
 </project>