Trouble moving project
Posted: Thu May 25, 2023 2:04 am
I'm moving to a new work machine.
I've moved the sources from old to new machine but am seeing an error when Netbeans is trying to get the maven resources during build.
my settings file is from my old and working machine
I'm using the same version of netbeans, but new OS is Fedora . Same java version also.
Scott
I've moved the sources from old to new machine but am seeing an error when Netbeans is trying to get the maven resources during build.
Code: Select all
Failed to execute goal on project mbep-editor: Could not resolve dependencies for project myGroup:mbep-editor:jar:1.0-SNAPSHOT: Failed to collect dependencies at myGroup:bundle-frameworks:jar:1.0-SNAPSHOT: Failed to read artifact descriptor for myGroup:bundle-frameworks:jar:1.0-SNAPSHOT: Could not transfer artifact myGroup:bundle-frameworks:pom:1.0-SNAPSHOT from/to maven-default-http-blocker (http://0.0.0.0/): Blocked mirror for repositories: [public (http://www.oxygenxml.com/maven, default, releases+snapshots)] -> [Help 1]
Code: Select all
<settings xmlns="http://maven.apache.org/SETTINGS/1.1.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/SETTINGS/1.1.0 http://maven.apache.org/xsd/settings-1.1.0.xsd">
<!-- ... Other settings .... -->
<profiles>
<profile>
<id>oxy</id>
<activation>
<activeByDefault>true</activeByDefault>
</activation>
<repositories>
<repository>
<id>public</id>
<name>oXygen public artifacts</name>
<url>http://www.oxygenxml.com/maven</url>
<releases>
<enabled>true</enabled>
</releases>
<snapshots>
<enabled>true</enabled>
</snapshots>
</repository>
<!-- ... Other repository definitions ...-->
</repositories>
</profile>
</profiles>
<!-- ... Other settings .... -->
</settings>
Scott