We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3410597 commit 1584e4fCopy full SHA for 1584e4f
.github/workflows/maven.yml
@@ -15,7 +15,7 @@ jobs:
15
strategy:
16
fail-fast: false
17
matrix:
18
- os: [ubuntu-latest, macos-latest]
+ os: [ubuntu-latest, windows-latest, macos-latest]
19
runs-on: ${{ matrix.os }}
20
timeout-minutes: 45
21
m2e-parent/pom.xml
@@ -240,6 +240,18 @@
240
</plugins>
241
</build>
242
</profile>
243
+ <profile>
244
+ <id>windows</id>
245
+ <activation>
246
+ <os>
247
+ <family>windows</family>
248
+ </os>
249
+ </activation>
250
+ <properties>
251
+ <!-- The Tycho baselinging does not yet work well on Windows. Temporarily skip it until it is fixed.-->
252
+ <tycho.baseline.skip>true</tycho.baseline.skip>
253
+ </properties>
254
+ </profile>
255
</profiles>
256
257
<developers>
0 commit comments