fixed bug with LAZY fetch of ElementCollections
This commit is contained in:
14
build.sbt
14
build.sbt
@@ -10,13 +10,15 @@ scalaVersion := "2.12.2"
|
||||
libraryDependencies += "org.tukaani" % "xz" % "1.6"
|
||||
libraryDependencies += "org.apache.commons" % "commons-compress" % "1.14"
|
||||
libraryDependencies += "org.projectlombok" % "lombok" % "1.16.18" % "provided"
|
||||
//libraryDependencies += "javax" % "javaee-api" % "7.0" % "provided"
|
||||
libraryDependencies += "javax" % "javaee-api" % "7.0"
|
||||
libraryDependencies += "javax" % "javaee-api" % "7.0" % "provided"
|
||||
//libraryDependencies += "javax" % "javaee-api" % "7.0 "
|
||||
|
||||
libraryDependencies += "junit" % "junit" % "4.12" % "test"
|
||||
libraryDependencies += "com.novocode" % "junit-interface" % "0.11" % "test"
|
||||
libraryDependencies += "com.thoughtworks.xstream" % "xstream" % "1.4.10"
|
||||
libraryDependencies += "commons-io" % "commons-io" % "2.5" % "test"
|
||||
libraryDependencies += "org.jboss" % "jboss-ejb-client" % "4.0.0.CR5" % "test"
|
||||
|
||||
|
||||
//libraryDependencies += "org.jboss.resteasy" % "resteasy-jaxrs" % "3.1.3.Final" % "test"
|
||||
//libraryDependencies += "org.jboss.resteasy" % "resteasy-client" % "3.1.3.Final"
|
||||
@@ -34,13 +36,17 @@ libraryDependencies += "org.jboss.resteasy" % "resteasy-jaxb-provider" % "3.0.11
|
||||
|
||||
enablePlugins(WarPlugin)
|
||||
|
||||
artifactName := { (sv: ScalaVersion, module: ModuleID, artifact: Artifact) =>
|
||||
artifact.name + "-" + module.revision + "." + artifact.extension
|
||||
}
|
||||
|
||||
val wildflyUsername = SettingKey[String]("wildfly-username", "The account username to use to connect to wildfly with jboss-cli.sh")
|
||||
val wildflyPassword = SettingKey[String]("wildfly-password", "The account password to use to connect to wildfly with jboss-cli.sh")
|
||||
val wildflyURL = SettingKey[String]("wildfly-url", "The username to use to connect to wildfly with jboss-cli.sh")
|
||||
|
||||
wildflyUsername := "admin"
|
||||
wildflyUsername := "root"
|
||||
wildflyPassword := "123456"
|
||||
wildflyURL := "localhost:9990"
|
||||
wildflyURL := "localhost:1234"
|
||||
|
||||
val deploy2Wildfly = TaskKey[Unit]("deploy2Wildfly", "Deploy to a wildfly server instance", KeyRanks.ATask)
|
||||
|
||||
|
Reference in New Issue
Block a user