File tree Expand file tree Collapse file tree 5 files changed +28
-165
lines changed
kotlinx-coroutines-reactive Expand file tree Collapse file tree 5 files changed +28
-165
lines changed Original file line number Diff line number Diff line change 47
47
<version >1.8.1</version >
48
48
<scope >test</scope >
49
49
</dependency >
50
- <dependency >
51
- <groupId >org.jetbrains.kotlinx</groupId >
52
- <artifactId >atomicfu</artifactId >
53
- <version >${atomicfu.version} </version >
54
- <scope >provided</scope >
55
- </dependency >
56
50
</dependencies >
57
51
58
52
<build >
59
53
<sourceDirectory >src/main/kotlin</sourceDirectory >
60
54
<testSourceDirectory >src/test/kotlin</testSourceDirectory >
61
55
62
56
<plugins >
63
- <!-- compile Kotlin files to staging directory -->
64
- <plugin >
65
- <groupId >org.jetbrains.kotlin</groupId >
66
- <artifactId >kotlin-maven-plugin</artifactId >
67
- <version >${kotlin.version} </version >
68
- <executions >
69
- <execution >
70
- <id >compile</id >
71
- <phase >compile</phase >
72
- <goals >
73
- <goal >compile</goal >
74
- </goals >
75
- <configuration >
76
- <output >${project.build.directory} /classes-atomicfu</output >
77
- </configuration >
78
- </execution >
79
- </executions >
80
- </plugin >
81
- <!-- transform classes with AtomicFU plugin -->
82
- <plugin >
83
- <groupId >org.jetbrains.kotlinx</groupId >
84
- <artifactId >atomicfu-maven-plugin</artifactId >
85
- <version >${atomicfu.version} </version >
86
- <executions >
87
- <execution >
88
- <goals >
89
- <goal >transform</goal >
90
- </goals >
91
- <configuration >
92
- <verbose >true</verbose >
93
- <input >${project.build.directory} /classes-atomicfu</input >
94
- </configuration >
95
- </execution >
96
- </executions >
97
- </plugin >
98
57
<!-- additional configuration for tests -->
99
58
<plugin >
100
59
<artifactId >maven-surefire-plugin</artifactId >
Original file line number Diff line number Diff line change 147
147
<version >${junit.version} </version >
148
148
<scope >test</scope >
149
149
</dependency >
150
+ <dependency >
151
+ <groupId >org.jetbrains.kotlinx</groupId >
152
+ <artifactId >atomicfu</artifactId >
153
+ <version >${atomicfu.version} </version >
154
+ <scope >provided</scope >
155
+ </dependency >
150
156
</dependencies >
151
157
152
158
<build >
165
171
</execution >
166
172
</executions >
167
173
</plugin >
168
-
174
+ <!-- compile Kotlin files to staging directory -->
169
175
<plugin >
170
176
<groupId >org.jetbrains.kotlin</groupId >
171
177
<artifactId >kotlin-maven-plugin</artifactId >
176
182
<goals >
177
183
<goal >compile</goal >
178
184
</goals >
185
+ <configuration >
186
+ <output >${project.build.directory} /classes-atomicfu</output >
187
+ </configuration >
179
188
</execution >
180
189
<execution >
181
190
<id >test-compile</id >
191
200
</args >
192
201
</configuration >
193
202
</plugin >
203
+ <!-- transform classes with AtomicFU plugin -->
204
+ <plugin >
205
+ <groupId >org.jetbrains.kotlinx</groupId >
206
+ <artifactId >atomicfu-maven-plugin</artifactId >
207
+ <version >${atomicfu.version} </version >
208
+ <executions >
209
+ <execution >
210
+ <goals >
211
+ <goal >transform</goal >
212
+ </goals >
213
+ <configuration >
214
+ <verbose >true</verbose >
215
+ <input >${project.build.directory} /classes-atomicfu</input >
216
+ </configuration >
217
+ </execution >
218
+ </executions >
219
+ </plugin >
220
+ <!-- documentation -->
194
221
<plugin >
195
222
<groupId >org.jetbrains.dokka</groupId >
196
223
<artifactId >dokka-maven-plugin</artifactId >
Original file line number Diff line number Diff line change 34
34
<testSourceDirectory >src/test/kotlin</testSourceDirectory >
35
35
36
36
<plugins >
37
- <!-- compile Kotlin files to staging directory -->
38
- <plugin >
39
- <groupId >org.jetbrains.kotlin</groupId >
40
- <artifactId >kotlin-maven-plugin</artifactId >
41
- <version >${kotlin.version} </version >
42
- <executions >
43
- <execution >
44
- <id >compile</id >
45
- <phase >compile</phase >
46
- <goals >
47
- <goal >compile</goal >
48
- </goals >
49
- <configuration >
50
- <output >${project.build.directory} /classes-atomicfu</output >
51
- </configuration >
52
- </execution >
53
- </executions >
54
- </plugin >
55
- <!-- transform classes with AtomicFU plugin -->
56
- <plugin >
57
- <groupId >org.jetbrains.kotlinx</groupId >
58
- <artifactId >atomicfu-maven-plugin</artifactId >
59
- <version >${atomicfu.version} </version >
60
- <executions >
61
- <execution >
62
- <goals >
63
- <goal >transform</goal >
64
- </goals >
65
- <configuration >
66
- <verbose >true</verbose >
67
- <input >${project.build.directory} /classes-atomicfu</input >
68
- </configuration >
69
- </execution >
70
- </executions >
71
- </plugin >
72
37
<!-- documentation -->
73
38
<plugin >
74
39
<groupId >org.jetbrains.dokka</groupId >
109
74
<classifier >tests</classifier >
110
75
<scope >test</scope >
111
76
</dependency >
112
- <dependency >
113
- <groupId >org.jetbrains.kotlinx</groupId >
114
- <artifactId >atomicfu</artifactId >
115
- <version >${atomicfu.version} </version >
116
- <scope >provided</scope >
117
- </dependency >
118
77
</dependencies >
119
78
120
79
</project >
Original file line number Diff line number Diff line change 34
34
<testSourceDirectory >src/test/kotlin</testSourceDirectory >
35
35
36
36
<plugins >
37
- <!-- compile Kotlin files to staging directory -->
38
- <plugin >
39
- <groupId >org.jetbrains.kotlin</groupId >
40
- <artifactId >kotlin-maven-plugin</artifactId >
41
- <version >${kotlin.version} </version >
42
- <executions >
43
- <execution >
44
- <id >compile</id >
45
- <phase >compile</phase >
46
- <goals >
47
- <goal >compile</goal >
48
- </goals >
49
- <configuration >
50
- <output >${project.build.directory} /classes-atomicfu</output >
51
- </configuration >
52
- </execution >
53
- </executions >
54
- </plugin >
55
- <!-- transform classes with AtomicFU plugin -->
56
- <plugin >
57
- <groupId >org.jetbrains.kotlinx</groupId >
58
- <artifactId >atomicfu-maven-plugin</artifactId >
59
- <version >${atomicfu.version} </version >
60
- <executions >
61
- <execution >
62
- <goals >
63
- <goal >transform</goal >
64
- </goals >
65
- <configuration >
66
- <verbose >true</verbose >
67
- <input >${project.build.directory} /classes-atomicfu</input >
68
- </configuration >
69
- </execution >
70
- </executions >
71
- </plugin >
72
37
<!-- documentation -->
73
38
<plugin >
74
39
<groupId >org.jetbrains.dokka</groupId >
109
74
<classifier >tests</classifier >
110
75
<scope >test</scope >
111
76
</dependency >
112
- <dependency >
113
- <groupId >org.jetbrains.kotlinx</groupId >
114
- <artifactId >atomicfu</artifactId >
115
- <version >${atomicfu.version} </version >
116
- <scope >provided</scope >
117
- </dependency >
118
77
</dependencies >
119
78
120
79
</project >
Original file line number Diff line number Diff line change 34
34
<testSourceDirectory >src/test/kotlin</testSourceDirectory >
35
35
36
36
<plugins >
37
- <!-- compile Kotlin files to staging directory -->
38
- <plugin >
39
- <groupId >org.jetbrains.kotlin</groupId >
40
- <artifactId >kotlin-maven-plugin</artifactId >
41
- <version >${kotlin.version} </version >
42
- <executions >
43
- <execution >
44
- <id >compile</id >
45
- <phase >compile</phase >
46
- <goals >
47
- <goal >compile</goal >
48
- </goals >
49
- <configuration >
50
- <output >${project.build.directory} /classes-atomicfu</output >
51
- </configuration >
52
- </execution >
53
- </executions >
54
- </plugin >
55
- <!-- transform classes with AtomicFU plugin -->
56
- <plugin >
57
- <groupId >org.jetbrains.kotlinx</groupId >
58
- <artifactId >atomicfu-maven-plugin</artifactId >
59
- <version >${atomicfu.version} </version >
60
- <executions >
61
- <execution >
62
- <goals >
63
- <goal >transform</goal >
64
- </goals >
65
- <configuration >
66
- <verbose >true</verbose >
67
- <input >${project.build.directory} /classes-atomicfu</input >
68
- </configuration >
69
- </execution >
70
- </executions >
71
- </plugin >
72
37
<!-- documentation -->
73
38
<plugin >
74
39
<groupId >org.jetbrains.dokka</groupId >
115
80
<classifier >tests</classifier >
116
81
<scope >test</scope >
117
82
</dependency >
118
- <dependency >
119
- <groupId >org.jetbrains.kotlinx</groupId >
120
- <artifactId >atomicfu</artifactId >
121
- <version >${atomicfu.version} </version >
122
- <scope >provided</scope >
123
- </dependency >
124
83
</dependencies >
125
84
126
85
</project >
You can’t perform that action at this time.
0 commit comments