Skip to content

Commit

Permalink
[rf2] add missing .settings folder to prevent NPE in Eclipse Gradle
Browse files Browse the repository at this point in the history
  • Loading branch information
cmark committed Feb 20, 2019
1 parent e21b6d1 commit d0aa15c
Show file tree
Hide file tree
Showing 4 changed files with 30 additions and 31 deletions.
3 changes: 0 additions & 3 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -3,9 +3,6 @@
build/
bin/

# IDE files
.settings

# Log files
*.log

Expand Down
2 changes: 1 addition & 1 deletion .project
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<?xml version="1.0" encoding="UTF-8"?>
<projectDescription>
<name>super-rf2</name>
<comment>Project rftool created by Buildship.</comment>
<comment></comment>
<projects>
</projects>
<buildSpec>
Expand Down
2 changes: 2 additions & 0 deletions .settings/org.eclipse.buildship.core.prefs
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
connection.project.dir=
eclipse.preferences.version=1
54 changes: 27 additions & 27 deletions build.gradle
Original file line number Diff line number Diff line change
@@ -1,27 +1,27 @@
plugins {
id 'java-library'
id 'org.beryx.runtime' version '1.1.5'
}

sourceCompatibility = 11
targetCompatibility = 11

repositories {
jcenter()
}

dependencies {
implementation 'info.picocli:picocli:3.9.5'
}

application {
mainClassName = 'superrf2.RF2'
applicationName = 'rf2'
}

runtime {
options = ['--strip-debug', '--compress', '2', '--no-header-files', '--no-man-pages']
modules = ['java.base']
imageDir = file("$buildDir/super-rf2")
imageZip = file("$buildDir/super-rf2.zip")
}
plugins {
id 'java-library'
id 'org.beryx.runtime' version '1.1.5'
}

sourceCompatibility = 11
targetCompatibility = 11

repositories {
jcenter()
}

dependencies {
implementation 'info.picocli:picocli:3.9.5'
}

application {
mainClassName = 'superrf2.RF2'
applicationName = 'rf2'
}

runtime {
options = ['--strip-debug', '--compress', '2', '--no-header-files', '--no-man-pages']
modules = ['java.base']
imageDir = file("$buildDir/super-rf2")
imageZip = file("$buildDir/super-rf2.zip")
}

0 comments on commit d0aa15c

Please sign in to comment.