Skip to content

Commit

Permalink
Fix build
Browse files Browse the repository at this point in the history
  • Loading branch information
alvarosanchez committed Apr 10, 2024
1 parent 7b3a4dc commit 69aabf0
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 2 deletions.
1 change: 1 addition & 0 deletions src/fulfillment/aws/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@ plugins {
id("com.github.johnrengelman.shadow") version "8.1.1"
id("io.micronaut.application") version "4.3.4"
id("io.micronaut.aot") version "4.3.3"
id("io.micronaut.test-resources") version "4.3.4"
}

group = "micronaut.mushop"
Expand Down
1 change: 1 addition & 0 deletions src/fulfillment/oci/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@ plugins {
id("groovy")
id("com.github.johnrengelman.shadow") version "8.1.1"
id("io.micronaut.application") version "4.3.4"
id("io.micronaut.test-resources") version "4.3.4"
}

group = "micronaut.mushop"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,9 @@ package mushop
import io.micronaut.http.client.HttpClient
import io.micronaut.http.client.annotation.Client
import jakarta.inject.Inject
import spock.lang.Specification

abstract class AbstractFulfillmentControllerSpec {
abstract class AbstractFulfillmentControllerSpec extends Specification {

@Inject
@Client("/fulfillment")
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -9,9 +9,10 @@ import io.micronaut.http.client.annotation.Client
import io.micronaut.nats.annotation.NatsListener
import io.micronaut.nats.annotation.Subject
import jakarta.inject.Inject
import spock.lang.Specification
import spock.util.concurrent.AsyncConditions

abstract class AbstractFulfillmentListenerSpec {
abstract class AbstractFulfillmentListenerSpec extends Specification {

@Inject
@Client("/fulfillment")
Expand Down

0 comments on commit 69aabf0

Please sign in to comment.