Advertisement
Guest User

Untitled

a guest
Jul 17th, 2019
87
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Kotlin 0.46 KB | None | 0 0
  1. compile("org.jetbrains.exposed:exposed:0.11.2")
  2. compile("com.zaxxer:HikariCP:3.2.0")
  3.  
  4. object Tabela: IntIdTable(DatabaseConfig.table) {
  5. }
  6.  
  7. class Objeto(id: EntityID<Int>) : IntEntity(id) {
  8.     companion object : IntEntityClass<Objeto>(Tabela)
  9. }
  10.  
  11. compileOnly("br.com.devsrsouza.kotlinbukkitapi:core:0.1.0-SNAPSHOT")
  12. compileOnly("br.com.devsrsouza.kotlinbukkitapi:exposed:0.1.0-SNAPSHOT")
  13. compileOnly("br.com.devsrsouza.kotlinbukkitapi:server:0.1.0-SNAPSHOT")
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement