2 Star 5 Fork 1

Thoughtworks/persistence-jpa

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
build.gradle 1.51 KB
一键复制 编辑 原始数据 按行查看 历史
plugins {
id 'java'
}
group = 'com.happy3w'
version = '0.0.1'
ext {
artifactId = "persistence-jpa"
upload = 'enable'
description = "A helpfull tools to access db by spring jpa."
url = 'https://github.com/boroborome/persistence-jpa'
developerConnection = 'scm:git@github.com:boroborome/persistence-jpa.git'
}
apply plugin: 'java-library'
sourceCompatibility = '1.8'
repositories {
mavenLocal()
mavenCentral()
}
dependencies {
compileOnly 'org.projectlombok:lombok:1.18.12'
api 'jakarta.transaction:jakarta.transaction-api:1.3.3'
api 'jakarta.persistence:jakarta.persistence-api:2.2.3'
api 'com.happy3w:persistence-core:0.0.6'
// api project(":persistence-core")
implementation 'org.slf4j:slf4j-api:1.7.25'
implementation 'com.alibaba:fastjson:1.2.29'
annotationProcessor 'org.projectlombok:lombok:1.18.12'
testImplementation 'org.springframework.boot:spring-boot-starter-test:2.3.3.RELEASE'
testImplementation 'org.springframework.boot:spring-boot-starter-data-jpa:2.3.3.RELEASE'
testImplementation 'org.springframework.boot:spring-boot-test:2.3.3.RELEASE'
testImplementation 'com.github.springtestdbunit:spring-test-dbunit:1.3.0'
testImplementation('org.dbunit:dbunit:2.5.3') {
exclude group: 'junit', module: 'junit' //by both name and group
}
testImplementation 'junit:junit:4.12'
testCompileOnly 'org.projectlombok:lombok:1.18.2'
testRuntimeOnly 'com.h2database:h2:1.4.200'
testAnnotationProcessor 'org.projectlombok:lombok:1.18.12'
}
[compileJava, compileTestJava, javadoc]*.options*.encoding = 'UTF-8'
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
Java
1
https://gitee.com/thoughtworks/persistence-jpa.git
git@gitee.com:thoughtworks/persistence-jpa.git
thoughtworks
persistence-jpa
persistence-jpa
main

搜索帮助