mam-dev / cosmo

Cosmo Calendar Server implements the server side of the CalDAV protocol.
Apache License 2.0
77 stars 45 forks source link

pom needs update in protocoll for jcenter repository #43

Closed pkerspe closed 4 years ago

pkerspe commented 4 years ago

In the current version of the pom the repositoy is defined as:

<repositories>
        <!-- Embedded Maria DB. -->
        <repository>
            <snapshots>
                <enabled>false</enabled>
            </snapshots>
            <id>central</id>
            <name>bintray</name>
            <url>http://jcenter.bintray.com</url>
        </repository>
    </repositories>

Jcenter is only reachable via https though, thus maven fails to connect. Please update repository URL to https protocol:

<url>https://jcenter.bintray.com</url>

danielgrigore commented 4 years ago

Thank you for feedback, @pkerspe. I updated the pom.xml file. Cheers,