Skip to content

Commit

Permalink
Dependency bumps
Browse files Browse the repository at this point in the history
eclipse emf
jgrapht
  • Loading branch information
dotasek committed Apr 18, 2024
1 parent 1dd700d commit a30e4fc
Showing 1 changed file with 11 additions and 5 deletions.
16 changes: 11 additions & 5 deletions build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -81,12 +81,14 @@ dependencies {

/*These dependencies are interrelated, and do not share the same version. To evaluate the appropriate versions,
https://mvnrepository.com/ was used, and the following dependencies pattern was observed.
org.eclipse.emf.ecore depends on org.eclipse.emf.common
org.eclipse.emf.ecore.xmi depends on org.eclipse.emf.ecore
org.eclipse.emf.ecore (https://mvnrepository.com/artifact/org.eclipse.emf/org.eclipse.emf.ecore)
depends on org.eclipse.emf.common (https://mvnrepository.com/artifact/org.eclipse.emf/org.eclipse.emf.common)
org.eclipse.emf.ecore.xmi (https://mvnrepository.com/artifact/org.eclipse.emf/org.eclipse.emf.ecore.xmi)
depends on org.eclipse.emf.ecore (https://mvnrepository.com/artifact/org.eclipse.emf/org.eclipse.emf.ecore)
*/
implementation("org.eclipse.emf", "org.eclipse.emf.ecore", "2.35.0")
implementation("org.eclipse.emf", "org.eclipse.emf.ecore.xmi", "2.36.0")
implementation("org.eclipse.emf", "org.eclipse.emf.common", "2.29.0")
implementation("org.eclipse.emf", "org.eclipse.emf.ecore", "2.36.0")
implementation("org.eclipse.emf", "org.eclipse.emf.ecore.xmi", "2.37.0")
implementation("org.eclipse.emf", "org.eclipse.emf.common", "2.30.0")

implementation("org.apache.poi", "poi", property("apachePoiVersion").toString())
implementation("org.apache.poi", "poi-ooxml", property("apachePoiVersion").toString())
Expand Down Expand Up @@ -193,6 +195,10 @@ dependencies {
implementation("io.netty:netty-transport-native-epoll:" + property("nettyConstrainedVersion").toString()) {
because("previous versions have a bug impacting this application")
}

implementation("org.jgrapht:jgrapht-core:1.5.2") {
because("previous versions have a bug impacting this application")
}
}
}

Expand Down

0 comments on commit a30e4fc

Please sign in to comment.