Skip to content

Commit

Permalink
Merge branch 'main' into r5-rdf-generation-fix
Browse files Browse the repository at this point in the history
  • Loading branch information
tmprd authored Apr 19, 2024
2 parents 7b19236 + 22f0f83 commit 87fbc6c
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 87fbc6c

Please sign in to comment.