More information before I forgo upgrading to 3.10.4. 

Many of the Jooq code-generated classes all have an "indexes = {}" section 
within @Table that my app does not have a reference. This is where all of 
my "Cannot find symbol" errors are originating. Do I need to reference some 
dependency within my build.sbt? Maybe "javax.persistence" % 
"persistence-api" % "1.0.2"?

Other errors are, "cannot find symbol" for "import org.jooq.Index;"

My Play app's build.sbt looks like the following.

import sbt.Keys._
version := "1.0"
scalaVersion := "2.11.7"
val jooqVersion = "3.10.4"

val appDependencies = Seq(
  cache,
  javaWs,
  javaJdbc,
  javaJpa,
  "mysql" % "mysql-connector-java" % "5.1.44",
  "org.jooq" % "jooq" % jooqVersion,
  "org.jooq" % "jooq-meta" % jooqVersion,
//  "org.jooq" % "jooq-scala" % jooqVersion,
  "org.jooq" % "jooq-codegen" % jooqVersion,
  "be.objectify"  %% "deadbolt-java"     % "2.5.0",
  "be.objectify"  %% "deadbolt-core"     % "2.4.3",
  // Comment the next line for local development of the Play Authentication 
core:
  // https://github.com/joscha/play-authenticate
  "com.feth" %% "play-authenticate" % "0.8.3",
  // https://github.com/joscha/play-easymail
  "com.feth" %% "play-easymail" % "0.8.1",
  "com.google.code.gson" % "gson" % "2.6.2",
  "org.mindrot" % "jbcrypt" % "0.3m",
  "org.easytesting" % "fest-assert" % "1.4" % "test",
  "org.seleniumhq.selenium" % "selenium-java" % "2.52.0" % "test",
  "org.apache.poi" % "poi" % "3.14",
  "org.apache.poi" % "poi-ooxml" % "3.14",
  "org.ocpsoft.prettytime" % "prettytime" % "4.0.0.Final",
  "org.webjars" %% "webjars-play" % "2.5.0",
  "org.webjars" % "bootstrap" % "3.3.6",
  "org.webjars" % "jquery" % "2.2.4",
  "org.webjars" % "bootstrap-multiselect" % "0.9.13",
  "org.webjars.bower" % "lodash" % "4.9.0" exclude("org.webjars.bower", 
"jquery"),
  "org.webjars.bower" % "ion-range-slider" % "2.1.4" 
exclude("org.webjars.bower", "jquery"),
  "org.webjars" % "jquery-validation" % "1.15.0",
  "org.webjars" % "toastr" % "2.1.2",
  "org.webjars" % "datatables" % "1.10.11",
  "org.webjars" % "datatables-plugins" % "1.10.11-2",
  "net.gpedro.integrations.slack" % "slack-webhook" % "1.2.1"
)

-- 
You received this message because you are subscribed to the Google Groups "jOOQ 
User Group" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to [email protected].
For more options, visit https://groups.google.com/d/optout.

Reply via email to