﻿<?xml version="1.0" encoding="UTF-8"?>
<settings xmlns="http://maven.apache.org/SETTINGS/1.0.0"
          xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
          xsi:schemaLocation="http://maven.apache.org/SETTINGS/1.0.0 http://maven.apache.org/xsd/settings-1.0.0.xsd">
    <localRepository>[repositoryPath]</localRepository>
    <servers>
        <server>
            <id>nexus</id>
            <username>[username]</username>
            <password>[password]</password>
        </server>
        <server>
            <id>deployment</id>
            <username>[username]</username>
            <password>[password]</password>
        </server>
    </servers>

    <profiles>
        <profile>
            <id>nexus</id>
            <activation>
                <activeByDefault>true</activeByDefault>
            </activation>
            <repositories>
                <repository>
                    <id>lms-releases</id>
                    <url>http://dylan.mech.upatras.gr:8081/nexus/content/repositories/releases</url>
                    <layout>default</layout>
                    <releases>
                        <enabled>true</enabled>
                    </releases>
                    <snapshots>
                        <enabled>false</enabled>
                    </snapshots>
                </repository>
                <repository>
                    <id>lms-snapshots</id>
                    <url>http://dylan.mech.upatras.gr:8081/nexus/content/repositories/snapshots</url>
                    <layout>default</layout>
                    <releases>
                        <enabled>false</enabled>
                    </releases>
                    <snapshots>
                        <enabled>true</enabled>
                    </snapshots>
                </repository>        
                <repository>
                    <id>nexus</id>
                    <url>http://central</url>
                    <releases>
                        <enabled>true</enabled>
                    </releases>
                    <snapshots>
                        <enabled>true</enabled>
                    </snapshots>
                </repository>
            </repositories>
            <pluginRepositories>
                <pluginRepository>
                    <id>nexus</id>
                    <url>http://central</url>
                    <releases>
                        <enabled>true</enabled>
                    </releases>
                    <snapshots>
                        <enabled>true</enabled>
                    </snapshots>
                </pluginRepository>
            </pluginRepositories>
        </profile>
    </profiles>

    <mirrors>
        <mirror>
            <id>nexus</id>
            <mirrorOf> *,!sonar </mirrorOf>
            <url>http://dylan.mech.upatras.gr:8081/nexus/content/groups/public/</url>
        </mirror>
    </mirrors>

    <activeProfiles>
        <activeProfile>nexus</activeProfile>
    </activeProfiles>
</settings>
