TSK-1946: fix release job due to missing dependencies
This commit is contained in:
parent
131c1f0cb9
commit
a5c24e29cc
|
|
@ -349,6 +349,11 @@ jobs:
|
||||||
path: ~/.m2
|
path: ~/.m2
|
||||||
key: ${{ runner.os }}-${{ env.CACHE_MAVEN_NAME }}-${{ hashFiles('**/pom.xml') }}
|
key: ${{ runner.os }}-${{ env.CACHE_MAVEN_NAME }}-${{ hashFiles('**/pom.xml') }}
|
||||||
restore-keys: ${{ runner.os }}-${{ env.CACHE_MAVEN_NAME }}
|
restore-keys: ${{ runner.os }}-${{ env.CACHE_MAVEN_NAME }}
|
||||||
|
- name: Download taskana artifacts
|
||||||
|
uses: actions/download-artifact@v3
|
||||||
|
with:
|
||||||
|
name: ${{ env.ARTIFACTS_TASKANA_JARS_NAME }}
|
||||||
|
path: ${{ env.ARTIFACTS_TASKANA_JARS_PATH }}
|
||||||
- name: Download taskana-web dist artifact
|
- name: Download taskana-web dist artifact
|
||||||
uses: actions/download-artifact@v3
|
uses: actions/download-artifact@v3
|
||||||
with:
|
with:
|
||||||
|
|
|
||||||
|
|
@ -65,7 +65,7 @@ public class SpringSecurityToJaasFilter extends GenericFilterBean {
|
||||||
if (logger.isDebugEnabled()) {
|
if (logger.isDebugEnabled()) {
|
||||||
logger.debug("Attempting to obtainSubject using authentication : " + authentication);
|
logger.debug("Attempting to obtainSubject using authentication : " + authentication);
|
||||||
}
|
}
|
||||||
if (!authentication.isPresent() || !authentication.get().isAuthenticated()) {
|
if (authentication.isEmpty() || !authentication.get().isAuthenticated()) {
|
||||||
return Optional.empty();
|
return Optional.empty();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -64,7 +64,7 @@ public class SpringSecurityToJaasFilter extends GenericFilterBean {
|
||||||
if (logger.isDebugEnabled()) {
|
if (logger.isDebugEnabled()) {
|
||||||
logger.debug("Attempting to obtainSubject using authentication : " + authentication);
|
logger.debug("Attempting to obtainSubject using authentication : " + authentication);
|
||||||
}
|
}
|
||||||
if (!authentication.isPresent() || !authentication.get().isAuthenticated()) {
|
if (authentication.isEmpty() || !authentication.get().isAuthenticated()) {
|
||||||
return Optional.empty();
|
return Optional.empty();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue