Files
Example-RPCP-plugin/build.gradle
T
Zacharias 11bab6e715 Updated the Plugin-API version to 0.1.4.1
Fixed entryPoint in plugin.json
added the getting of tools
added tools:
- TestTool: sends back "This is a test tool"
- TestToolAdvance: sends a "pong" back with the content of the "ping"
2026-07-05 21:28:21 +02:00

28 lines
576 B
Groovy

plugins {
id 'java'
id("com.gradleup.shadow") version "9.4.2"
}
group = 'me.neurodock'
version = '1.0-SNAPSHOT'
repositories {
mavenCentral()
mavenLocal()
maven {
url = "https://git.server.4zellen.se/api/packages/neurodock/maven"
name = "gitea"
}
}
dependencies {
testImplementation platform('org.junit:junit-bom:6.0.0')
testImplementation 'org.junit.jupiter:junit-jupiter'
testRuntimeOnly 'org.junit.platform:junit-platform-launcher'
compileOnly("me.neurodock:Plugin-API:0.1.4.1")
}
test {
useJUnitPlatform()
}