Merge remote-tracking branch 'upstream/master' into client-storage-spi

This commit is contained in:
Bill Burke 2018-01-29 12:28:26 -05:00
commit 79f9de9de4
4 changed files with 43 additions and 8 deletions

View file

@ -23,13 +23,48 @@ goto wait_for_jboss
:install_adapters :install_adapters
call %JBOSS_HOME%\bin\jboss-cli.bat -c --file="%JBOSS_HOME%\bin\adapter-install.cli" call %JBOSS_HOME%\bin\jboss-cli.bat -c --file="%JBOSS_HOME%\bin\adapter-install.cli"
if %ERRORLEVEL% neq 0 set ERROR=%ERRORLEVEL% set ERROR=%ERRORLEVEL%
if "%SAML_SUPPORTED%" == "true" ( echo Installation of OIDC adapter ended with error code: "%ERROR%"
call %JBOSS_HOME%\bin\jboss-cli.bat -c --file="%JBOSS_HOME%\bin\adapter-install-saml.cli" if %ERROR% neq 0 (
if %ERRORLEVEL% neq 0 set ERROR=%ERRORLEVEL% goto shutdown_jboss
)
if "%ELYTRON_SUPPORTED%" == "true" (
call %JBOSS_HOME%\bin\jboss-cli.bat -c --file="%JBOSS_HOME%\bin\adapter-elytron-install.cli"
set ERROR=%ERRORLEVEL%
echo Installation of elytron ended with error code: "%ERROR%"
if %ERROR% neq 0 (
goto shutdown_jboss
)
) else (
call %JBOSS_HOME%\bin\jboss-cli.bat -c --file="%CLI_PATH%\remove-elytron-subsystem.cli"
set ERROR=%ERRORLEVEL%
echo Removing elytron subsystem ended with error code: "%ERROR%"
if %ERROR% neq 0 (
goto shutdown_jboss
)
) )
if "%SAML_SUPPORTED%" == "true" (
call %JBOSS_HOME%\bin\jboss-cli.bat -c --file="%JBOSS_HOME%\bin\adapter-install-saml.cli"
set ERROR=%ERRORLEVEL%
echo Installation of SAML adapter ended with error code: "%ERROR%"
if %ERROR% neq 0 (
goto shutdown_jboss
)
if "%ELYTRON_SUPPORTED%" == "true" (
call %JBOSS_HOME%\bin\jboss-cli.bat -c --file="%JBOSS_HOME%\bin\adapter-elytron-install-saml.cli"
set ERROR=%ERRORLEVEL%
echo Installation of saml elytron ended with error code: "%ERROR%"
if %ERROR% neq 0 (
goto shutdown_jboss
)
)
)
:shutdown_jboss :shutdown_jboss
echo Shutting down with error code: "%ERROR%"
call %JBOSS_HOME%\bin\jboss-cli.bat -c --command=":shutdown" call %JBOSS_HOME%\bin\jboss-cli.bat -c --command=":shutdown"
exit /b %ERROR% exit /b %ERROR%

View file

@ -36,6 +36,7 @@
<security.xslt>security.xsl</security.xslt> <security.xslt>security.xsl</security.xslt>
<oidc-adapter.version>${project.version}</oidc-adapter.version> <oidc-adapter.version>${project.version}</oidc-adapter.version>
<saml-adapter.version>${project.version}</saml-adapter.version> <saml-adapter.version>${project.version}</saml-adapter.version>
<app.server.elytron.adapter.supported>false</app.server.elytron.adapter.supported>
</properties> </properties>
<profiles> <profiles>

View file

@ -253,13 +253,12 @@
<!--see KEYCLOAK-4793--> <!--see KEYCLOAK-4793-->
<id>kie.maven.settings</id> <id>kie.maven.settings</id>
<activation> <activation>
<property> <activeByDefault>true</activeByDefault>
<name>repo.url</name>
</property>
</activation> </activation>
<properties> <properties>
<maven.repo.local>${user.home}/.m2/repository</maven.repo.local> <maven.repo.local>${user.home}/.m2/repository</maven.repo.local>
<settings.path>${user.home}/.m2/settings.xml</settings.path> <settings.path>${user.home}/.m2/settings.xml</settings.path>
<repo.url/>
<kie.maven.settings> <kie.maven.settings>
-Dkie.maven.settings.custom=${settings.path} -Dkie.maven.settings.custom=${settings.path}
-Dkie.maven.repo.local=${maven.repo.local} -Dkie.maven.repo.local=${maven.repo.local}

View file

@ -97,7 +97,7 @@ public class RulesPolicyManagementTest extends AbstractPolicyManagementTest {
representation.setLogic(Logic.NEGATIVE); representation.setLogic(Logic.NEGATIVE);
representation.setArtifactGroupId("org.keycloak"); representation.setArtifactGroupId("org.keycloak");
representation.setArtifactId("photoz-authz-policy"); representation.setArtifactId("photoz-authz-policy");
representation.setArtifactVersion(Version.VERSION); representation.setArtifactVersion(System.getProperty("project.version"));
representation.setModuleName("PhotozAuthzOwnerPolicy"); representation.setModuleName("PhotozAuthzOwnerPolicy");
representation.setSessionName("MainOwnerSession"); representation.setSessionName("MainOwnerSession");
representation.setScannerPeriod("1"); representation.setScannerPeriod("1");