Skip to content

Commit

Permalink
Merge pull request #2 from antithesishq/feature-quality-refactor
Browse files Browse the repository at this point in the history
Feature quality refactor
  • Loading branch information
herzogp authored Aug 22, 2024
2 parents 305437e + b45fe76 commit a642d17
Show file tree
Hide file tree
Showing 18 changed files with 368 additions and 365 deletions.
5 changes: 4 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
@@ -1,6 +1,9 @@
# Ignore Gradle project-specific cache directory
.gradle

# Ignore Gradle build output directory
# Ignore Gradle build outputs
build
result*

# Ignore IDE-specific directory
.idea
10 changes: 8 additions & 2 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,13 @@ dependencies {
testRuntimeOnly 'org.junit.platform:junit-platform-launcher'
testImplementation 'com.fasterxml.jackson.core:jackson-databind:2.2.3'
testImplementation 'net.java.dev.jna:jna:5.13.0'
}

compileOnly 'org.projectlombok:lombok:1.18.34'
annotationProcessor 'org.projectlombok:lombok:1.18.34'

testCompileOnly 'org.projectlombok:lombok:1.18.34'
testAnnotationProcessor 'org.projectlombok:lombok:1.18.34'
}

compileJava {
sourceCompatibility = 1.8
Expand Down Expand Up @@ -51,7 +57,7 @@ task generateJavadoc(type: Javadoc) {

// Hack to enable Javadoc to compile while exclude internal functions
var sourceSetDirectories = sourceSets.main.java.srcDirs.join(":")
options.addStringOption("-source-path", sourceSetDirectories)
options.addStringOption("sourcepath", sourceSetDirectories)

classpath = sourceSets.main.compileClasspath
destinationDir = file("${buildDir}/docs/javadoc")
Expand Down
7 changes: 0 additions & 7 deletions settings.gradle
Original file line number Diff line number Diff line change
@@ -1,8 +1 @@
/*
* This file was generated by the Gradle 'init' task.
*
* The settings file is used to specify which projects to include in your build.
* For more detailed information on multi-project builds, please refer to https://docs.gradle.org/8.8/userguide/multi_project_builds.html in the Gradle documentation.
*/

rootProject.name = 'antithesis-sdk'
222 changes: 0 additions & 222 deletions src/main/java/com/antithesis/sdk/assertions/Assertion.java

This file was deleted.

Loading

0 comments on commit a642d17

Please sign in to comment.