File tree 18 files changed +25
-3
lines changed
src/main/java/io/kestra/core
18 files changed +25
-3
lines changed Original file line number Diff line number Diff line change @@ -48,6 +48,7 @@ dependencies {
48
48
49
49
// test
50
50
testAnnotationProcessor project(' :processor' )
51
+ testImplementation project(' :tests' )
51
52
52
53
testImplementation project(' :repository-memory' )
53
54
testImplementation project(' :runner-memory' )
Original file line number Diff line number Diff line change @@ -12,4 +12,5 @@ dependencies {
12
12
testImplementation project(' :core' ). sourceSets. test. output
13
13
testImplementation project(' :jdbc' ). sourceSets. test. output
14
14
testImplementation project(' :storage-local' )
15
+ testImplementation project(' :tests' )
15
16
}
Original file line number Diff line number Diff line change @@ -15,4 +15,5 @@ dependencies {
15
15
testImplementation project(' :core' ). sourceSets. test. output
16
16
testImplementation project(' :jdbc' ). sourceSets. test. output
17
17
testImplementation project(' :storage-local' )
18
+ testImplementation project(' :tests' )
18
19
}
Original file line number Diff line number Diff line change @@ -15,4 +15,5 @@ dependencies {
15
15
testImplementation project(' :core' ). sourceSets. test. output
16
16
testImplementation project(' :jdbc' ). sourceSets. test. output
17
17
testImplementation project(' :storage-local' )
18
+ testImplementation project(' :tests' )
18
19
}
Original file line number Diff line number Diff line change @@ -10,5 +10,6 @@ dependencies {
10
10
implementation(" io.micronaut.sql:micronaut-jooq" )
11
11
implementation(" io.micronaut.flyway:micronaut-flyway" )
12
12
13
+ testImplementation project(' :tests' )
13
14
testImplementation project(' :core' ). sourceSets. test. output
14
15
}
Original file line number Diff line number Diff line change @@ -4,9 +4,9 @@ configurations {
4
4
5
5
dependencies {
6
6
testImplementation project(" :core" )
7
- testImplementation project(' :core' ). sourceSets. test. output
8
7
implementation(" io.micronaut.flyway:micronaut-flyway" )
9
8
implementation(" io.micronaut.sql:micronaut-jdbc-hikari" )
10
9
api project(" :jdbc" )
11
10
implementation project(" :jdbc-h2" )
11
+ testImplementation project(" :tests" )
12
12
}
Original file line number Diff line number Diff line change @@ -4,6 +4,8 @@ configurations {
4
4
5
5
dependencies {
6
6
testImplementation project(" :core" )
7
- testImplementation project(' :core' ). sourceSets. test. output
8
7
api project(" :repository-memory" )
8
+
9
+
10
+ testImplementation project(' :tests' )
9
11
}
Original file line number Diff line number Diff line change @@ -12,6 +12,7 @@ dependencies {
12
12
implementation ' com.github.docker-java:docker-java-transport-httpclient5:3.3.6'
13
13
14
14
testImplementation project(' :core' ). sourceSets. test. output
15
+ testImplementation project(' :tests' )
15
16
testImplementation project(' :storage-local' )
16
17
testImplementation project(' :repository-memory' )
17
18
testImplementation project(' :runner-memory' )
Original file line number Diff line number Diff line change @@ -4,6 +4,7 @@ include 'platform'
4
4
5
5
include ' cli'
6
6
include ' core'
7
+ include ' tests'
7
8
8
9
include ' runner-memory'
9
10
Original file line number Diff line number Diff line change @@ -7,5 +7,5 @@ dependencies {
7
7
implementation project(" :core" )
8
8
9
9
testAnnotationProcessor project(" :processor" )
10
- testImplementation project(' :core ' ) . sourceSets . test . output
10
+ testImplementation project(' :tests ' )
11
11
}
Original file line number Diff line number Diff line change
1
+ dependencies {
2
+ implementation project(' :core' )
3
+ implementation " io.micronaut:micronaut-runtime"
4
+ implementation " io.micronaut.test:micronaut-test-junit5"
5
+
6
+ implementation " org.junit.jupiter:junit-jupiter-engine"
7
+ implementation " org.junit.jupiter:junit-jupiter-engine"
8
+
9
+ api ' org.hamcrest:hamcrest:2.2'
10
+ api ' org.hamcrest:hamcrest-library:2.2'
11
+ api ' org.mockito:mockito-junit-jupiter'
12
+ }
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
Original file line number Diff line number Diff line change @@ -30,6 +30,7 @@ dependencies {
30
30
testImplementation project(' :storage-local' )
31
31
testImplementation(" com.github.tomakehurst:wiremock-jre8" )
32
32
33
+ testImplementation project(' :tests' )
33
34
testImplementation project(' :jdbc' )
34
35
testImplementation project(' :jdbc' ). sourceSets. test. output
35
36
testImplementation project(' :jdbc-h2' )
You can’t perform that action at this time.
0 commit comments