This is an automated email from the ASF dual-hosted git repository. sergeykamov pushed a commit to branch NLPCRAFT-520 in repository https://gitbox.apache.org/repos/asf/incubator-nlpcraft.git
The following commit(s) were added to refs/heads/NLPCRAFT-520 by this push: new 3b95cb51 sbt fix. 3b95cb51 is described below commit 3b95cb5196b67ad32e5fb743a9e733206437b322 Author: Sergey Kamov <skhem...@gmail.com> AuthorDate: Sun Jan 22 00:59:13 2023 +0400 sbt fix. --- build.sbt | 32 ++++++++++++++++---------------- 1 file changed, 16 insertions(+), 16 deletions(-) diff --git a/build.sbt b/build.sbt index c08ee788..6a0abf05 100644 --- a/build.sbt +++ b/build.sbt @@ -111,22 +111,6 @@ lazy val nlpcraftStanford = (project in file("nlpcraft-stanford")) libraryDependencies += "edu.stanford.nlp" % "stanford-corenlp" % stanfordCoreNLPVer classifier "models" ) -lazy val nlpcraftWithStanford = (project in file(".")) - .enablePlugins(ScalaUnidocPlugin) - .aggregate(nlpcraft, nlpcraftStanford) - .settings( - name := "NLPCraft", - version := nlpcraftVer, - ScalaUnidoc / unidoc / unidocProjectFilter := inAnyProject -- inProjects(timeExample, lightSwitchExample, lightSwitchRuExample, lightSwitchFrExample, pizzeriaExample, calculatorExample), - - // Scaladoc config. - Compile / doc / scalacOptions ++= commonScalaDoc, - - libraryDependencies ++= libs, - libraryDependencies += "edu.stanford.nlp" % "stanford-corenlp" % stanfordCoreNLPVer, - libraryDependencies += "edu.stanford.nlp" % "stanford-corenlp" % stanfordCoreNLPVer classifier "models" - ) - lazy val timeExample = (project in file("nlpcraft-examples/time")) .dependsOn(nlpcraft) .settings( @@ -209,4 +193,20 @@ lazy val calculatorExample = (project in file("nlpcraft-examples/calculator")) // Dependencies. libraryDependencies ++= libs + ) + +lazy val nlpcraftWithStanford = (project in file(".")) + .enablePlugins(ScalaUnidocPlugin) + .aggregate(nlpcraft, nlpcraftStanford) + .settings( + name := "NLPCraft", + version := nlpcraftVer, + ScalaUnidoc / unidoc / unidocProjectFilter := inAnyProject -- inProjects(timeExample, lightSwitchExample, lightSwitchRuExample, lightSwitchFrExample, pizzeriaExample, calculatorExample), + + // Scaladoc config. + Compile / doc / scalacOptions ++= commonScalaDoc, + + libraryDependencies ++= libs, + libraryDependencies += "edu.stanford.nlp" % "stanford-corenlp" % stanfordCoreNLPVer, + libraryDependencies += "edu.stanford.nlp" % "stanford-corenlp" % stanfordCoreNLPVer classifier "models" ) \ No newline at end of file