mirror of
https://github.com/corda/corda.git
synced 2025-01-29 15:43:55 +00:00
Generated files in node-schemas are now correctly identified by IntelliJ
This commit is contained in:
parent
18c57cf951
commit
e32c660a0f
@ -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
|
||||
}
|
||||
}
|
Loading…
x
Reference in New Issue
Block a user