Skip to content

Commit

Permalink
Excluding example and generator from aggregation until functionality …
Browse files Browse the repository at this point in the history
…is finished
  • Loading branch information
darkfrog26 committed Sep 19, 2023
1 parent 31d1887 commit b36021d
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 2 deletions.
2 changes: 1 addition & 1 deletion build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ def groupByName(tests: Seq[TestDefinition]): Seq[Group] = {
}

lazy val root = project.in(file("."))
.aggregate(coreJS, coreJVM, driver, docs, example)
.aggregate(coreJS, coreJVM, driver, docs) // example, generator
.settings(
publish := {},
publishLocal := {}
Expand Down
5 changes: 4 additions & 1 deletion example/src/main/scala/example/Person.scala
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,10 @@ import fabric.rw._
// // Internal code
//}

case class JustDoc(name: String) extends Foo with Document[JustDoc]
case class JustDoc(name: String) extends Foo with Document[JustDoc] {
// Custom method
def doSomething(): Unit = scribe.info("Testing!")
}

//case class Correct(name: String, _id: Id[Correct] = Correct.id()) extends Document[Correct]
//
Expand Down

0 comments on commit b36021d

Please sign in to comment.