Merge pull request #401 from corda/clint-kaptexplicitidea

Generated files in node-schemas are now correctly identified by IntelliJ
This commit is contained in:
Clinton 2017-03-21 15:48:37 +00:00 committed by GitHub
commit bfdb31e9cf

View File

@ -1,9 +1,14 @@
apply plugin: 'kotlin'
apply plugin: 'kotlin-kapt'
apply plugin: 'idea'
apply plugin: 'net.corda.plugins.publish-utils'
description 'Corda node database schemas'
buildscript {
ext.generatedSourcesDir = "${projectDir}/generated/source/kapt/main"
}
repositories {
mavenLocal()
mavenCentral()
@ -26,7 +31,7 @@ sourceSets {
}
generated {
java {
srcDir "${projectDir}/generated/source/kapt/main/"
srcDir generatedSourcesDir
compileClasspath += sourceSets.main.compileClasspath + sourceSets.main.output
}
}
@ -76,3 +81,9 @@ project.afterEvaluate {
jar {
from sourceSets.generated.output
}
idea {
module {
sourceDirs += project.sourceSets.generated.allSource
}
}