-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #14 from testainers/dev
Version 0.1.0
- Loading branch information
Showing
55 changed files
with
1,521 additions
and
1,592 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 |
---|---|---|
@@ -0,0 +1,11 @@ | ||
root = true | ||
|
||
[*] | ||
insert_final_newline = true | ||
|
||
[{*.kt,*.kts}] | ||
ident_size = 4 | ||
max_line_length = 80 | ||
ktlint_code_style = ktlint_official | ||
ktlint_experimental = enabled | ||
ktlint_standard_no-wildcard-imports = disabled |
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
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
This file was deleted.
Oops, something went wrong.
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 |
---|---|---|
@@ -0,0 +1,70 @@ | ||
plugins { | ||
kotlin("jvm") version "1.9.24" | ||
kotlin("plugin.allopen") version "1.9.24" | ||
id("io.quarkus") | ||
} | ||
|
||
repositories { | ||
mavenCentral() | ||
mavenLocal() | ||
} | ||
|
||
val quarkusPlatformGroupId: String by project | ||
val quarkusPlatformArtifactId: String by project | ||
val quarkusPlatformVersion: String by project | ||
|
||
dependencies { | ||
implementation(enforcedPlatform("${quarkusPlatformGroupId}:${quarkusPlatformArtifactId}:${quarkusPlatformVersion}")) | ||
implementation("org.jetbrains.kotlin:kotlin-stdlib-jdk8") | ||
implementation("io.smallrye.config:smallrye-config-source-file-system") | ||
implementation("io.quarkus:quarkus-micrometer-registry-prometheus") | ||
implementation("io.quarkus:quarkus-smallrye-openapi") | ||
implementation("io.quarkus:quarkus-smallrye-health") | ||
implementation("io.quarkus:quarkus-rest") | ||
implementation("io.quarkus:quarkus-rest-jackson") | ||
implementation("io.quarkus:quarkus-container-image-docker") | ||
implementation("io.quarkus:quarkus-info") | ||
implementation("io.quarkus:quarkus-kotlin") | ||
implementation("io.quarkus:quarkus-arc") | ||
testImplementation("io.quarkus:quarkus-junit5") | ||
testImplementation("io.rest-assured:rest-assured") | ||
testImplementation("io.rest-assured:kotlin-extensions") | ||
testImplementation("io.quarkus:quarkus-jacoco") | ||
} | ||
|
||
group = "com.testainers" | ||
version = "0.1.0" | ||
|
||
java { | ||
sourceCompatibility = JavaVersion.VERSION_21 | ||
targetCompatibility = JavaVersion.VERSION_21 | ||
} | ||
|
||
tasks.withType<Test> { | ||
systemProperty( | ||
"java.util.logging.manager", | ||
"org.jboss.logmanager.LogManager" | ||
) | ||
|
||
testLogging { | ||
events( | ||
"PASSED", | ||
"SKIPPED", | ||
"FAILED", | ||
"STANDARD_OUT", | ||
"STANDARD_ERROR" | ||
) | ||
} | ||
} | ||
|
||
allOpen { | ||
annotation("jakarta.ws.rs.Path") | ||
annotation("jakarta.enterprise.context.ApplicationScoped") | ||
annotation("jakarta.persistence.Entity") | ||
annotation("io.quarkus.test.junit.QuarkusTest") | ||
} | ||
|
||
tasks.withType<org.jetbrains.kotlin.gradle.tasks.KotlinCompile> { | ||
kotlinOptions.jvmTarget = JavaVersion.VERSION_21.toString() | ||
kotlinOptions.javaParameters = true | ||
} |
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,6 +1,6 @@ | ||
#Gradle properties | ||
quarkusPluginId=io.quarkus | ||
quarkusPluginVersion=3.7.2 | ||
quarkusPluginVersion=3.11.0 | ||
quarkusPlatformGroupId=io.quarkus.platform | ||
quarkusPlatformArtifactId=quarkus-bom | ||
quarkusPlatformVersion=3.7.2 | ||
quarkusPlatformVersion=3.11.0 |
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,5 +1,5 @@ | ||
distributionBase=GRADLE_USER_HOME | ||
distributionPath=wrapper/dists | ||
distributionUrl=https\://services.gradle.org/distributions/gradle-8.5-bin.zip | ||
distributionUrl=https\://services.gradle.org/distributions/gradle-8.7-bin.zip | ||
zipStoreBase=GRADLE_USER_HOME | ||
zipStorePath=wrapper/dists |
This file was deleted.
Oops, something went wrong.
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 |
---|---|---|
@@ -0,0 +1,13 @@ | ||
pluginManagement { | ||
val quarkusPluginVersion: String by settings | ||
val quarkusPluginId: String by settings | ||
repositories { | ||
mavenCentral() | ||
gradlePluginPortal() | ||
mavenLocal() | ||
} | ||
plugins { | ||
id(quarkusPluginId) version quarkusPluginVersion | ||
} | ||
} | ||
rootProject.name="httpbucket" |
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
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
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
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
Oops, something went wrong.