André Martins
sourceSets.main.allJava
Go to definition
apply plugin: 'maven-publish' task sourcesJar(type: Jar) { from sourceSets.main.allJava classifier 'sources' } publishing { repositories { maven { name 'myRepo' url '<url>' credentials { username 'user' password 'password' } } } publications { mavenJava(MavenPublication) { from components.java artifact sourcesJar } } }
Chris Lee
configure<JavaPluginExtension> { withJavadocJar() withSourcesJar() }
java { withJavadocJar() withSourcesJar() }
A modern programming language that makes developers happier.