Skip to content

Instantly share code, notes, and snippets.

@iva-nova-e-katerina
Last active September 14, 2021 13:27
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save iva-nova-e-katerina/cb427be40dfb43030eaca6e3fc71dd2e to your computer and use it in GitHub Desktop.
Save iva-nova-e-katerina/cb427be40dfb43030eaca6e3fc71dd2e to your computer and use it in GitHub Desktop.
build.gradle
group 'com.fifesoft'
version '3.0.0-SNAPSHOT'
// NOTE: Local Java 8: /Library/Java/JavaVirtualMachines/jdk1.8.0_25.jdk/Contents/Home
allprojects {
repositories {
mavenCentral()
maven {
url 'https://oss.sonatype.org/content/repositories/snapshots'
url "https://plugins.gradle.org/m2/"
}
}
wrapper {
gradleVersion = '5.0'
}
}
subprojects {
apply plugin: 'java'
apply plugin: "com.github.blindpirate.osgi"
dependencies {
testCompile 'junit:junit:4.12'
classpath "gradle.plugin.com.github.blindpirate:gradle-legacy-osgi-plugin:0.0.4"
}
compileJava {
sourceCompatibility javaVersion
targetCompatibility javaVersion
options.debug = true
options.debugOptions.debugLevel = 'source,vars,lines'
options.compilerArgs << '-Xlint:deprecation' << '-Xlint:unchecked'
}
}
# Note that Maven- and signing-related properties are in <maven-home>/gradle.properties
javaVersion=1.8
version=3.0.0
rootProject.name = 'RSyntaxTextArea'
include 'RSyntaxTextArea', 'RSyntaxTextAreaDemo'
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment