Skip to content

Commit 7ff9d51

Browse files
Move changes from PR that created the spring auth server
1 parent 765a592 commit 7ff9d51

31 files changed

+269
-9
lines changed
Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
# Read Me First
2+
The following was discovered as part of building this project:
3+
4+
* The original package name 'com.rabbitmq.authorization-server' is invalid and this project uses 'com.rabbitmq.authorization_server' instead.
5+
6+
# Getting Started
7+
8+
### Reference Documentation
9+
For further reference, please consider the following sections:
10+
11+
* [Official Apache Maven documentation](https://maven.apache.org/guides/index.html)
12+
* [Spring Boot Maven Plugin Reference Guide](https://docs.spring.io/spring-boot/3.5.0/maven-plugin)
13+
* [Create an OCI image](https://docs.spring.io/spring-boot/3.5.0/maven-plugin/build-image.html)
14+
15+
### Maven Parent overrides
16+
17+
Due to Maven's design, elements are inherited from the parent POM to the project POM.
18+
While most of the inheritance is fine, it also inherits unwanted elements like `<license>` and `<developers>` from the parent.
19+
To prevent this, the project POM contains empty overrides for these elements.
20+
If you manually switch to a different parent and actually want the inheritance, you need to remove those overrides.
21+

selenium/suites/authnz-messaging/auth-cache-http-backends.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
SCRIPT="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )"
44

55
TEST_CASES_PATH=/authnz-msg-protocols
6-
PROFILES="http-user auth-http auth_backends-cache-http "
6+
PROFILES="amqp-http-user auth-http auth_backends-cache-http "
77

88
source $SCRIPT/../../bin/suite_template
99
runWith mock-auth-backend-http

selenium/suites/authnz-messaging/auth-cache-ldap-backends.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
SCRIPT="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )"
44

55
TEST_CASES_PATH=/authnz-msg-protocols
6-
PROFILES="ldap-user auth-ldap auth_backends-cache-ldap"
6+
PROFILES="amqp-ldap-user auth-ldap auth_backends-cache-ldap"
77

88
source $SCRIPT/../../bin/suite_template
99
runWith mock-auth-backend-ldap

selenium/suites/authnz-messaging/auth-http-backend-with-mtls.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
SCRIPT="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )"
44

55
TEST_CASES_PATH=/authnz-msg-protocols
6-
PROFILES="internal-user auth-http auth_backends-http auth-mtls"
6+
PROFILES="amqp-internal-user auth-http auth_backends-http auth-mtls"
77
# internal-user profile is used because the client certificates to
88
# access rabbitmq are issued with the alt_name = internal-user
99

selenium/suites/authnz-messaging/auth-http-internal-backends-with-internal.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
SCRIPT="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )"
44

55
TEST_CASES_PATH=/authnz-msg-protocols
6-
PROFILES="internal-user auth-http auth_backends-http-internal "
6+
PROFILES="amqp-internal-user auth-http auth_backends-http-internal "
77

88
source $SCRIPT/../../bin/suite_template
99
runWith mock-auth-backend-http

selenium/suites/authnz-messaging/auth-http-internal-backends.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
SCRIPT="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )"
44

55
TEST_CASES_PATH=/authnz-msg-protocols
6-
PROFILES="http-user auth-http auth_backends-http-internal "
6+
PROFILES="amqp-http-user auth-http auth_backends-http-internal "
77

88
source $SCRIPT/../../bin/suite_template
99
runWith mock-auth-backend-http

selenium/suites/authnz-messaging/auth-internal-backend.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
SCRIPT="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )"
44

55
TEST_CASES_PATH=/authnz-msg-protocols
6-
PROFILES="internal-user auth_backends-internal"
6+
PROFILES="amqp-internal-user auth_backends-internal"
77

88
source $SCRIPT/../../bin/suite_template
99
run

selenium/suites/authnz-messaging/auth-internal-http-backends.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
SCRIPT="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )"
44

55
TEST_CASES_PATH=/authnz-msg-protocols
6-
PROFILES="internal-user auth_http auth_backends-internal-http "
6+
PROFILES="amqp-internal-user auth_http auth_backends-internal-http "
77

88
source $SCRIPT/../../bin/suite_template
99
runWith mock-auth-backend-http

selenium/suites/authnz-messaging/auth-internal-mtls-backend.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
SCRIPT="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )"
44

55
TEST_CASES_PATH=/authnz-msg-protocols
6-
PROFILES="internal-user auth_backends-internal tls auth-mtls"
6+
PROFILES="amqp-internal-user auth_backends-internal tls auth-mtls"
77

88
source $SCRIPT/../../bin/suite_template
99
run

selenium/suites/authnz-messaging/auth-ldap-backend.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
SCRIPT="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )"
44

55
TEST_CASES_PATH=/authnz-msg-protocols
6-
PROFILES="ldap-user auth-ldap auth_backends-ldap "
6+
PROFILES="amqp-ldap-user auth-ldap auth_backends-ldap "
77

88
source $SCRIPT/../../bin/suite_template
99
runWith mock-auth-backend-ldap

0 commit comments

Comments
 (0)