3 Commits

Author SHA1 Message Date
d11ac9a2ee Add and custom auth server base url for issuer 2021-02-16 10:08:32 +07:00
Joe Grandja
a90d98aa1e Use artifactoryUsername/Password for plugin repositories 2021-02-11 22:11:29 -05:00
Joe Grandja
e440935c14 Next Development Version 2021-02-11 21:52:34 -05:00
6 changed files with 18 additions and 6 deletions

View File

@@ -5,7 +5,15 @@ buildscript {
classpath 'io.spring.nohttp:nohttp-gradle:0.0.5.RELEASE'
}
repositories {
maven { url 'https://repo.spring.io/plugins-snapshot' }
maven {
url = 'https://repo.spring.io/plugins-snapshot'
if (project.hasProperty('artifactoryUsername')) {
credentials {
username "$artifactoryUsername"
password "$artifactoryPassword"
}
}
}
maven { url 'https://plugins.gradle.org/m2/' }
}
}

View File

@@ -1,4 +1,4 @@
version=0.1.0
version=0.1.1-SNAPSHOT
springBootVersion=2.4.2
org.gradle.jvmargs=-Xmx3g -XX:MaxPermSize=2048m -XX:+HeapDumpOnOutOfMemoryError
org.gradle.parallel=true

View File

@@ -24,7 +24,7 @@ package org.springframework.security.oauth2.core;
public final class Version {
private static final int MAJOR = 0;
private static final int MINOR = 1;
private static final int PATCH = 0;
private static final int PATCH = 1;
/**
* Global Serialization value for Spring Security Authorization Server classes.

View File

@@ -43,6 +43,10 @@ import org.springframework.security.oauth2.server.authorization.config.ProviderS
@Import(OAuth2AuthorizationServerConfiguration.class)
public class AuthorizationServerConfig {
private String getIssuer() {
return "http://localhost:9000";
}
// @formatter:off
@Bean
public RegisteredClientRepository registeredClientRepository() {
@@ -73,6 +77,6 @@ public class AuthorizationServerConfig {
@Bean
public ProviderSettings providerSettings() {
return new ProviderSettings().issuer("http://auth-server:9000");
return new ProviderSettings().issuer(getIssuer());
}
}

View File

@@ -41,7 +41,7 @@ spring:
client-name: messaging-client-client-credentials
provider:
spring:
issuer-uri: http://auth-server:9000
issuer-uri: http://localhost:9000
messages:
base-uri: http://localhost:8090/messages

View File

@@ -14,4 +14,4 @@ spring:
oauth2:
resourceserver:
jwt:
issuer-uri: http://auth-server:9000
issuer-uri: http://localhost:9000