forked from weso/shapeMaps
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
30 changed files
with
166 additions
and
86 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
{"name":"sbt","version":"1.4.1","bspVersion":"2.0.0-M5","languages":["scala"],"argv":["/usr/lib/jvm/jdk-12.0.2/bin/java","-Xms100m","-Xmx100m","-classpath","/usr/share/sbt/bin/sbt-launch.jar","xsbt.boot.Boot","-bsp"]} | ||
{"name":"sbt","version":"1.4.7","bspVersion":"2.0.0-M5","languages":["scala"],"argv":["/usr/lib/jvm/jdk-12.0.2/bin/java","-Xms100m","-Xmx100m","-classpath","/usr/share/sbt/bin/sbt-launch.jar","xsbt.boot.Boot","-bsp"]} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,22 +1,25 @@ | ||
lazy val scala212 = "2.12.12" | ||
lazy val scala213 = "2.13.3" | ||
lazy val scala213 = "2.13.4" | ||
lazy val supportedScalaVersions = List(scala213, scala212) | ||
|
||
// Local dependencies | ||
lazy val srdfVersion = "0.1.76" | ||
lazy val utilsVersion = "0.1.70" | ||
lazy val srdfVersion = "0.1.90" | ||
lazy val utilsVersion = "0.1.73" | ||
lazy val documentVersion = "0.0.8" | ||
|
||
// Dependency versions | ||
lazy val antlrVersion = "4.7.1" | ||
lazy val catsVersion = "2.2.0" | ||
lazy val catsVersion = "2.3.0" | ||
lazy val commonsTextVersion = "1.8" | ||
lazy val circeVersion = "0.14.0-M1" | ||
lazy val diffsonVersion = "4.0.0" | ||
lazy val declineVersion = "1.3.0" | ||
lazy val fs2Version = "2.5.0" | ||
// lazy val effVersion = "4.6.1" | ||
lazy val jenaVersion = "3.16.0" | ||
lazy val jgraphtVersion = "1.3.1" | ||
lazy val munitVersion = "0.7.21" | ||
lazy val munitEffectVersion = "0.11.0" | ||
lazy val logbackVersion = "1.2.3" | ||
lazy val loggingVersion = "3.9.2" | ||
lazy val rdf4jVersion = "3.0.0" | ||
|
@@ -50,10 +53,17 @@ lazy val decline = "com.monovore" %% "decline" | |
lazy val declineEffect = "com.monovore" %% "decline-effect" % declineVersion | ||
lazy val diffsonCirce = "org.gnieh" %% "diffson-circe" % diffsonVersion | ||
// lazy val eff = "org.atnos" %% "eff" % effVersion | ||
lazy val fs2 = "co.fs2" %% "fs2-core" % fs2Version | ||
lazy val fs2io = "co.fs2" %% "fs2-io" % fs2Version | ||
|
||
lazy val jgraphtCore = "org.jgrapht" % "jgrapht-core" % jgraphtVersion | ||
lazy val logbackClassic = "ch.qos.logback" % "logback-classic" % logbackVersion | ||
lazy val jenaArq = "org.apache.jena" % "jena-arq" % jenaVersion | ||
lazy val jenaFuseki = "org.apache.jena" % "jena-fuseki-main" % jenaVersion | ||
lazy val munit = "org.scalameta" %% "munit" % munitVersion | ||
lazy val munitEffect = "org.typelevel" %% "munit-cats-effect-2" % munitEffectVersion | ||
|
||
|
||
lazy val rdf4j_runtime = "org.eclipse.rdf4j" % "rdf4j-runtime" % rdf4jVersion | ||
|
||
// WESO components | ||
|
@@ -83,12 +93,16 @@ lazy val simulacrum = "org.typelevel" %% "simulacrum" | |
lazy val shapeMapsRoot = project | ||
.in(file(".")) | ||
.enablePlugins(ScalaUnidocPlugin, SbtNativePackager, WindowsPlugin, JavaAppPackaging, LauncherJarPlugin) | ||
.disablePlugins(RevolverPlugin) | ||
// .disablePlugins(RevolverPlugin) | ||
// .settings( | ||
// buildInfoKeys := BuildInfoKey.ofN(name, version, scalaVersion, sbtVersion), | ||
// buildInfoPackage := "es.weso.shaclex.buildinfo" | ||
// ) | ||
.settings(commonSettings, packagingSettings, publishSettings, ghPagesSettings, wixSettings) | ||
.settings(commonSettings, | ||
packagingSettings, | ||
publishSettings, | ||
// ghPagesSettings, | ||
wixSettings) | ||
.aggregate(shapeMaps) | ||
.dependsOn(shapeMaps) | ||
.settings( | ||
|
@@ -121,8 +135,8 @@ def testFilter(name: String): Boolean = /*(name endsWith "Test") && */ !compatFi | |
lazy val shapeMaps = project | ||
.in(file("modules/shapeMaps")) | ||
.enablePlugins(Antlr4Plugin) | ||
.disablePlugins(RevolverPlugin) | ||
.settings(commonSettings, publishSettings, antlrSettings("es.weso.shapeMaps.parser")) | ||
// .disablePlugins(RevolverPlugin) | ||
.settings(commonSettings, publishSettings, antlrSettings("es.weso.shapemaps.parser")) | ||
.dependsOn() | ||
.settings( | ||
crossScalaVersions := supportedScalaVersions, | ||
|
@@ -134,11 +148,14 @@ lazy val shapeMaps = project | |
scalaLogging, | ||
catsCore, | ||
catsKernel, | ||
// catsMacros, | ||
circeCore, | ||
circeGeneric, | ||
circeParser | ||
) | ||
circeParser, | ||
fs2, fs2io, | ||
munit % Test, | ||
munitEffect % Test | ||
), | ||
testFrameworks += new TestFramework("munit.Framework") | ||
) | ||
|
||
def macroDependencies(scalaVersion: String) = | ||
|
@@ -167,8 +184,8 @@ lazy val sharedDependencies = Seq( | |
) | ||
|
||
lazy val packagingSettings = Seq( | ||
mainClass in Compile := Some("es.weso.shapeMaps.Main"), | ||
mainClass in assembly := Some("es.weso.shapeMaps.Main"), | ||
mainClass in Compile := Some("es.weso.shapemaps.Main"), | ||
mainClass in assembly := Some("es.weso.shapemaps.Main"), | ||
test in assembly := {}, | ||
assemblyJarName in assembly := "shapeMaps.jar", | ||
packageSummary in Linux := name.value, | ||
|
@@ -220,9 +237,9 @@ lazy val wixSettings = Seq( | |
// wixProductUpgradeId := "4552fb0e-e257-4dbd-9ecb-dba9dbacf424" | ||
) | ||
|
||
lazy val ghPagesSettings = Seq( | ||
/*lazy val ghPagesSettings = Seq( | ||
git.remoteRepo := "[email protected]:weso/shapeMaps.git" | ||
) | ||
)*/ | ||
|
||
lazy val commonSettings = compilationSettings ++ sharedDependencies ++ Seq( | ||
organization := "es.weso", | ||
|
2 changes: 1 addition & 1 deletion
2
...scala/es/weso/shapeMaps/Association.scala → ...scala/es/weso/shapemaps/Association.scala
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
package es.weso.shapeMaps | ||
package es.weso.shapemaps | ||
|
||
import io.circe._ | ||
import io.circe.syntax._ | ||
|
2 changes: 1 addition & 1 deletion
2
...ala/es/weso/shapeMaps/FixedShapeMap.scala → ...ala/es/weso/shapemaps/FixedShapeMap.scala
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
8 changes: 4 additions & 4 deletions
8
...c/main/scala/es/weso/shapeMaps/Info.scala → ...c/main/scala/es/weso/shapemaps/Info.scala
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
2 changes: 1 addition & 1 deletion
2
...cala/es/weso/shapeMaps/NodeSelector.scala → ...cala/es/weso/shapemaps/NodeSelector.scala
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
8 changes: 4 additions & 4 deletions
8
...es/weso/shapeMaps/NodeSelectorMaker.scala → ...es/weso/shapemaps/NodeSelectorMaker.scala
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
4 changes: 2 additions & 2 deletions
4
...s/weso/shapeMaps/NodeSelectorParser.scala → ...s/weso/shapemaps/NodeSelectorParser.scala
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
2 changes: 1 addition & 1 deletion
2
.../weso/shapeMaps/ParserErrorListener.scala → .../weso/shapemaps/ParserErrorListener.scala
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
package es.weso.shapeMaps | ||
package es.weso.shapemaps | ||
|
||
import java.util | ||
|
||
|
2 changes: 1 addition & 1 deletion
2
...ain/scala/es/weso/shapeMaps/Pattern.scala → ...ain/scala/es/weso/shapemaps/Pattern.scala
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
2 changes: 1 addition & 1 deletion
2
...ala/es/weso/shapeMaps/QueryShapeMap.scala → ...ala/es/weso/shapemaps/QueryShapeMap.scala
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
package es.weso.shapeMaps | ||
package es.weso.shapemaps | ||
|
||
import es.weso.rdf.PrefixMap | ||
import es.weso.rdf.nodes.IRI | ||
|
2 changes: 1 addition & 1 deletion
2
...la/es/weso/shapeMaps/ResultShapeMap.scala → ...la/es/weso/shapemaps/ResultShapeMap.scala
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
package es.weso.shapeMaps | ||
package es.weso.shapemaps | ||
|
||
import cats._ | ||
import cats.implicits._ | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
2 changes: 1 addition & 1 deletion
2
...la/es/weso/shapeMaps/ShapeMapFormat.scala → ...la/es/weso/shapemaps/ShapeMapFormat.scala
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
2 changes: 1 addition & 1 deletion
2
...ala/es/weso/shapeMaps/ShapeMapLabel.scala → ...ala/es/weso/shapemaps/ShapeMapLabel.scala
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.