Skip to content

Commit bb6a5f6

Browse files
committed
Fix CI
1 parent 54e4de5 commit bb6a5f6

File tree

2 files changed

+6
-6
lines changed

2 files changed

+6
-6
lines changed

.github/workflows/maven.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -42,14 +42,14 @@ jobs:
4242
uses: actions/cache@v3
4343
with:
4444
path: ~/.m2/repository
45-
key: ${{ runner.os }}-maven-${{ hashFiles('**/pom.xml') }} # Cache dependencies based on pom.xml changes
45+
key: ${{ runner.os }}-maven-v2-${{ hashFiles('**/pom.xml') }} # Cache dependencies based on pom.xml changes
4646
restore-keys: |
47-
${{ runner.os }}-maven-
47+
${{ runner.os }}-maven-v2-
4848
4949
# Build the project (compiles and packages the code)
5050
- name: Build the project
51-
run: mvn -B -X -e clean install --file pom.xml --batch-mode --fail-fast -Dgpg.skip=true -Dmaven.deploy.skip=true
51+
run: mvn -B clean install --file pom.xml --batch-mode --fail-fast -Dgpg.skip=true -Dmaven.deploy.skip=true
5252

5353
# Run tests
5454
- name: Run tests
55-
run: mvn test -B -X -e --file pom.xml --batch-mode --fail-fast
55+
run: mvn test -B --file pom.xml --batch-mode --fail-fast

liquidjava-example/pom.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -48,9 +48,9 @@
4848
<version>${version.memcompiler}</version>
4949
</dependency>
5050
<dependency>
51-
<groupId>liquidjava-api</groupId>
51+
<groupId>io.github.rcosta358</groupId>
5252
<artifactId>liquidjava-api</artifactId>
53-
<version>0.0.2-SNAPSHOT</version>
53+
<version>0.0.2</version>
5454
</dependency>
5555
</dependencies>
5656
</project>

0 commit comments

Comments
 (0)