Developer

Most of the services for developers are available locally only. Remote use requires a Virtual Private Network (VPN). Please read more about VPN at UWB.

GIT repository

All Git repositories are available using SSH keys only. Use the git's clone command to have a local copy available on your machine.

git clone ssh://git@mre.zcu.cz/<repository>.git

Distribution management

The distribution management of MRE projects and sub-modules is based on MRE's Maven Repository, which is available at https://mre.zcu.cz/maven. Define the release (and snapshots) repository in your pom.xml to use MRE's Maven repository in your project.

...
<repositories>
    <repository>
        <id>mre</id>
        <name>mre</name>
        <url>https://mre.zcu.cz/maven</url>
        <releases>
            <enabled>true</enabled>
        </releases>
        <snapshots>
            <enabled>true</enabled>
        </snapshots>
    </repository>
...
</repositories>
...

You can also specify the repository globally in Maven's configuration file settings.xml.

Next, you can define a dependency on MRE's sub-module, for example, MRE Library.

<dependency>
  <groupId>cz.zcu.mre</groupId>
  <artifactId>mrelib</artifactId>
  <version>2024.02</version>
</dependency>