-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathbuild.gradle
More file actions
27 lines (23 loc) · 763 Bytes
/
Copy pathbuild.gradle
File metadata and controls
27 lines (23 loc) · 763 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
sourceCompatibility = 11
dependencies {
implementation project(':injection-core')
compileOnly 'org.hibernate.orm:hibernate-core:7.3.3.Final'
compileOnly 'jakarta.persistence:jakarta.persistence-api:3.1.0'
testImplementation project(':injection-core')
testCompileOnly 'org.hibernate.orm:hibernate-core:7.3.3.Final'
testCompileOnly 'jakarta.persistence:jakarta.persistence-api:3.1.0'
}
publishing {
publications {
maven(MavenPublication) {
groupId = project.group
version = project.version
artifactId = "injection-database-" + project.name
from components.java
}
}
}
tasks.compileJava.dependsOn(
':injection-core:jar',
':injection-core:shadowJar'
)