프로젝트의 런타임 종속성을 target/lib
폴더에 복사하려면 어떻게합니까?
지금과 mvn clean install
같이 target
폴더에는 내 프로젝트의 jar 만 포함되지만 런타임 종속성은 없습니다.
프로젝트의 런타임 종속성을 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>
excludeScope
옵션 ( maven.apache.org/plugins/maven-dependency-plugin/… )을 추가했습니다 .
<excludeScope>test</excludeScope>
내부로 이동 configuration
합니다.
가장 좋은 방법은 수행하려는 작업에 따라 다릅니다.
Maven dependency plugin , 특히 dependency : copy-dependencies goal을 살펴보십시오 . The dependency : 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
이 작업을 가끔 수행하고 (따라서 POM을 변경하지 않으려면) 다음 명령 줄을 시도하십시오.
mvn 종속성 : 복사 종속성 -DoutputDirectory = $ {project.build.directory} / lib
마지막 인수 를 생략하면 종속성이 배치됩니다 target/dependencies
.
mvn dependency:copy-dependencies -DoutputDirectory=./lib
다음과 같이 해보십시오 :
<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>
maven clean install
, 당신은 찾을 것 lib
입니다target
install
위상을 process-resources
종속성이 이전에 복사되도록 build
목표를 실행
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
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>
이미 언급 한 내용을 간단히 설명하십시오. 코드와 함께 종속성을 포함하는 실행 가능한 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 종속성을 추가하기 만하면됩니다.