File tree Expand file tree Collapse file tree 9 files changed +77
-161
lines changed
src/test/kotlin/io/quarkus/kotlin/arc
src/main/kotlin/io/quarkus/kotlin/arc Expand file tree Collapse file tree 9 files changed +77
-161
lines changed Original file line number Diff line number Diff line change 613
613
<artifactId >quarkus-arc</artifactId >
614
614
<version >${project.version} </version >
615
615
</dependency >
616
- <dependency >
617
- <groupId >io.quarkus</groupId >
618
- <artifactId >quarkus-arc-kotlin</artifactId >
619
- <version >${project.version} </version >
620
- </dependency >
621
616
<dependency >
622
617
<groupId >io.quarkus</groupId >
623
618
<artifactId >quarkus-arc-dev</artifactId >
Original file line number Diff line number Diff line change 66
66
<scope >test</scope >
67
67
</dependency >
68
68
69
- <dependency >
70
- <groupId >org.jetbrains.kotlinx</groupId >
71
- <artifactId >kotlinx-coroutines-test</artifactId >
72
- <scope >test</scope >
73
- </dependency >
74
69
</dependencies >
75
70
76
71
<build >
92
87
</execution >
93
88
</executions >
94
89
</plugin >
95
- <plugin >
96
- <groupId >org.jetbrains.kotlin</groupId >
97
- <artifactId >kotlin-maven-plugin</artifactId >
98
- <version >${kotlin.version} </version >
99
- <executions >
100
- <execution >
101
- <id >compile</id >
102
- <goals >
103
- <goal >compile</goal >
104
- </goals >
105
- </execution >
106
- <execution >
107
- <id >test-compile</id >
108
- <goals >
109
- <goal >test-compile</goal >
110
- </goals >
111
- <configuration >
112
- <sourceDirs >
113
- <source >src/test/kotlin</source >
114
- </sourceDirs >
115
- </configuration >
116
- </execution >
117
- </executions >
118
- <configuration >
119
- <jvmTarget >${maven.compiler.target} </jvmTarget >
120
- </configuration >
121
- </plugin >
122
90
</plugins >
123
91
</build >
124
92
</project >
Load Diff This file was deleted.
Original file line number Diff line number Diff line change 15
15
<packaging >pom</packaging >
16
16
<modules >
17
17
<module >deployment</module >
18
- <module >kotlin</module >
19
18
<module >runtime</module >
20
19
<module >test-supplement</module >
21
20
<module >test-supplement-decorator</module >
Original file line number Diff line number Diff line change 22
22
<groupId >io.quarkus</groupId >
23
23
<artifactId >quarkus-core</artifactId >
24
24
</dependency >
25
- <dependency >
26
- <groupId >io.quarkus</groupId >
27
- <artifactId >quarkus-arc-kotlin</artifactId >
28
- </dependency >
29
25
<dependency >
30
26
<groupId >org.eclipse.microprofile.context-propagation</groupId >
31
27
<artifactId >microprofile-context-propagation-api</artifactId >
Original file line number Diff line number Diff line change 33
33
<artifactId >quarkus-vertx-kotlin-deployment</artifactId >
34
34
<optional >true</optional >
35
35
</dependency >
36
+
37
+ <dependency >
38
+ <groupId >io.quarkus</groupId >
39
+ <artifactId >quarkus-junit5-internal</artifactId >
40
+ <scope >test</scope >
41
+ </dependency >
42
+
43
+ <dependency >
44
+ <groupId >io.quarkus</groupId >
45
+ <artifactId >quarkus-arc-test-supplement</artifactId >
46
+ <scope >test</scope >
47
+ </dependency >
48
+
49
+ <dependency >
50
+ <groupId >io.quarkus</groupId >
51
+ <artifactId >quarkus-arc-test-supplement-decorator</artifactId >
52
+ <scope >test</scope >
53
+ </dependency >
54
+
55
+ <dependency >
56
+ <groupId >org.jetbrains.kotlinx</groupId >
57
+ <artifactId >kotlinx-coroutines-test</artifactId >
58
+ <scope >test</scope >
59
+ </dependency >
36
60
</dependencies >
37
61
38
62
<build >
54
78
</execution >
55
79
</executions >
56
80
</plugin >
81
+ <plugin >
82
+ <groupId >org.jetbrains.kotlin</groupId >
83
+ <artifactId >kotlin-maven-plugin</artifactId >
84
+ <version >${kotlin.version} </version >
85
+ <executions >
86
+ <execution >
87
+ <id >compile</id >
88
+ <goals >
89
+ <goal >compile</goal >
90
+ </goals >
91
+ </execution >
92
+ <execution >
93
+ <id >test-compile</id >
94
+ <goals >
95
+ <goal >test-compile</goal >
96
+ </goals >
97
+ <configuration >
98
+ <sourceDirs >
99
+ <source >src/test/kotlin</source >
100
+ </sourceDirs >
101
+ </configuration >
102
+ </execution >
103
+ </executions >
104
+ <configuration >
105
+ <jvmTarget >${maven.compiler.target} </jvmTarget >
106
+ </configuration >
107
+ </plugin >
57
108
</plugins >
58
109
</build >
59
110
Original file line number Diff line number Diff line change 1
- package io.quarkus.arc. kotlin
1
+ package io.quarkus.kotlin.arc
2
2
3
3
import io.quarkus.arc.Arc
4
4
import io.quarkus.test.QuarkusUnitTest
Original file line number Diff line number Diff line change 14
14
<name >Quarkus - Kotlin - Runtime</name >
15
15
<description >Write your services in Kotlin</description >
16
16
<build >
17
+ <sourceDirectory >${project.basedir} /src/main/kotlin</sourceDirectory >
18
+ <testSourceDirectory >${project.basedir} /src/test/kotlin</testSourceDirectory >
17
19
<plugins >
18
20
<plugin >
19
21
<groupId >io.quarkus</groupId >
30
32
</capabilities >
31
33
</configuration >
32
34
</plugin >
35
+ <plugin >
36
+ <groupId >org.jetbrains.kotlin</groupId >
37
+ <artifactId >kotlin-maven-plugin</artifactId >
38
+ <version >${kotlin.version} </version >
39
+ <executions >
40
+ <execution >
41
+ <id >compile</id >
42
+ <goals >
43
+ <goal >compile</goal >
44
+ </goals >
45
+ </execution >
46
+ <execution >
47
+ <id >test-compile</id >
48
+ <goals >
49
+ <goal >test-compile</goal >
50
+ </goals >
51
+ </execution >
52
+ </executions >
53
+ <configuration >
54
+ <jvmTarget >${maven.compiler.target} </jvmTarget >
55
+ </configuration >
56
+ </plugin >
33
57
</plugins >
34
58
</build >
35
59
<dependencies >
Original file line number Diff line number Diff line change 1
- package io.quarkus.arc. kotlin
1
+ package io.quarkus.kotlin.arc
2
2
3
3
import io.quarkus.arc.Arc
4
4
import io.quarkus.arc.InjectableContext
You can’t perform that action at this time.
0 commit comments