File tree Expand file tree Collapse file tree 7 files changed +764
-0
lines changed
src/test/kotlin/io/quarkus/arc/kotlin
src/main/kotlin/io/quarkus/arc/kotlin Expand file tree Collapse file tree 7 files changed +764
-0
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 >
616
621
<dependency >
617
622
<groupId >io.quarkus</groupId >
618
623
<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 >
69
74
</dependencies >
70
75
71
76
<build >
87
92
</execution >
88
93
</executions >
89
94
</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 >
90
122
</plugins >
91
123
</build >
92
124
</project >
You can’t perform that action at this time.
0 commit comments