Skip to content

Commit

Permalink
Merge pull request ebean-orm-examples#1 from qyf404/master
Browse files Browse the repository at this point in the history
add the sbt script
  • Loading branch information
rbygrave committed Aug 29, 2021
2 parents d00a3f6 + 7cd009c commit 11c1788
Show file tree
Hide file tree
Showing 4 changed files with 29 additions and 0 deletions.
21 changes: 21 additions & 0 deletions build.sbt
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
import de.johoop.testngplugin.TestNGPlugin._

name := "example-mininal"

version := "1.1-SNAPSHOT"

scalaVersion := "2.12.2"

lazy val akkaVersion = "2.5.3"

libraryDependencies ++= Seq(
"io.ebean" % "ebean-agent" % "10.3.1",
"io.ebean" % "ebean" % "10.4.1",
"io.ebean" % "ebean-querybean" % "10.1.1",
"io.ebean" % "querybean-generator" % "10.1.1",
"org.slf4j" % "slf4j-api" % "1.7.20",
"org.avaje.composite" % "composite-testing" % "3.1" % Test
)

testNGSettings

1 change: 1 addition & 0 deletions project/build.properties
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
sbt.version=0.13.15
1 change: 1 addition & 0 deletions project/plugins.sbt
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
addSbtPlugin("de.johoop" % "sbt-testng-plugin" % "3.0.3")
6 changes: 6 additions & 0 deletions src/test/resources/testng.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
name: SingleSuite

tests:
- name: Regression1
packages:
- org.example.domain

0 comments on commit 11c1788

Please sign in to comment.