Commit 0387992c authored by Melledy's avatar Melledy
Browse files

Fix eclipse gradle support

parent ae00ab2d
...@@ -23,6 +23,8 @@ plugins { ...@@ -23,6 +23,8 @@ plugins {
id 'com.google.protobuf' version "0.8.18" id 'com.google.protobuf' version "0.8.18"
id 'idea' id 'idea'
id 'eclipse'
// Apply the application plugin to add support for building a CLI application // Apply the application plugin to add support for building a CLI application
id 'application' id 'application'
...@@ -189,6 +191,14 @@ idea { ...@@ -189,6 +191,14 @@ idea {
} }
} }
eclipse {
classpath {
file.whenMerged { cp ->
cp.entries.add( new org.gradle.plugins.ide.eclipse.model.SourceFolder('src/generated/main/java', null) )
}
}
}
signing { signing {
sign publishing.publications.mavenJava sign publishing.publications.mavenJava
} }
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment