Skip to main content


Eclipse Community Forums
Forum Search:

Search      Help    Register    Login    Home
Home » Eclipse Projects » e(fx)clipse » DirectoryTreeView - where's the jar/maven?(Where can I find the import source for this class?)
DirectoryTreeView - where's the jar/maven? [message #1779572] Tue, 09 January 2018 17:46 Go to next message
Myriam Luce is currently offline Myriam LuceFriend
Messages: 2
Registered: January 2018
Junior Member
On tomsondev blog, I found a reference to a file explorer, which I would like to use in a project. It is listed as part of the package org.eclipse.fx.ui.controls.filesystem.DirectoryTreeView. However, I can't seem to find the jar or the maven instructions to include it in the build path. Any help? Thank you!
Re: DirectoryTreeView - where's the jar/maven? [message #1779642 is a reply to message #1779572] Wed, 10 January 2018 16:27 Go to previous messageGo to next message
Thomas Schindl is currently offline Thomas SchindlFriend
Messages: 6651
Registered: July 2009
Senior Member
We publish our artefacts in a custom maven repository - see http://maven.bestsolution.at/ and in your case it is at http://maven.bestsolution.at/efxclipse-releases/at/bestsolution/efxclipse/rt/org.eclipse.fx.ui.controls/
Re: DirectoryTreeView - where's the jar/maven? [message #1779799 is a reply to message #1779642] Fri, 12 January 2018 19:54 Go to previous message
Myriam Luce is currently offline Myriam LuceFriend
Messages: 2
Registered: January 2018
Junior Member
Thank you! For those maven noobs like me out there, this is what you have to add to your pom.xml:
...
<repositories>
    <repository>
      <name>BestSolution e(fx)clipse releases</name>
      <id>efxclipse-releases</id>
      <url>http://maven.bestsolution.at/efxclipse-releases/</url>
    </repository>
  </repositories>
  <dependencies>
   ...
    <dependency>
      <groupId>at.bestsolution.efxclipse.rt</groupId>
      <artifactId>org.eclipse.fx.ui.controls</artifactId>
      <version>3.0.0</version>
    </dependency>
  </dependencies>


The "repository" section is the information you see on the http://maven.bestsolution.at/ home page. The dependency section is in the metadata of the specific repo at http://maven.bestsolution.at/efxclipse-releases/at/bestsolution/efxclipse/rt/org.eclipse.fx.ui.controls/
Previous Topic:What replaces the PreferencesObjectSupplier?
Next Topic:FXML editor doesn't complete type tags on Java 9 project
Goto Forum:
  


Current Time: Tue Mar 19 08:11:20 GMT 2024

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

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

Back to the top