- Kotlin Blueprints
- Ashish Belagali Hardik Trivedi Akshay Chordiya
- 63字
- 2021-07-02 21:50:14
Gradle dependency
We need to add an additional Maven repository in our build.gradle file to fetch the artifacts from the Exposed library:
repositories {
...
// For Exposed library
maven { url "https://dl.bintray.com/kotlin/exposed" }
}
Add the following dependencies for the Exposed API and another dependency to configure transaction support in the application:
// Exposed
compile 'org.jetbrains.exposed:exposed:0.8.5'
// For transaction support
compile 'org.jetbrains.exposed:spring-transaction:0.8.5'
推薦閱讀
- 新編Visual Basic程序設計上機實驗教程
- Designing Machine Learning Systems with Python
- MySQL數據庫應用與管理 第2版
- 微服務與事件驅動架構
- Java深入解析:透析Java本質的36個話題
- Linux Shell核心編程指南
- Getting Started with Python
- Python 3 Object:oriented Programming(Second Edition)
- Mastering Bootstrap 4
- AngularJS Web Application Development Cookbook
- Java性能權威指南
- Storm Real-Time Processing Cookbook
- Python3從入門到實戰
- Vue.js項目開發實戰
- Web應用程序設計:ASP