Skip to content

Commit dd15f81

Browse files
committed
Use snapshot version of 'vavr-match' and 'vavr-match-processor'
1 parent 34a5aa6 commit dd15f81

File tree

3 files changed

+9
-20
lines changed

3 files changed

+9
-20
lines changed

.github/workflows/ci.yml

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -26,5 +26,12 @@ jobs:
2626
architecture: ${{ matrix.architecture }}
2727
cache: 'maven'
2828

29+
# this is a temporary workaround until new Maven Central snapshot publishing is sorted out
30+
- name: Build vavr-match snapshot
31+
run: git clone https://github.com/vavr-io/vavr-match.git && mvn -f vavr-match/pom.xml install -DskipTests
32+
33+
- name: Build vavr-match-processor snapshot
34+
run: git clone https://github.com/vavr-io/vavr-match-processor.git && mvn -f vavr-match-processor/pom.xml install -DskipTests
35+
2936
- name: Build with Maven
3037
run: mvn test

pom.xml

Lines changed: 0 additions & 18 deletions
Original file line numberDiff line numberDiff line change
@@ -1,21 +1,3 @@
1-
<!--
2-
3-
Before creating a pull request, the following goals should be executed locally:
4-
5-
* Executing tests: `mvn clean test`
6-
* Executing doclint: `mvn javadoc:javadoc`
7-
8-
Tests & Code coverage:
9-
10-
* Executing benchmark assertions: `mvn clean test -Pbenchmark`
11-
* Executing benchmarks (long running!): `mvn test -Pbenchmark -pl vavr-benchmark`
12-
13-
We use these goals frequently to keep the dependencies and plugins up-to-date:
14-
15-
* Update version properties: `mvn versions:update-properties`
16-
* Check for new plugin version: `mvn versions:display-plugin-updates`
17-
18-
-->
191
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
202
<modelVersion>4.0.0</modelVersion>
213
<groupId>io.vavr</groupId>

vavr/pom.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,13 +22,13 @@
2222
<dependency>
2323
<groupId>${project.groupId}</groupId>
2424
<artifactId>vavr-match</artifactId>
25-
<version>0.10.6</version>
25+
<version>0.11.0-SNAPSHOT</version>
2626
</dependency>
2727

2828
<dependency>
2929
<groupId>${project.groupId}</groupId>
3030
<artifactId>vavr-match-processor</artifactId>
31-
<version>0.10.6</version>
31+
<version>0.11.0-SNAPSHOT</version>
3232
<optional>true</optional>
3333
</dependency>
3434

0 commit comments

Comments
 (0)