Skip to content

Commit 55e540f

Browse files
committed
Track new version
1 parent 5842752 commit 55e540f

File tree

2 files changed

+22
-2
lines changed

2 files changed

+22
-2
lines changed

Makefile

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
# NOTE: this makefile is not intended for general use
2+
TZ = UTC
3+
export TZ
4+
5+
JAVA_HOME = /Library/Java/JavaVirtualMachines/zulu-21.jdk/Contents/Home
6+
export JAVA_HOME
7+
8+
SOURCES = $(shell find . -name '*.java' -o -name 'pom.xml')
9+
10+
test: $(SOURCES)
11+
./mvnw clean verify
12+
13+
fast: $(SOURCES)
14+
./mvnw package -Dmaven.test.skip=true
15+
16+
soft:
17+
ssh-agent sh -c 'chmod 600 ./src/test/resources/k/*; ssh-add ./src/test/resources/k/*; ssh-add -l; YAUSA_TEST=true make test'
18+
19+
maven:
20+
./mvnw clean install

pom.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
<parent>
77
<groupId>com.github.martinpaljak</groupId>
88
<artifactId>yausa</artifactId>
9-
<version>25.01.23-SNAPSHOT</version>
9+
<version>25.02.21-SNAPSHOT</version>
1010
</parent>
1111

1212
<artifactId>sshprovider</artifactId>
@@ -16,7 +16,7 @@
1616
<properties>
1717
<maven.compiler.release>21</maven.compiler.release>
1818
<!-- Note: name will change -->
19-
<yausa.version>25.01.23-SNAPSHOT</yausa.version>
19+
<yausa.version>25.02.21-SNAPSHOT</yausa.version>
2020
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
2121
<project.build.outputTimestamp>2025-02-21T13:16:02Z</project.build.outputTimestamp>
2222
</properties>

0 commit comments

Comments
 (0)