Skip to content
This repository was archived by the owner on Jan 15, 2021. It is now read-only.

Update git ignore to exclude intellij folder #6

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@
.settings/
.classpath
.project
.idea

# Ignore Gradle GUI config
gradle-app.setting
Expand Down
12 changes: 11 additions & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ publishing {


group = "com.snobot.simulator.plugin"
version = "2020-0.0.0"
version = "2020-0.0.2"

pluginBundle {
website = 'https://github.com/pjreiniger/SnobotSimPlugin'
Expand All @@ -63,6 +63,16 @@ pluginBundle {
}
}

gradlePlugin {
plugins {
SnobotSimulatorPlugin {
id = "${project.group}.${project.archivesBaseName}"
displayName = 'Snobot Simulator Plugin'
implementationClass = 'com.snobot.simulator.plugin SnobotSimulatorPlugin'
}
}
}


wrapper {
gradleVersion = '5.0'
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -69,6 +69,8 @@ class RunJavaSnobotSimPlugin implements Plugin<Project> {
List<String> args = new ArrayList<>();
args.add(OperatingSystem.current().isWindows() ? "java" : Jvm.current().getExecutable("java").absolutePath)
args.add("-Djava.library.path=${ldpath}")
args.add("-Xdebug")
args.add("-Xrunjdwp:transport=dt_shmem,address=snobotSim,server=y,suspend=n")
args.add("-classpath")
args.add(classpath)
args.add("com.snobot.simulator.Main")
Expand Down