File tree Expand file tree Collapse file tree 3 files changed +58
-4
lines changed
Expand file tree Collapse file tree 3 files changed +58
-4
lines changed Original file line number Diff line number Diff line change 1+ name : Test CI
2+ on : [ push, fork ]
3+
4+ jobs :
5+ TEST_ALL :
6+ runs-on : ubuntu-latest
7+ steps :
8+ - name : Checkout
9+ uses : actions/checkout@v3
10+
11+ - name : 🪜 Setup java 17
12+ uses : actions/setup-java@v3
13+ with :
14+ java-version : 17
15+ distribution : temurin
16+
17+ - name : 🦞 chmod /gradlew
18+ run : chmod +x ./gradlew
19+
20+ - name : 🔦 Tes 🎚
21+ run : ./gradlew test --info
Original file line number Diff line number Diff line change 1+ <component name =" ProjectRunConfigurationManager" >
2+ <configuration default =" false" name =" TEST" type =" JUnit" factoryName =" JUnit" >
3+ <module name =" springdoc-openapi-gradle-plugin.test" />
4+ <shortenClasspath name =" ARGS_FILE" />
5+ <useClassPathOnly />
6+ <extension name =" coverage" >
7+ <pattern >
8+ <option name =" PATTERN" value =" org.springdoc.openapi.gradle.plugin.*" />
9+ <option name =" ENABLED" value =" true" />
10+ </pattern >
11+ </extension >
12+ <extension name =" net.ashald.envfile" >
13+ <option name =" IS_ENABLED" value =" false" />
14+ <option name =" IS_SUBST" value =" false" />
15+ <option name =" IS_PATH_MACRO_SUPPORTED" value =" false" />
16+ <option name =" IS_IGNORE_MISSING_FILES" value =" false" />
17+ <option name =" IS_ENABLE_EXPERIMENTAL_INTEGRATIONS" value =" false" />
18+ <ENTRIES >
19+ <ENTRY IS_ENABLED =" true" PARSER =" runconfig" />
20+ </ENTRIES >
21+ </extension >
22+ <option name =" ALTERNATIVE_JRE_PATH" value =" corretto-19" />
23+ <option name =" PACKAGE_NAME" value =" org.springdoc.openapi.gradle.plugin" />
24+ <option name =" MAIN_CLASS_NAME" value =" org.springdoc.openapi.gradle.plugin.OpenApiGradlePluginTest" />
25+ <option name =" METHOD_NAME" value =" " />
26+ <option name =" TEST_OBJECT" value =" class" />
27+ <option name =" PARAMETERS" value =" " />
28+ <option name =" WORKING_DIRECTORY" value =" %MODULE_WORKING_DIR%" />
29+ <method v =" 2" >
30+ <option name =" Make" enabled =" true" />
31+ </method >
32+ </configuration >
33+ </component >
Original file line number Diff line number Diff line change 11plugins {
22 `java- gradle- plugin`
33 `maven- publish`
4- kotlin(" jvm" ) version " 1.8.0-Beta "
4+ kotlin(" jvm" ) version " 1.8.0-RC "
55 id (" com.palantir.idea-test-fix" ) version " 0.1.0"
66 id(" com.gradle.plugin-publish" ) version " 0.14.0"
77 id(" org.sonarqube" ) version " 3.5.0.2730"
@@ -48,15 +48,15 @@ publishing {
4848dependencies {
4949 implementation(" com.google.code.gson:gson:2.10" )
5050 implementation(" org.awaitility:awaitility-kotlin:4.2.0" )
51- implementation(" com.github.psxpaul:gradle-execfork-plugin:0.2.1 " )
51+ implementation(" com.github.psxpaul:gradle-execfork-plugin:0.2.2 " )
5252 implementation(" org.springframework.boot:spring-boot-gradle-plugin:2.7.6" )
5353 implementation(" jakarta.platform:jakarta.jakartaee-api:10.0.0" )
5454
5555 testImplementation(gradleTestKit())
5656 testImplementation(" org.junit.jupiter:junit-jupiter:5.9.1" )
5757 testImplementation(" com.beust:klaxon:5.6" )
58- testImplementation(" com.fasterxml.jackson.module:jackson-module-kotlin:2.14.0 " )
59- testImplementation(" com.fasterxml.jackson.dataformat:jackson-dataformat-yaml:2.14.0 " )
58+ testImplementation(" com.fasterxml.jackson.module:jackson-module-kotlin:2.14.1 " )
59+ testImplementation(" com.fasterxml.jackson.dataformat:jackson-dataformat-yaml:2.14.1 " )
6060
6161 detektPlugins(" io.gitlab.arturbosch.detekt:detekt-formatting:1.22.0" )
6262}
You can’t perform that action at this time.
0 commit comments