mirror of
https://github.com/vanitasvitae/Smack.git
synced 2024-11-13 07:42:05 +01:00
91fd15ad86
instead of using the old baseName=smack appendix=project.name approach, we are now going convention over configuration and renaming the subprojects directories to the proper name. Having a prefix is actually very helpful, because the resulting libraries will be named like the subproject. And a core-4.0.0-rc1.jar is not as explicit about what it actually *is* as a smack-core-4.0.0-rc1.jar. SMACK-265
31 lines
991 B
XML
31 lines
991 B
XML
<?xml version="1.0"?>
|
|
<!-- Rename this file to test-case.xml to overwrite the default values of the Smack testcases -->
|
|
<testcase>
|
|
|
|
<!-- Host and port of the XMPP server to use -->
|
|
<host>localhost</host>
|
|
<port>5222</port>
|
|
|
|
<!-- Username prefix to use for creating accounts. -->
|
|
<username>user</username>
|
|
<!-- Password prefix to use for creating connections -->
|
|
<!-- If same password is true, then the same password will be used for all accounts -->
|
|
<!-- If password is not set, the username will be used as password -->
|
|
<!--
|
|
<password same='true'>passw0rd</password>
|
|
-->
|
|
<!-- Chat and MUC domain names to use -->
|
|
<chat>chat</chat>
|
|
<muc>conference</muc>
|
|
|
|
<!-- LoginTest parameters -->
|
|
<testAnonymousLogin>false</testAnonymousLogin>
|
|
|
|
<!-- Account creation parameters -->
|
|
<!--
|
|
<accountCreationParameters email="test@xcp.localhost" name="test"/>
|
|
-->
|
|
|
|
<compressionEnabled>false</compressionEnabled>
|
|
|
|
</testcase>
|