You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
[ERROR] [ERROR] Some problems were encountered while processing the POMs:
[FATAL] Non-resolvable parent POM for org.codelibs.fess:fess:14.12.0-SNAPSHOT: The following artifacts could not be resolved: org.codelibs.fess:fess-parent:pom:14.12.0-SNAPSHOT (absent): Could not find artifact org.codelibs.fess:fess-parent:pom:14.12.0-SNAPSHOT and 'parent.relativePath' points at no local POM @ line 30, column 10
@
[ERROR] The build could not read 1 project -> [Help 1]
[ERROR]
[ERROR] The project org.codelibs.fess:fess:14.12.0-SNAPSHOT ([path_to_fess]/fess/pom.xml) has 1 error
[ERROR] Non-resolvable parent POM for org.codelibs.fess:fess:14.12.0-SNAPSHOT: The following artifacts could not be resolved: org.codelibs.fess:fess-parent:pom:14.12.0-SNAPSHOT (absent): Could not find artifact org.codelibs.fess:fess-parent:pom:14.12.0-SNAPSHOT and 'parent.relativePath' points at no local POM @ line 30, column 10 -> [Help 2]
[ERROR]
[ERROR] To see the full stack trace of the errors, re-run Maven with the -e switch.
[ERROR] Re-run Maven using the -X switch to enable full debug logging.
[ERROR]
[ERROR] For more information about the errors and possible solutions, please read the following articles:
[ERROR] [Help 1] http://cwiki.apache.org/confluence/display/MAVEN/ProjectBuildingException
[ERROR] [Help 2] http://cwiki.apache.org/confluence/display/MAVEN/UnresolvableModelException
I thought the problem was caused by the proxy, as reported in the issue 629, however, even after switching off the proxy it did not work.
I fixed the problem explicitly specifying the snapshot repository in the .pom file:
<repositories>
<repository>
<id>snapshots-repo</id>
<url>https://oss.sonatype.org/content/repositories/snapshots</url>
<snapshots>
<enabled>true</enabled>
</snapshots>
</repository>
<!-- Add other repositories as needed -->
</repositories>
The text was updated successfully, but these errors were encountered:
I got this error, while running
mvn antrun:run
.I thought the problem was caused by the proxy, as reported in the issue 629, however, even after switching off the proxy it did not work.
I fixed the problem explicitly specifying the snapshot repository in the .pom file:
The text was updated successfully, but these errors were encountered: