diff --git a/build.gradle b/build.gradle index 3e39ede..3bd9bb9 100644 --- a/build.gradle +++ b/build.gradle @@ -4,7 +4,7 @@ plugins { id 'com.diffplug.eclipse.apt' version '3.41.1' id 'java' id 'java-library' - id 'eclipse-wtp' + id 'eclipse' id 'idea' id 'war' } @@ -18,6 +18,17 @@ sourceCompatibility = "1.8" targetCompatibility = "1.8" +def nexusUrl = "https://nexus.eactive.synology.me:8090" + +allprojects { + repositories { + maven { + url "${nexusUrl}/repository/maven-public/" + allowInsecureProtocol = true + } + } +} + configurations { annotationProcessor configureEach { diff --git a/gradle.properties b/gradle.properties index e69de29..f13b527 100644 --- a/gradle.properties +++ b/gradle.properties @@ -0,0 +1 @@ +org.gradle.java.home=C:\\Program Files\\Java\\jdk-17