Skip to content

Commit

Permalink
update version, remove potentially old plugin dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
nkuehnel committed Oct 29, 2018
1 parent 5f2bc27 commit dc3a998
Showing 1 changed file with 5 additions and 4 deletions.
9 changes: 5 additions & 4 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -50,16 +50,17 @@ dependencies {
sourceCompatibility = 1.8
archivesBaseName = "matsim"
josm {
josmCompileVersion = 14289
josmCompileVersion = 14382
manifest {
author = "Nico Kuehnel"
description = "Allows to edit and extract network information for the traffic simulation MATSim"
iconPath = "images/dialogs/matsim-scenario.png"
minJosmVersion = 14289
minJosmVersion = 14382
mainClass = "org.matsim.contrib.josm.MATSimPlugin"
pluginDependencies << 'jts' << 'apache-commons' << 'apache-http' << 'geotools' << 'openjfx'
pluginDependencies << 'jts' << 'geotools'
website = new URL("http://www.matsim.org")
oldVersionDownloadLink 13922, 'v0.9.5', new URL('https://github.com/matsim-org/josm-matsim-plugin/releases/download/v0.9.2/matsim.jar')
oldVersionDownloadLink 14289, 'v0.9.6', new URL('https://github.com/matsim-org/josm-matsim-plugin/releases/download/v0.9.6/matsim.jar')
oldVersionDownloadLink 13922, 'v0.9.5', new URL('https://github.com/matsim-org/josm-matsim-plugin/releases/download/v0.9.5/matsim.jar')
oldVersionDownloadLink 13878, 'v0.9.2', new URL('https://github.com/matsim-org/josm-matsim-plugin/releases/download/v0.9.2/matsim.jar')
oldVersionDownloadLink 12881, 'v0.8.8', new URL('https://github.com/matsim-org/josm-matsim-plugin/releases/download/v0.8.8/matsim.jar')
oldVersionDownloadLink 12450, 'v0.7.9', new URL('https://github.com/matsim-org/josm-matsim-plugin/releases/download/v0.7.9/matsim.jar')
Expand Down

3 comments on commit dc3a998

@don-vip
Copy link
Contributor

@don-vip don-vip commented on dc3a998 Nov 1, 2018

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I have renamed the openjfx plugin to javafx. If you're still using JavaFX components you need to keep it as a dependency to be compatible with Java 11.

@don-vip
Copy link
Contributor

@don-vip don-vip commented on dc3a998 Nov 1, 2018

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@nkuehnel
Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

thanks!

Please sign in to comment.