Merge branch 'jenkins_with_weblogic' into master
This commit is contained in:
@@ -41,6 +41,7 @@ ApiTestManager/dist
|
|||||||
.cache
|
.cache
|
||||||
.env
|
.env
|
||||||
CLAUDE.md
|
CLAUDE.md
|
||||||
|
*.p12
|
||||||
|
|
||||||
src/main/generated
|
src/main/generated
|
||||||
.claude
|
.claude
|
||||||
+12
-1
@@ -4,7 +4,7 @@ plugins {
|
|||||||
id 'com.diffplug.eclipse.apt' version '3.41.1'
|
id 'com.diffplug.eclipse.apt' version '3.41.1'
|
||||||
id 'java'
|
id 'java'
|
||||||
id 'java-library'
|
id 'java-library'
|
||||||
id 'eclipse-wtp'
|
id 'eclipse'
|
||||||
id 'idea'
|
id 'idea'
|
||||||
id 'war'
|
id 'war'
|
||||||
}
|
}
|
||||||
@@ -18,6 +18,17 @@ sourceCompatibility = "1.8"
|
|||||||
targetCompatibility = "1.8"
|
targetCompatibility = "1.8"
|
||||||
|
|
||||||
|
|
||||||
|
def nexusUrl = "https://nexus.eactive.synology.me:8090"
|
||||||
|
|
||||||
|
allprojects {
|
||||||
|
repositories {
|
||||||
|
maven {
|
||||||
|
url "${nexusUrl}/repository/maven-public/"
|
||||||
|
allowInsecureProtocol = true
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
configurations {
|
configurations {
|
||||||
annotationProcessor
|
annotationProcessor
|
||||||
configureEach {
|
configureEach {
|
||||||
|
|||||||
@@ -0,0 +1 @@
|
|||||||
|
org.gradle.java.home=C:\\Program Files\\Java\\jdk-17
|
||||||
|
|||||||
@@ -11,9 +11,9 @@ server:
|
|||||||
port.http: 38080
|
port.http: 38080
|
||||||
port: 38443
|
port: 38443
|
||||||
ssl:
|
ssl:
|
||||||
enabled: true
|
enabled: ${SSL_ENABLED:false}
|
||||||
key-store: classpath:keystore.p12
|
key-store: ${KEY_STORE_PATH}
|
||||||
key-store-password: elink-ssl
|
key-store-password: ${KEY_STORE_PASSWORD:elink-ssl}
|
||||||
key-store-type: PKCS12
|
key-store-type: PKCS12
|
||||||
key-alias: elink-ssl
|
key-alias: elink-ssl
|
||||||
error.include-message: always
|
error.include-message: always
|
||||||
|
|||||||
Binary file not shown.
Reference in New Issue
Block a user