60 lines
2.3 KiB
Diff
60 lines
2.3 KiB
Diff
From 542f23cebfdd45b566fa12d7e2b5dd925e2745a1 Mon Sep 17 00:00:00 2001
|
|
From: wang--ge <wang__ge@126.com>
|
|
Date: Thu, 4 May 2023 11:35:33 +0800
|
|
Subject: [PATCH] add maven dependency plugin
|
|
|
|
---
|
|
pom.xml | 37 +++++++++++++++++++++++++++++++++++++
|
|
1 file changed, 37 insertions(+)
|
|
|
|
diff --git a/pom.xml b/pom.xml
|
|
index fd5d704..9cf59d8 100644
|
|
--- a/pom.xml
|
|
+++ b/pom.xml
|
|
@@ -1,5 +1,42 @@
|
|
<?xml version='1.0' encoding='UTF-8'?>
|
|
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
|
|
+ <build>
|
|
+ <plugins>
|
|
+ <plugin>
|
|
+ <groupId>org.apache.maven.plugins</groupId>
|
|
+ <artifactId>maven-dependency-plugin</artifactId>
|
|
+ <version>3.2.0</version>
|
|
+ <executions>
|
|
+ <execution>
|
|
+ <phase>prepare-package</phase>
|
|
+ <goals>
|
|
+ <goal>copy</goal>
|
|
+ </goals>
|
|
+ <configuration>
|
|
+ <artifactItems>
|
|
+ <artifactItem>
|
|
+ <groupId>biz.aQute.bnd</groupId>
|
|
+ <artifactId>biz.aQute.repository</artifactId>
|
|
+ <version>3.5.0</version>
|
|
+ <overWrite>false</overWrite>
|
|
+ <outputDirectory>${project.build.directory}</outputDirectory>
|
|
+ <destFileName></destFileName>
|
|
+ </artifactItem>
|
|
+ <artifactItem>
|
|
+ <groupId>biz.aQute.bnd</groupId>
|
|
+ <artifactId>biz.aQute.bnd.embedded-repo</artifactId>
|
|
+ <version>4.3.0</version>
|
|
+ <overWrite>false</overWrite>
|
|
+ <outputDirectory>${project.build.directory}</outputDirectory>
|
|
+ <destFileName></destFileName>
|
|
+ </artifactItem>
|
|
+ </artifactItems>
|
|
+ </configuration>
|
|
+ </execution>
|
|
+ </executions>
|
|
+ </plugin>
|
|
+ </plugins>
|
|
+ </build>
|
|
<!-- section added by maintainer -->
|
|
<dependencies>
|
|
<!-- begin of code added by maintainer -->
|
|
--
|
|
2.33.0
|
|
|