com.matthewcasperson.build.services.impl.tasks.SourceJarTask.groovy Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of build Show documentation
Show all versions of build Show documentation
A set of Gradle plugins that can be used to build and publish the various artifacts that make up Iridium
The newest version!
package com.matthewcasperson.build.services.impl.tasks
import org.gradle.api.tasks.TaskAction
import org.gradle.jvm.tasks.Jar
/**
* Created by Matthew on 7/02/2016.
*/
class SourceJarTask extends Jar {
public SourceJarTask() {
classifier = 'sources'
from project.sourceSets.main.allSource
}
}