File tree Expand file tree Collapse file tree 2 files changed +17
-19
lines changed Expand file tree Collapse file tree 2 files changed +17
-19
lines changed Original file line number Diff line number Diff line change 281
281
</build >
282
282
283
283
<profiles >
284
- <!--
285
- This profile is active by default and will disable the generation of the source jar.
286
- When the native profile (see below) is active, the source jar will be generated.
287
- If we don't do it like this, the source jar is created and attached twice, which
288
- trips up Maven: "We have duplicated artifacts attached."
289
- -->
290
- <profile >
291
- <id >non-native</id >
292
- <activation >
293
- <activeByDefault >true</activeByDefault >
294
- </activation >
295
- <properties >
296
- <maven .source.skip>true</maven .source.skip>
297
- </properties >
298
- </profile >
299
-
300
284
<profile >
301
285
<id >native</id >
302
- <properties >
303
- <maven .source.skip>false</maven .source.skip>
304
- </properties >
305
286
<build >
306
287
<plugins >
307
288
<plugin >
Original file line number Diff line number Diff line change 570
570
</build >
571
571
</profile >
572
572
573
+ <!--
574
+ This profile is active by default and will disable the generation of the source jar.
575
+ When the native profile (see below) is active, the source jar will be generated.
576
+ If we don't do it like this, the source jar is created and attached twice, which
577
+ trips up Maven: "We have duplicated artifacts attached."
578
+ -->
579
+ <profile >
580
+ <id >non-native</id >
581
+ <activation >
582
+ <activeByDefault >true</activeByDefault >
583
+ </activation >
584
+ <properties >
585
+ <maven .source.skip>true</maven .source.skip>
586
+ </properties >
587
+ </profile >
588
+
573
589
<profile >
574
590
<id >native</id >
575
591
<properties >
576
592
<packaging-type >native</packaging-type >
577
593
<skip .maven.surefire>true</skip .maven.surefire>
578
594
<skip .maven.failsafe>false</skip .maven.failsafe>
595
+ <maven .source.skip>false</maven .source.skip>
579
596
</properties >
580
597
581
598
<build >
You can’t perform that action at this time.
0 commit comments