From 4a591fcfef6cbddbd2b23ed0a59d1e5dddaa7c51 Mon Sep 17 00:00:00 2001 From: curry772 Date: Wed, 11 Mar 2026 10:16:52 +0900 Subject: [PATCH] =?UTF-8?q?Eclipse=20=EC=84=A4=EC=A0=95=20=EB=B0=8F=20JDK1?= =?UTF-8?q?7=20=EB=B9=8C=EB=93=9C=20=ED=99=98=EA=B2=BD=20=EA=B5=AC?= =?UTF-8?q?=EC=84=B1?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - build.gradle: nexus 저장소 추가, eclipse-wtp → eclipse 플러그인 변경 - gradle.properties: org.gradle.java.home=JDK17 설정 (nashorn-core:15.4 대응) --- build.gradle | 13 ++++++++++++- gradle.properties | 1 + 2 files changed, 13 insertions(+), 1 deletion(-) 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