Merge pull request #4465 from vramik/KEYCLOAK-4793
KEYCLOAK-4793 add kie.maven.settings.custom property to tests
This commit is contained in:
commit
9032889c15
2 changed files with 24 additions and 1 deletions
|
@ -86,6 +86,7 @@
|
||||||
${migration.import.properties}
|
${migration.import.properties}
|
||||||
${auth.server.profile}
|
${auth.server.profile}
|
||||||
${auth.server.feature}
|
${auth.server.feature}
|
||||||
|
${kie.maven.settings}
|
||||||
</property>
|
</property>
|
||||||
<property name="javaVmArguments">
|
<property name="javaVmArguments">
|
||||||
${auth.server.jboss.jvm.debug.args}
|
${auth.server.jboss.jvm.debug.args}
|
||||||
|
|
|
@ -90,6 +90,8 @@
|
||||||
|
|
||||||
<adapter.test.props/>
|
<adapter.test.props/>
|
||||||
<migration.import.properties/>
|
<migration.import.properties/>
|
||||||
|
<kie.maven.settings/>
|
||||||
|
|
||||||
<examples.home>${project.build.directory}/examples</examples.home>
|
<examples.home>${project.build.directory}/examples</examples.home>
|
||||||
|
|
||||||
<browser>htmlUnit</browser>
|
<browser>htmlUnit</browser>
|
||||||
|
@ -248,6 +250,7 @@
|
||||||
|
|
||||||
<adapter.test.props>${adapter.test.props}</adapter.test.props>
|
<adapter.test.props>${adapter.test.props}</adapter.test.props>
|
||||||
<migration.import.properties>${migration.import.properties}</migration.import.properties>
|
<migration.import.properties>${migration.import.properties}</migration.import.properties>
|
||||||
|
<kie.maven.settings>${kie.maven.settings}</kie.maven.settings>
|
||||||
|
|
||||||
<testsuite.constants>${testsuite.constants}</testsuite.constants>
|
<testsuite.constants>${testsuite.constants}</testsuite.constants>
|
||||||
<cli.log.output>${cli.log.output}</cli.log.output>
|
<cli.log.output>${cli.log.output}</cli.log.output>
|
||||||
|
@ -1256,6 +1259,25 @@
|
||||||
</properties>
|
</properties>
|
||||||
</profile>
|
</profile>
|
||||||
|
|
||||||
|
<profile>
|
||||||
|
<!--see KEYCLOAK-4793-->
|
||||||
|
<id>kie.maven.settings</id>
|
||||||
|
<activation>
|
||||||
|
<property>
|
||||||
|
<name>repo.url</name>
|
||||||
|
</property>
|
||||||
|
</activation>
|
||||||
|
<properties>
|
||||||
|
<maven.repo.local>${user.home}/.m2/repository</maven.repo.local>
|
||||||
|
<settings.path>${user.home}/.m2/settings.xml</settings.path>
|
||||||
|
<kie.maven.settings>
|
||||||
|
-Dkie.maven.settings.custom=${settings.path}
|
||||||
|
-Dkie.maven.repo.local=${maven.repo.local}
|
||||||
|
-Drepo.url=${repo.url}
|
||||||
|
</kie.maven.settings>
|
||||||
|
</properties>
|
||||||
|
</profile>
|
||||||
|
|
||||||
</profiles>
|
</profiles>
|
||||||
|
|
||||||
</project>
|
</project>
|
||||||
|
|
Loading…
Reference in a new issue