67d9a48d75
Updated dependencies also use those
43 lines
No EOL
823 B
Groovy
43 lines
No EOL
823 B
Groovy
task myJavadocs(type: Javadoc) {
|
|
source = sourceSets.api.java
|
|
include "appeng/api/**"
|
|
|
|
classpath = configurations.compile
|
|
}
|
|
|
|
task javadocJar(type: Jar, dependsOn: myJavadocs) {
|
|
classifier = 'javadoc'
|
|
from 'build/docs/javadoc/'
|
|
}
|
|
|
|
task devJar(type: Jar) {
|
|
|
|
manifest {
|
|
attributes 'FMLCorePlugin': 'appeng.transformer.AppEngCore'
|
|
attributes 'FMLCorePluginContainsFMLMod': 'true'
|
|
}
|
|
|
|
from(sourceSets.main.output) {
|
|
include "appeng/**"
|
|
include "assets/**"
|
|
include 'mcmod.info'
|
|
}
|
|
|
|
classifier = 'dev'
|
|
}
|
|
|
|
task apiJar(type: Jar) {
|
|
from sourceSets.api.java
|
|
include "appeng/api/**"
|
|
|
|
from sourceSets.main.output
|
|
include "appeng/api/**"
|
|
|
|
classifier = 'api'
|
|
}
|
|
|
|
artifacts {
|
|
archives devJar
|
|
archives apiJar
|
|
archives javadocJar
|
|
} |