IT FUCKIN WORKS YOOOOOOOO
This commit is contained in:
parent
c4d75c37cf
commit
b5afce1b83
2 changed files with 4 additions and 4 deletions
|
@ -2,7 +2,6 @@ plugins {
|
|||
id 'fabric-loom' version "$loomVersion"
|
||||
}
|
||||
|
||||
|
||||
archivesBaseName = getArtifactID("fabric")
|
||||
|
||||
loom {
|
||||
|
|
|
@ -12,14 +12,12 @@ buildscript {
|
|||
classpath 'org.spongepowered:mixingradle:0.7-SNAPSHOT'
|
||||
}
|
||||
}
|
||||
apply plugin: 'java'
|
||||
|
||||
apply plugin: 'net.minecraftforge.gradle'
|
||||
apply plugin: 'maven-publish'
|
||||
apply plugin: 'org.spongepowered.mixin'
|
||||
|
||||
archivesBaseName = getArtifactID("forge")
|
||||
|
||||
|
||||
// Adds KFF as dependency and Kotlin libs to the runtime classpath
|
||||
// If you already know how to add the Kotlin plugin to Gradle, this is the only line you need for KFF
|
||||
apply from: 'https://raw.githubusercontent.com/thedarkcolour/KotlinForForge/site/thedarkcolour/kotlinforforge/gradle/kff-3.3.2.gradle'
|
||||
|
@ -153,6 +151,9 @@ mixin {
|
|||
tasks.withType(JavaCompile) {
|
||||
source(project(":Common").sourceSets.main.allSource)
|
||||
}
|
||||
compileTestKotlin {
|
||||
source(project(":Common").sourceSets.main.allSource)
|
||||
}
|
||||
|
||||
sourceSets {
|
||||
main.resources.srcDirs += ['src/generated/resources', '../Common/src/generated/resources']
|
||||
|
|
Loading…
Reference in a new issue