Maven이 의존성을 target / lib에 복사하도록 강제
프로젝트의 런타임 종속성을 target/lib
폴더에 복사하려면 어떻게합니까?
지금과 mvn clean install
같이 target
폴더에는 내 프로젝트의 jar 만 포함되지만 런타임 종속성은 없습니다.
이것은 나를 위해 작동합니다 :
<project>
...
<profiles>
<profile>
<id>qa</id>
<build>
<plugins>
<plugin>
<artifactId>maven-dependency-plugin</artifactId>
<executions>
<execution>
<phase>install</phase>
<goals>
<goal>copy-dependencies</goal>
</goals>
<configuration>
<outputDirectory>${project.build.directory}/lib</outputDirectory>
</configuration>
</execution>
</executions>
</plugin>
</plugins>
</build>
</profile>
</profiles>
</project>
가장 좋은 방법은 수행하려는 작업에 따라 다릅니다.
- 종속성을 WAR 또는 EAR 파일로 번들하려면 프로젝트의 패키징 유형을 EAR 또는 WAR로 설정하십시오. Maven은 종속성을 올바른 위치에 묶습니다.
- 모든 종속성과 함께 코드를 포함하는 JAR 파일을 작성 하려면 jar-with-dependencies 설명자 와 함께 어셈블리 플러그인 을 사용하십시오 . Maven은 모든 클래스와 모든 종속성의 클래스로 완전한 JAR 파일을 생성합니다.
- 대화식으로 대상 디렉토리로 종속성을 가져 오려면 종속성 플러그인을 사용 하여 파일을 복사하십시오.
- 다른 유형의 처리에 대한 종속성을 가져 오려면 고유 한 플러그인을 생성해야합니다. 종속성 목록과 디스크에서의 위치를 가져 오는 API가 있습니다. 거기에서 가져 가야합니다 ...
mvn install dependency:copy-dependencies
대상 폴더에 작성된 종속성 디렉토리로 나를 위해 작동합니다. 좋아요!
Maven dependency plugin , 특히 dependency : copy-dependencies goal을 살펴보십시오 . Depend : copy-dependencies mojo 제목 아래 의 예를 살펴보십시오 . 설정 outputDirectory $ {BASEDIR} / 대상 / lib 디렉토리에 구성 속성을 (저는 믿습니다, 당신은 테스트를해야합니다).
도움이 되었기를 바랍니다.
다른 단계의 maven을 사용하지 않고 대상 디렉토리에 종속성을 복사 해야하는 경우 간단하고 우아한 솔루션입니다 (Vaadin으로 작업 할 때 매우 유용합니다).
완벽한 pom 예 :
<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">
<modelVersion>4.0.0</modelVersion>
<groupId>groupId</groupId>
<artifactId>artifactId</artifactId>
<version>1.0</version>
<dependencies>
<dependency>
<groupId>org.mybatis</groupId>
<artifactId>mybatis-spring</artifactId>
<version>1.1.1</version>
</dependency>
</dependencies>
<build>
<plugins>
<plugin>
<artifactId>maven-dependency-plugin</artifactId>
<executions>
<execution>
<phase>process-sources</phase>
<goals>
<goal>copy-dependencies</goal>
</goals>
<configuration>
<outputDirectory>${targetdirectory}</outputDirectory>
</configuration>
</execution>
</executions>
</plugin>
</plugins>
</build>
</project>
그런 다음 실행 mvn process-sources
jar 파일 종속성은 다음에서 찾을 수 있습니다. /target/dependency
다음과 같이 해보십시오 :
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-jar-plugin</artifactId>
<version>2.4</version>
<configuration>
<archive>
<manifest>
<addClasspath>true</addClasspath>
<classpathPrefix>lib/</classpathPrefix>
<mainClass>MainClass</mainClass>
</manifest>
</archive>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-dependency-plugin</artifactId>
<version>2.4</version>
<executions>
<execution>
<id>copy</id>
<phase>install</phase>
<goals>
<goal>copy-dependencies</goal>
</goals>
<configuration>
<outputDirectory>
${project.build.directory}/lib
</outputDirectory>
</configuration>
</execution>
</executions>
</plugin>
이 작업을 가끔 수행하고 (따라서 POM을 변경하지 않으려면) 다음 명령 줄을 시도하십시오.
mvn 종속성 : copy-dependencies -DoutputDirectory = $ {project.build.directory} / lib
마지막 인수 를 생략하면 종속성이 배치됩니다 target/dependencies
.
pom.xml 안에 다음 스 니펫 만 있으면됩니다 build/plugins
.
<plugin>
<artifactId>maven-dependency-plugin</artifactId>
<executions>
<execution>
<phase>prepare-package</phase>
<goals>
<goal>copy-dependencies</goal>
</goals>
<configuration>
<outputDirectory>${project.build.directory}/lib</outputDirectory>
</configuration>
</execution>
</executions>
</plugin>
위의 package
단계 는 실행 단계 에서 실행됩니다.
mvn clean package
그리고 종속성은 코드 조각에 지정된 outputDirectory에 복사됩니다 ( lib
이 경우).
가끔 만 그렇게하려면 pom.xml을 변경할 필요가 없습니다. 간단히 다음을 실행하십시오.
mvn clean package dependency:copy-dependencies
인 디폴트 위치를 무시하려면 ${project.build.directory}/dependencies
, 시스템 속성을 추가 이름 outputDirectory
, 즉,
-DoutputDirectory=${project.build.directory}/lib
가정
- pom.xml을 변경하고 싶지 않습니다.
- 테스트 범위 (예 : junit.jar) 또는 제공된 종속성 (예 : wlfullclient.jar)을 원하지 않습니다
여기 나를 위해 일한 것이 아닙니다.
mvn 설치 종속성 : copy-dependencies -DincludeScope = runtime -DoutputDirectory = target / lib
MainClass를 호출하기 위해 모든 의존성 및 일부 스크립트와 함께 애플리케이션 jar 번들을 제공하려면 appassembler-maven-plugin을보십시오 .
다음 구성은 응용 프로그램을 시작하기 위해 Window 및 Linux 용 스크립트를 생성합니다 (모든 종속 jar을 참조하는 생성 된 경로와 함께 모든 종속 항목을 대상 / 애플리케이터 아래의 lib 폴더로 다운로드). 그런 다음 어셈블리 플러그인 을 사용하여 전체를 패키징 할 수 있습니다 . jar와 함께 설치 / 배포되는 zip의 appassembler 디렉토리를 저장소에 저장하십시오.
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>appassembler-maven-plugin</artifactId>
<version>1.0</version>
<executions>
<execution>
<id>generate-jsw-scripts</id>
<phase>package</phase>
<goals>
<goal>generate-daemons</goal>
</goals>
<configuration>
<!--declare the JSW config -->
<daemons>
<daemon>
<id>myApp</id>
<mainClass>name.seller.rich.MyMainClass</mainClass>
<commandLineArguments>
<commandLineArgument>start</commandLineArgument>
</commandLineArguments>
<platforms>
<platform>jsw</platform>
</platforms>
</daemon>
</daemons>
<target>${project.build.directory}/appassembler</target>
</configuration>
</execution>
<execution>
<id>assemble-standalone</id>
<phase>integration-test</phase>
<goals>
<goal>assemble</goal>
</goals>
<configuration>
<programs>
<program>
<mainClass>name.seller.rich.MyMainClass</mainClass>
<!-- the name of the bat/sh files to be generated -->
<name>mymain</name>
</program>
</programs>
<platforms>
<platform>windows</platform>
<platform>unix</platform>
</platforms>
<repositoryLayout>flat</repositoryLayout>
<repositoryName>lib</repositoryName>
</configuration>
</execution>
</executions>
</plugin>
<plugin>
<artifactId>maven-assembly-plugin</artifactId>
<version>2.2-beta-4</version>
<executions>
<execution>
<phase>integration-test</phase>
<goals>
<goal>single</goal>
</goals>
<configuration>
<descriptors>
<descriptor>src/main/assembly/archive.xml</descriptor>
</descriptors>
</configuration>
</execution>
</executions>
</plugin>
디렉토리를 압축으로 패키지화하는 어셈블리 디스크립터 (src / main / assembly)는 다음과 같습니다.
<assembly>
<id>archive</id>
<formats>
<format>zip</format>
</formats>
<fileSets>
<fileSet>
<directory>${project.build.directory}/appassembler</directory>
<outputDirectory>/</outputDirectory>
</fileSet>
</fileSets>
</assembly>
프로젝트를 전쟁이나 귀로 만드는 경우 maven은 종속성을 복사합니다.
당신은 사용 할 수 있습니다 그늘 플러그인 은 모든 타사 종속성을 묶을 수있는 동네 짱 항아리를 만들 수 있습니다.
이미 간단히 말한 것을 철자하십시오. 코드와 함께 종속성을 포함하는 실행 가능한 JAR 파일을 만들고 싶었습니다. 이것은 나를 위해 일했다 :
(1) pom의 <build> <plugins> 아래에 다음을 포함 시켰습니다.
<plugin>
<artifactId>maven-assembly-plugin</artifactId>
<version>2.2-beta-5</version>
<configuration>
<archive>
<manifest>
<mainClass>dk.certifikat.oces2.some.package.MyMainClass</mainClass>
</manifest>
</archive>
<descriptorRefs>
<descriptorRef>jar-with-dependencies</descriptorRef>
</descriptorRefs>
</configuration>
</plugin>
(2) mvn compile assembly : assembly를 실행하면 프로젝트의 대상 디렉토리에 원하는 my-project-0.1-SNAPSHOT-jar-with-dependencies.jar이 생성됩니다.
(3) java -jar my-project-0.1-SNAPSHOT-jar-with-dependencies.jar을 사용하여 JAR을 실행했습니다.
무거운 의존성을 포함시키는 강력한 솔루션이지만 Maven의 어셈블리 플러그인 이 나를 위해 속입니다.
@ Rich Seller의 답변 이 효과가 있지만 더 간단한 경우에는 사용 안내서의 발췌 부분 만 필요합니다 .
<project>
<build>
<plugins>
<plugin>
<artifactId>maven-assembly-plugin</artifactId>
<version>2.2.2</version>
<configuration>
<descriptorRefs>
<descriptorRef>jar-with-dependencies</descriptorRef>
</descriptorRefs>
</configuration>
</plugin>
</plugins>
</build>
</project>
Eclipse의 Tomcat 서버에서 실행할 때 WEB-INF / lib 파일에 표시되지 않는 종속성과 관련된 문제점이있는 경우 다음을보십시오.
Tomcat을 시작할 때 ClassNotFoundException DispatcherServlet (Maven 종속성이 wtpwebapps에 복사되지 않음)
프로젝트 속성> 배포 어셈블리에서 Maven 종속성을 추가하기 만하면됩니다.
참고 URL : https://stackoverflow.com/questions/97640/force-maven-to-copy-dependencies-into-target-lib
'IT story' 카테고리의 다른 글
리눅스`find`로 파일 이름 만 얻는 방법? (0) | 2020.04.10 |
---|---|
CSS를 통해 정렬 된 목록에서 두 번째 줄에 들여 쓰기를 유지하는 방법은 무엇입니까? (0) | 2020.04.10 |
Angular의 HTTP 요청에 URL 인수 (쿼리 문자열)를 전달하는 방법은 무엇입니까? (0) | 2020.04.10 |
Android에서 TextView에 줄 바꿈을 어떻게 추가합니까? (0) | 2020.04.10 |
Maven의 pom.xml에서 pluginManagement는 무엇입니까? (0) | 2020.04.10 |