Engineering-Research-and-Development / true-connector-basic_data_app

GNU Affero General Public License v3.0
2 stars 9 forks source link

MVN dependency not found: Host Unavailable #133

Open tharindupr opened 7 months ago

tharindupr commented 7 months ago

Following Build Failure occurs:

Could not resolve dependencies for project it.eng.idsa:true-connector-basic_data_app:jar:0.3.8-SNAPSHOT: Failed to collect dependencies at it.eng.idsa:multipart-message-processor:jar:1.0.17 -> de.fraunhofer.iais.eis.ids.infomodel:java:jar:4.2.7: Failed to read artifact descriptor for de.fraunhofer.iais.eis.ids.infomodel:java:jar:4.2.7: Could not transfer artifact de.fraunhofer.iais.eis.ids.infomodel:java:pom:4.2.7 from/to snapshots (https://maven.iais.fraunhofer.de/artifactory/eis-ids-public): Transfer failed for https://maven.iais.fraunhofer.de/artifactory/eis-ids-public/de/fraunhofer/iais/eis/ids/infomodel/java/4.2.7/java-4.2.7.pom: Unknown host maven.iais.fraunhofer.de:

The host is not accessible through the web browser: https://maven.iais.fraunhofer.de/artifactory/eis-ids-public

IgorBalog-Eng commented 7 months ago

Hello, as workaround, please update pom.xml of dataApp, uncomment following section and update URL with following value:

        <repository>
            <id>snapshots</id>
            <name>maven-snapshots</name>
            <url>https://jfrog.iais.fraunhofer.de/artifactory/public</url>
        </repository>

If you did not build dataApp until now, maybe you will have to update also pom files of Multipart and Websocket projects with same value.

tharindupr commented 7 months ago

Thanks. It works.