File tree Expand file tree Collapse file tree 2 files changed +22
-2
lines changed Expand file tree Collapse file tree 2 files changed +22
-2
lines changed Original file line number Diff line number Diff line change
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
Original file line number Diff line number Diff line change 6
6
<parent >
7
7
<groupId >com.github.martinpaljak</groupId >
8
8
<artifactId >yausa</artifactId >
9
- <version >25.01.23 -SNAPSHOT</version >
9
+ <version >25.02.21 -SNAPSHOT</version >
10
10
</parent >
11
11
12
12
<artifactId >sshprovider</artifactId >
16
16
<properties >
17
17
<maven .compiler.release>21</maven .compiler.release>
18
18
<!-- Note: name will change -->
19
- <yausa .version>25.01.23 -SNAPSHOT</yausa .version>
19
+ <yausa .version>25.02.21 -SNAPSHOT</yausa .version>
20
20
<project .build.sourceEncoding>UTF-8</project .build.sourceEncoding>
21
21
<project .build.outputTimestamp>2025-02-21T13:16:02Z</project .build.outputTimestamp>
22
22
</properties >
You can’t perform that action at this time.
0 commit comments