Skip to main content


Eclipse Community Forums
Forum Search:

Search      Help    Register    Login    Home
Home » Modeling » TMF (Xtext) » org.eclipse.xtext.dependencies 2.8.3 missing on mvnrepository.com(trying to get Jnario to Xtext 2.8.3 but building jnario standalone support doesnt work)
org.eclipse.xtext.dependencies 2.8.3 missing on mvnrepository.com [message #1698099] Thu, 11 June 2015 08:46 Go to next message
Mathias Rieder is currently offline Mathias RiederFriend
Messages: 1
Registered: June 2015
Junior Member
I'm trying to move Jnario (see github - this forum won't let me paste any link) which uses xtext 2.6.something to xtext 2.8.3. I know that some guys are trying to get rid of the xtend-dependency in jnario, but I thought I'd give it a try to move it to 2.8.3 in the meantime.

[INFO] ------------------------------------------------------------------------
[INFO] Building Jnario Standalone Support 1.1.0-SNAPSHOT
[INFO] ------------------------------------------------------------------------
[INFO] ------------------------------------------------------------------------
[INFO] Reactor Summary:
[INFO]
[INFO] org.jnario.standalone .............................. SUCCESS [  1.073 s]
[INFO] org.jnario.ui ...................................... SUCCESS [  0.188 s]
[INFO] org.jnario ......................................... SUCCESS [  0.140 s]
[INFO] org.jnario.m2e ..................................... SUCCESS [  0.156 s]
[INFO] org.jnario.m2e ..................................... SUCCESS [  0.125 s]
[INFO] org.jnario.sdk ..................................... SUCCESS [  0.150 s]
[INFO] org.jnario.updatesite .............................. SUCCESS [  4.692 s]
[INFO] org.jnario.tests ................................... SUCCESS [  1.531 s]
[INFO] org.jnario.standalone.tests ........................ SUCCESS [  0.234 s]
[INFO] org.jnario.lib.tests ............................... SUCCESS [  0.188 s]
[INFO] org.jnario.ui.tests ................................ SUCCESS [  0.188 s]
[INFO] Jnario Runtime Library ............................. SUCCESS [  3.454 s]
[INFO] Jnario Standalone Support .......................... FAILURE [  0.062 s]
[INFO] Jnario Maven Plugin ................................ SKIPPED
[INFO] Jnario Maven Report Plugin ......................... SKIPPED
[INFO] Create a simple Jnario project ..................... SKIPPED[code][/code]
[INFO] ------------------------------------------------------------------------
[INFO] BUILD FAILURE
[INFO] ------------------------------------------------------------------------
[INFO] Total time: 02:03 min
[INFO] Finished at: 2015-06-11T10:31:44+02:00
[INFO] Final Memory: 137M/1126M
[INFO] ------------------------------------------------------------------------
[ERROR] Failed to execute goal on project org.jnario.standalone: Could not resolve dependencies for project org.jnario:org.jnario.standalone:pom:1.1.0-SNAPSHOT: Failure to find org.eclipse.xtext:org.eclipse.xtext.dependencies:jar:2.8.3 in https ://repo.maven.apache.org/maven2 was cached in the local repository, resolution will not be reattempted until the update interval of central has elapsed or updates are forced -> [Help 1]


Anyway The Central Repository (again - it wont allow me to paste links -.-) shows that for all 2.8.x versions only the poms are available, no artifacts Sad

index.php/fa/22139/0/

Can anybody point me into the right direction?
Re: org.eclipse.xtext.dependencies 2.8.3 missing on mvnrepository.com [message #1698459 is a reply to message #1698099] Mon, 15 June 2015 19:09 Go to previous messageGo to next message
Christian Dietrich is currently offline Christian DietrichFriend
Messages: 14661
Registered: July 2009
Senior Member
did you try to simply use

dependency>
<groupId>org.eclipse.tycho</groupId>
<artifactId>org.eclipse.jdt.core</artifactId>
<version>3.10.0.v20140604-1726</version>
</dependency>

instead as that pom hints


Twitter : @chrdietrich
Blog : https://www.dietrich-it.de
Re: org.eclipse.xtext.dependencies 2.8.3 missing on mvnrepository.com [message #1698511 is a reply to message #1698099] Tue, 16 June 2015 07:30 Go to previous message
Dennis Huebner is currently offline Dennis HuebnerFriend
Messages: 257
Registered: July 2009
Senior Member

Xtext dependencies maven artifact is just a container for other dependencies therefore it's a pom. You should use it like this:
<dependency>
<groupId>org.eclipse.xtext</groupId>
<artifactId>org.eclipse.xtext.dependencies</artifactId>
<version>2.8.3</version>
<type>pom</type>
</dependency>

But normally you du not need it, because it should be transitively be loaded by org.eclipse.xtext:org.eclipse.xtext artifact



+Dennis Huebner

Get professional support from the Xtext committers at www.typefox.io
Previous Topic:XText output language types
Next Topic:Cannot import org.eclipse.xtext.ui.editor.autoedit.DefaultAutoEditStrategyProvider
Goto Forum:
  


Current Time: Tue Mar 19 09:55:38 GMT 2024

Powered by FUDForum. Page generated in 0.03099 seconds
.:: Contact :: Home ::.

Powered by: FUDforum 3.0.2.
Copyright ©2001-2010 FUDforum Bulletin Board Software

Back to the top