Git Product home page Git Product logo

Comments (34)

cdietrich avatar cdietrich commented on August 24, 2024 1

create new workspace (empty)
import -> gradle -> existing gradle project
choose the root

from xtext-languageserver-example.

cdietrich avatar cdietrich commented on August 24, 2024

please check the gradle log / console on refresh gradle project

from xtext-languageserver-example.

RobertWalterU3d avatar RobertWalterU3d commented on August 24, 2024

sorry, but where I can I find the gradle log/console? ALl I see are these two views in the IDE (which is where I do "RIght click->Gradle->Refresh Gradle Project"):

image

from xtext-languageserver-example.

cdietrich avatar cdietrich commented on August 24, 2024

in the console view on the arrow i see gradle operations when calling gradle refresh on parent/root
Bildschirmfoto 2022-01-10 um 12 55 52

from xtext-languageserver-example.

RobertWalterU3d avatar RobertWalterU3d commented on August 24, 2024

I don't see that option, but it looks like the [Gradle Operations] are already "open"
image

When I perform the refresh, the console shows nothing.

from xtext-languageserver-example.

cdietrich avatar cdietrich commented on August 24, 2024

there is no gradle -> refresh gradle project. ?!?

from xtext-languageserver-example.

RobertWalterU3d avatar RobertWalterU3d commented on August 24, 2024

The menu option is there, but the console does not show anything when I perform the action.

from xtext-languageserver-example.

RobertWalterU3d avatar RobertWalterU3d commented on August 24, 2024

gradleConsole

from xtext-languageserver-example.

cdietrich avatar cdietrich commented on August 24, 2024

is there anything in error log?
have no idea whatn is broken with your buildship install.
how do your .classpath files look like

from xtext-languageserver-example.

RobertWalterU3d avatar RobertWalterU3d commented on August 24, 2024

This is how the classpath file looks like for the language project:

<?xml version="1.0" encoding="UTF-8"?>
<classpath>
	<classpathentry kind="src" output="bin/main" path="src">
		<attributes>
			<attribute name="gradle_scope" value="main"/>
			<attribute name="gradle_used_by_scope" value="main,test"/>
		</attributes>
	</classpathentry>
	<classpathentry kind="src" output="bin/main" path="src-gen">
		<attributes>
			<attribute name="gradle_scope" value="main"/>
			<attribute name="gradle_used_by_scope" value="main,test"/>
		</attributes>
	</classpathentry>
	<classpathentry kind="src" output="bin/main" path="xtend-gen">
		<attributes>
			<attribute name="gradle_scope" value="main"/>
			<attribute name="gradle_used_by_scope" value="main,test"/>
		</attributes>
	</classpathentry>
	<classpathentry kind="con" path="org.eclipse.jdt.launching.JRE_CONTAINER/org.eclipse.jdt.internal.debug.ui.launcher.StandardVMType/JavaSE-1.8/"/>
	<classpathentry kind="con" path="org.eclipse.buildship.core.gradleclasspathcontainer"/>
	<classpathentry kind="output" path="bin/default"/>
</classpath>

Again, nothing that would normally be in the "Project and External Dependencies" can be resolved, so my Problems view looks like below (but I guess you mean something else with "error log", right?)

image

from xtext-languageserver-example.

cdietrich avatar cdietrich commented on August 24, 2024

i mean .log files in workspace/.metadata

yes and normally gradle logs that in the operations log if it cannot resolve stuff.
maybe its also a java version

  • gradle version + buildship version + eclipse version problem.

which ones do you use?

from xtext-languageserver-example.

RobertWalterU3d avatar RobertWalterU3d commented on August 24, 2024

When I run gradle from console to refresh dependencies, it works (I use the build task as target, maybe that is not correct?)

image

from xtext-languageserver-example.

cdietrich avatar cdietrich commented on August 24, 2024

yes but buildship should do the same.

from xtext-languageserver-example.

RobertWalterU3d avatar RobertWalterU3d commented on August 24, 2024

so, this is what I see at the end of the log file:

image

from xtext-languageserver-example.

cdietrich avatar cdietrich commented on August 24, 2024

so it looks like there is something wrong with your setup.

from xtext-languageserver-example.

RobertWalterU3d avatar RobertWalterU3d commented on August 24, 2024

Maybe unsurprisingly, still wanted to share, this folder is empty:

.\.metadata\.plugins\org.eclipse.buildship.core\project-preferences\

I understand that buildship should store something there.

I will check the versions of gradle, buildship, etc, next, as you suggested.

from xtext-languageserver-example.

cdietrich avatar cdietrich commented on August 24, 2024

are you sure the eclipse workspace and the gradle root or a project root are disjoint?

from xtext-languageserver-example.

RobertWalterU3d avatar RobertWalterU3d commented on August 24, 2024

eclipse version is: 2020-06
buildship version (acc. to eclipse->Help->About): 3.1.4.v20200326-1743
gradle (acc to command ./gradlew -v): 5.6.4

Are you sure the eclipse workspace and the gradle root or a project root are disjoint?

How can I ensure that? Again, building from command line and starting VS code with the plugin works just fine...

The interesting thing is that I used the very same eclipse, gradle, buildship version in 2020 to develop this language extension... so I wonder how it could have worked back then but not today...

from xtext-languageserver-example.

cdietrich avatar cdietrich commented on August 24, 2024

what is the dir of your eclipse workspace

from xtext-languageserver-example.

RobertWalterU3d avatar RobertWalterU3d commented on August 24, 2024

I use the exact same folder structure as this example repository does, so I have a a root folder where my language/ide/websocket/vscode-extension projects are all located in separate folder.

The settings.gradle file includes these five projects.

from xtext-languageserver-example.

kuniss avatar kuniss commented on August 24, 2024

from xtext-languageserver-example.

cdietrich avatar cdietrich commented on August 24, 2024

again which is the workspace dir you use in eclipse?

from xtext-languageserver-example.

kuniss avatar kuniss commented on August 24, 2024

from xtext-languageserver-example.

RobertWalterU3d avatar RobertWalterU3d commented on August 24, 2024

It is the "root":

D:\dev\repository\root\

Inside this root folder, there are the five projects, and gradlew.bat, .metadata, .settings and such.

from xtext-languageserver-example.

cdietrich avatar cdietrich commented on August 24, 2024

then this is something that buildship dislikes. can you try different dir.

from xtext-languageserver-example.

RobertWalterU3d avatar RobertWalterU3d commented on August 24, 2024

Sure. So, should I create a completely different directory as the workspace and import my five projects? As copies, or just references?

from xtext-languageserver-example.

cdietrich avatar cdietrich commented on August 24, 2024

just new workspace and use gradle import on the root

from xtext-languageserver-example.

RobertWalterU3d avatar RobertWalterU3d commented on August 24, 2024

... use mavenCentral() instead

Sorry, I'm not used to gradle, maven, or eclipse, I just try to used this as a template, so I don't know how I would go about using maven central instead. It also looks like as if all the dependencies are cached in ~\.gradle\caches\modules-2\ ... so I think it is not an issue of resolving the dependencies from server...?

from xtext-languageserver-example.

RobertWalterU3d avatar RobertWalterU3d commented on August 24, 2024

just new workspace and use gradle import on the root

I'm sorry, I don't follow. When I create a new workspace, it is empty, right? So, I'm not sure

  • what files I need to copy into the new workspace, if any
  • where to run gradle import from, if the workspace is empty

I'm reall ynot familiar with any of these technologies, sorry.

from xtext-languageserver-example.

RobertWalterU3d avatar RobertWalterU3d commented on August 24, 2024

Wow, that did indeed fix it!

from xtext-languageserver-example.

RobertWalterU3d avatar RobertWalterU3d commented on August 24, 2024

Thank you very much, I would have never guessed that.

from xtext-languageserver-example.

cdietrich avatar cdietrich commented on August 24, 2024

of course it would be better if buildship showed an error dialog

from xtext-languageserver-example.

RobertWalterU3d avatar RobertWalterU3d commented on August 24, 2024

Do you want me to add a feature request for that at buildship repo linking this issue?

from xtext-languageserver-example.

cdietrich avatar cdietrich commented on August 24, 2024

at least you can hint them on the issue.
https://github.com/eclipse/buildship

from xtext-languageserver-example.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.