简体   繁体   中英

set Main-Class header with gradle from mainClassName

how do I get the jar task to set the Main-Class header from the mainClassName variable?

thufir@dur:~/NetBeansProjects/props$ 
thufir@dur:~/NetBeansProjects/props$ gradle clean assembleDist;java -jar build/libs/props.jar 

BUILD SUCCESSFUL in 1s
6 actionable tasks: 6 executed

Publishing build scan...
https://gradle.com/s/qwirajeu4guhq

no main manifest attribute, in build/libs/props.jar
thufir@dur:~/NetBeansProjects/props$ 
thufir@dur:~/NetBeansProjects/props$ cat build.gradle 
plugins {
    id 'com.gradle.build-scan' version '1.8' 
    id 'java'
    id 'application'
}

buildScan {
    licenseAgreementUrl = 'https://gradle.com/terms-of-service'
    licenseAgree = 'yes'
}

buildScan {
    publishAlways()
}

sourceCompatibility = 1.9
targetCompatibility = 1.9

mainClassName = 'net.bounceme.dur.props.Main'

jar {
    manifest {
//    attributes 'Main-Class': mainClassName
    attributes 'Class-Path': configurations.compile.collect { it.getName() }.join(' ')
    }
}

repositories {
    jcenter()
}

dependencies {
    // This dependency is found on compile classpath of this component and consumers.
  //  compile 'com.google.guava:guava:22.0'

    // Use JUnit test framework
//    testCompile 'junit:junit:4.12'
}


thufir@dur:~/NetBeansProjects/props$ 
version '1.0'

apply plugin: 'java'
apply plugin: 'application'

mainClassName = 'blah.blah.blah.blah.myMain'

jar {
  manifest {
    attributes(
      'Main-Class': mainClassName
    )
  }
}

This will result in a MANIFEST.MF of :

Manifest-Version: 1.0
Main-Class: blah.blah.blah.blah.myMain

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM