Konfigurace Maven
Interní repository
~/.m2/settings.xml
<?xml version="1.0" encoding="UTF-8"?>
<settings xsi:schemaLocation="http://maven.apache.org/SETTINGS/1.0.0 http://maven.apache.org/xsd/settings-1.0.0.xsd"
xmlns="http://maven.apache.org/SETTINGS/1.0.0"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
<localRepository>W:/.m2/repository</localRepository>
<mirrors>
<mirror>
<mirrorOf>*,!libs-snapshots,!libs-releases,!ZK_EVAL,!ZK_CE,!gael</mirrorOf>
<name>repo</name>
<url>https://nexus.datalite.cloud/repository/libs/</url>
<id>datalite</id>
</mirror>
</mirrors>
<servers>
<server>
<username>TODO: sem si doplnte</username>
<password>TODO: sem si doplnte</password>
<id>datalite-osobni</id>
</server>
<server>
<username>datalite</username>
<password>TODO: doplnit</password>
<id>datalite</id>
</server>
<server>
<username>zk</username>
<password>oracle</password>
<id>DataLite</id>
</server>
<server>
<id>o2-emeldi</id>
<configuration>
<ssl>
<trustAll>true</trustAll>
</ssl>
</configuration>
</server>
<server>
<id>o2-ness</id>
<configuration>
<ssl>
<trustAll>true</trustAll>
</ssl>
</configuration>
</server>
</servers>
<profiles>
<profile>
<repositories>
<repository>
<snapshots>
<enabled>false</enabled>
</snapshots>
<id>central</id>
<name>libs-releases</name>
<url>https://nexus.datalite.cloud/repository/libs-releases/</url>
</repository>
<repository>
<snapshots/>
<id>snapshots</id>
<name>libs-snapshots</name>
<url>https://nexus.datalite.cloud/repository/libs-snapshots/</url>
</repository>
</repositories>
<pluginRepositories>
<pluginRepository>
<snapshots>
<enabled>false</enabled>
</snapshots>
<id>central</id>
<name>plugins-releases</name>
<url>http://zealot.praha.datalite.cz:8081/artifactory/plugins-releases</url>
</pluginRepository>
<pluginRepository>
<snapshots/>
<id>snapshots</id>
<name>plugins-snapshots</name>
<url>http://zealot.praha.datalite.cz:8081/artifactory/plugins-snapshots</url>
</pluginRepository>
</pluginRepositories>
<id>artifactory</id>
<properties>
<developer.id>martin.peterka</developer.id>
</properties>
</profile>
</profiles>
<activeProfiles>
<activeProfile>artifactory</activeProfile>
</activeProfiles>
</settings>