9 changed files with 28 additions and 158 deletions
@ -1,22 +0,0 @@
@@ -1,22 +0,0 @@
|
||||
plugins { |
||||
id "java" |
||||
id "org.springframework.boot" |
||||
} |
||||
|
||||
apply plugin: "io.spring.dependency-management" |
||||
|
||||
repositories { |
||||
maven { url "file:${rootDir}/../int-test-maven-repository"} |
||||
mavenCentral() |
||||
maven { url "https://repo.spring.io/snapshot" } |
||||
maven { url "https://repo.spring.io/milestone" } |
||||
} |
||||
|
||||
dependencies { |
||||
implementation("org.springframework.boot:spring-boot-starter") |
||||
implementation("org.bouncycastle:bcprov-jdk18on:1.71") |
||||
} |
||||
|
||||
bootJar { |
||||
requiresUnpack '**/bcprov-jdk18on-*.jar' |
||||
} |
||||
@ -1,15 +0,0 @@
@@ -1,15 +0,0 @@
|
||||
pluginManagement { |
||||
repositories { |
||||
maven { url "file:${rootDir}/../int-test-maven-repository"} |
||||
mavenCentral() |
||||
maven { url "https://repo.spring.io/snapshot" } |
||||
maven { url "https://repo.spring.io/milestone" } |
||||
} |
||||
resolutionStrategy { |
||||
eachPlugin { |
||||
if (requested.id.id == "org.springframework.boot") { |
||||
useModule "org.springframework.boot:spring-boot-gradle-plugin:${requested.version}" |
||||
} |
||||
} |
||||
} |
||||
} |
||||
@ -1,36 +0,0 @@
@@ -1,36 +0,0 @@
|
||||
/* |
||||
* Copyright 2012-2022 the original author or authors. |
||||
* |
||||
* Licensed under the Apache License, Version 2.0 (the "License"); |
||||
* you may not use this file except in compliance with the License. |
||||
* You may obtain a copy of the License at |
||||
* |
||||
* https://www.apache.org/licenses/LICENSE-2.0
|
||||
* |
||||
* Unless required by applicable law or agreed to in writing, software |
||||
* distributed under the License is distributed on an "AS IS" BASIS, |
||||
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
||||
* See the License for the specific language governing permissions and |
||||
* limitations under the License. |
||||
*/ |
||||
|
||||
package org.springframework.boot.loaderapp; |
||||
|
||||
import java.security.Security; |
||||
import javax.crypto.Cipher; |
||||
import org.bouncycastle.jce.provider.BouncyCastleProvider; |
||||
|
||||
import org.springframework.boot.SpringApplication; |
||||
import org.springframework.boot.autoconfigure.SpringBootApplication; |
||||
|
||||
@SpringBootApplication |
||||
public class LoaderSignedJarTestApplication { |
||||
|
||||
public static void main(String[] args) throws Exception { |
||||
Security.addProvider(new BouncyCastleProvider()); |
||||
Cipher.getInstance("AES/CBC/PKCS5Padding","BC"); |
||||
System.out.println("Legion of the Bouncy Castle"); |
||||
SpringApplication.run(LoaderSignedJarTestApplication.class, args); |
||||
} |
||||
|
||||
} |
||||
Loading…
Reference in new issue