다중 프로젝트 빌드가 있고 하위 프로젝트 중 하나에 뚱뚱한 항아리를 빌드하는 작업을 넣었습니다. 요리 책에 설명 된 것과 유사한 작업을 만들었습니다 .
jar {
from configurations.compile.collect { it.isDirectory() ? it : zipTree(it) }
manifest { attributes 'Main-Class': 'com.benmccann.gradle.test.WebServer' }
}
실행하면 다음 오류가 발생합니다.
원인 : 해결되지 않은 상태가 아닌 구성을 변경할 수 없습니다!
이 오류가 무엇을 의미하는지 잘 모르겠습니다. 버그 일 경우를 대비하여 Gradle JIRA에보고했습니다 .
답변
업데이트 : 최신 Gradle 버전 (4+) compile
에서는 새 api
및 implementation
구성 을 위해 한정자가 더 이상 사용되지 않습니다 . 이것을 사용하면 다음이 효과가 있습니다.
// Include dependent libraries in archive.
mainClassName = "com.company.application.Main"
jar {
manifest {
attributes "Main-Class": "$mainClassName"
}
from {
configurations.runtimeClasspath.collect { it.isDirectory() ? it : zipTree(it) }
}
}
이전 gradle 버전의 경우 또는 종속성에 대해 “컴파일”한정자를 계속 사용하는 경우 다음과 같이 작동합니다.
// Include dependent libraries in archive.
mainClassName = "com.company.application.Main"
jar {
manifest {
attributes "Main-Class": "$mainClassName"
}
from {
configurations.compile.collect { it.isDirectory() ? it : zipTree(it) }
}
}
주 mainClassName
전에 나타나야합니다 jar {
.
답변
@felix의 대답은 거의 나를 데려 왔습니다. 두 가지 문제가있었습니다.
- Gradle 1.5에서는 fatJar 작업 내에서 매니페스트 태그가 인식되지 않았으므로 Main-Class 속성을 직접 설정할 수 없습니다.
- 항아리에 충돌하는 외부 META-INF 파일이 있습니다.
다음 설정은이 문제를 해결합니다.
jar {
manifest {
attributes(
'Main-Class': 'my.project.main',
)
}
}
task fatJar(type: Jar) {
manifest.from jar.manifest
classifier = 'all'
from {
configurations.runtimeClasspath.collect { it.isDirectory() ? it : zipTree(it) }
} {
exclude "META-INF/*.SF"
exclude "META-INF/*.DSA"
exclude "META-INF/*.RSA"
}
with jar
}
이것을 표준 어셈블 또는 빌드 태스크에 추가하려면 다음을 추가하십시오.
artifacts {
archives fatJar
}
편집 : @mjaggard 덕분에 : Gradle의 최신 버전에서 다음 configurations.runtime
으로 변경하십시오 .configurations.runtimeClasspath
답변
당신이 원하는 경우 jar
작업이 정상적으로 작동도 추가해야하는 fatJar
작업을, 다음을 사용 :
task fatJar(type: Jar) {
classifier = 'all'
from { configurations.compile.collect { it.isDirectory() ? it : zipTree(it) } }
with jar
}
중요한 부분은 with jar
입니다. 그것 없이는이 프로젝트의 수업이 포함되지 않습니다.
답변
이것은 나를 위해 잘 작동합니다.
내 메인 클래스 :
package com.curso.online.gradle;
import org.apache.commons.lang3.StringUtils;
import org.apache.log4j.Logger;
public class Main {
public static void main(String[] args) {
Logger logger = Logger.getLogger(Main.class);
logger.debug("Starting demo");
String s = "Some Value";
if (!StringUtils.isEmpty(s)) {
System.out.println("Welcome ");
}
logger.debug("End of demo");
}
}
그리고 그것은 내 파일 build.gradle의 내용입니다.
apply plugin: 'java'
apply plugin: 'eclipse'
repositories {
mavenCentral()
}
dependencies {
compile group: 'commons-collections', name: 'commons-collections', version: '3.2'
testCompile group: 'junit', name: 'junit', version: '4.+'
compile 'org.apache.commons:commons-lang3:3.0'
compile 'log4j:log4j:1.2.16'
}
task fatJar(type: Jar) {
manifest {
attributes 'Main-Class': 'com.curso.online.gradle.Main'
}
baseName = project.name + '-all'
from { configurations.compile.collect { it.isDirectory() ? it : zipTree(it) } }
with jar
}
그리고 콘솔에 다음을 작성합니다.
java -jar ProyectoEclipseTest-all.jar
그리고 출력은 훌륭합니다.
log4j:WARN No appenders could be found for logger (com.curso.online.gradle.Main)
.
log4j:WARN Please initialize the log4j system properly.
log4j:WARN See http://logging.apache.org/log4j/1.2/faq.html#noconfig for more in
fo.
Welcome
답변
서명 된 JAR의 문제를 피하고 기본 실행 가능 클래스로 fat JAR을 생성하려면 gradle-one-jar plugin을 제안 합니다. One-JAR 프로젝트 를 사용하는 간단한 플러그인 .
사용하기 쉬운:
apply plugin: 'gradle-one-jar'
buildscript {
repositories {
mavenCentral()
}
dependencies {
classpath 'com.github.rholder:gradle-one-jar:1.0.4'
}
}
task myjar(type: OneJar) {
mainClass = 'com.benmccann.gradle.test.WebServer'
}
답변
간단한 해결
jar {
manifest {
attributes 'Main-Class': 'cova2.Main'
}
doFirst {
from { configurations.runtime.collect { it.isDirectory() ? it : zipTree(it) } }
}
}
답변
@ben의 대답은 내 종속성이 너무 크고 다음 오류가 발생한다는 점을 제외하면 거의 작동합니다.
Execution failed for task ':jar'.
> archive contains more than 65535 entries.
To build this archive, please enable the zip64 extension.
이 문제를 해결하려면 다음 코드를 사용해야합니다.
mainClassName = "com.company.application.Main"
jar {
manifest {
attributes "Main-Class": "$mainClassName"
}
zip64 = true
from {
configurations.compile.collect { it.isDirectory() ? it : zipTree(it) }
}
}