Skip to content

Commit

Permalink
#69 Implement ManyToManyAttributeProcessing
Browse files Browse the repository at this point in the history
#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
sebersole committed Nov 16, 2023
1 parent 5d9e336 commit 4e27501
Show file tree
Hide file tree
Showing 197 changed files with 963 additions and 710 deletions.
52 changes: 51 additions & 1 deletion build.gradle
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 )
}
34 changes: 0 additions & 34 deletions gradle/java-module.gradle

This file was deleted.

4 changes: 0 additions & 4 deletions gradle/module.gradle

This file was deleted.

32 changes: 0 additions & 32 deletions hibernate-models-orm/hibernate-models-orm.gradle

This file was deleted.

Loading

0 comments on commit 4e27501

Please sign in to comment.