-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
#69 Implement ManyToManyAttributeProcessing
#70 Further test BasicAttributeProcessing #71 Further test BasicIdAttributeProcessing #72 Further test ElementCollectionAttributeProcessing #73 Further test EmbeddedIdAttributeProcessing #74 Implement ManyToOneAttributeProcessing #75 Implement OneToManyAttributeProcessing #76 Implement OneToOneAttributeProcessing #77 Implement PluralAnyMappingAttributeProcessing
- Loading branch information
Showing
197 changed files
with
963 additions
and
710 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1,51 @@ | ||
apply from: rootProject.file( "gradle/module.gradle" ) | ||
plugins { | ||
id "java-library" | ||
} | ||
|
||
group = "org.hibernate.models" | ||
version = "1.0.0-SNAPSHOT" | ||
|
||
apply from: rootProject.file( "gradle/checkstyle.gradle" ) | ||
|
||
dependencies { | ||
implementation platform( libs.hibernatePlatform ) | ||
implementation libs.hibernateCore | ||
implementation libs.hibernateModels | ||
implementation libs.jandex | ||
implementation libs.classmate | ||
implementation libs.logging | ||
|
||
implementation libs.hcann | ||
|
||
compileOnly libs.loggingAnnotations | ||
|
||
annotationProcessor libs.loggingProcessor | ||
annotationProcessor libs.logging | ||
annotationProcessor libs.loggingAnnotations | ||
|
||
testImplementation testLibs.junit5Api | ||
testImplementation testLibs.assertjCore | ||
testImplementation libs.hibernateTesting | ||
|
||
testRuntimeOnly testLibs.junit5Engine | ||
} | ||
|
||
java { | ||
sourceCompatibility = 17 | ||
targetCompatibility = 17 | ||
} | ||
|
||
//test { | ||
// useJUnitPlatform() | ||
//} | ||
|
||
tasks.withType( JavaCompile ).configureEach { | ||
options.encoding = "UTF-8" | ||
options.warnings false | ||
} | ||
|
||
// create a single "compile" task | ||
tasks.register( "compile" ) {compile-> | ||
compile.dependsOn tasks.named( sourceSets.main.compileJavaTaskName ) | ||
compile.dependsOn tasks.named( sourceSets.test.compileJavaTaskName ) | ||
} |
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
Oops, something went wrong.