Compare commits
4 Commits
noise-java
...
master
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
49af72520c | ||
|
|
36c1079322 | ||
|
|
3f0fba316d | ||
|
|
a529bd0143 |
17
.github/workflows/test.yml
vendored
17
.github/workflows/test.yml
vendored
@ -7,23 +7,18 @@ jobs:
|
|||||||
runs-on: ${{ matrix.os }}
|
runs-on: ${{ matrix.os }}
|
||||||
strategy:
|
strategy:
|
||||||
matrix:
|
matrix:
|
||||||
os: [ubuntu-20.04]
|
os: [ubuntu-22.04]
|
||||||
java: [8, 11, 13, 15]
|
java: [8, 11, 17, 21]
|
||||||
fail-fast: false
|
fail-fast: false
|
||||||
name: JDK ${{ matrix.java }}
|
name: JDK ${{ matrix.java }}
|
||||||
|
|
||||||
steps:
|
steps:
|
||||||
- uses: actions/checkout@v1
|
- uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4.1.1
|
||||||
- name: Set up JDK
|
- name: Set up JDK
|
||||||
uses: actions/setup-java@v1
|
uses: actions/setup-java@9704b39bf258b59bc04b50fa2dd55e9ed76b47a8 # v4.1.0
|
||||||
with:
|
with:
|
||||||
java-version: ${{ matrix.java }}
|
java-version: ${{ matrix.java }}
|
||||||
- name: Cache local Maven repository
|
distribution: 'temurin'
|
||||||
uses: actions/cache@v2
|
cache: maven
|
||||||
with:
|
|
||||||
path: ~/.m2/repository
|
|
||||||
key: ${{ runner.os }}-maven-${{ hashFiles('**/pom.xml') }}
|
|
||||||
restore-keys: |
|
|
||||||
${{ runner.os }}-maven-
|
|
||||||
- name: Test with Maven
|
- name: Test with Maven
|
||||||
run: mvn verify -B --file pom.xml
|
run: mvn verify -B --file pom.xml
|
||||||
|
|||||||
4
pom.xml
4
pom.xml
@ -5,7 +5,7 @@
|
|||||||
|
|
||||||
<groupId>org.signal.forks</groupId>
|
<groupId>org.signal.forks</groupId>
|
||||||
<artifactId>noise-java</artifactId>
|
<artifactId>noise-java</artifactId>
|
||||||
<version>0.1.1</version>
|
<version>0.1.2-SNAPSHOT</version>
|
||||||
|
|
||||||
<name>Noise-Java</name>
|
<name>Noise-Java</name>
|
||||||
<description>Plain Java implementation of the Noise protocol</description>
|
<description>Plain Java implementation of the Noise protocol</description>
|
||||||
@ -16,7 +16,7 @@
|
|||||||
<connection>scm:git:https://github.com/signalapp/noise-java.git</connection>
|
<connection>scm:git:https://github.com/signalapp/noise-java.git</connection>
|
||||||
<developerConnection>scm:git:git@github.com:signalapp/noise-java.git</developerConnection>
|
<developerConnection>scm:git:git@github.com:signalapp/noise-java.git</developerConnection>
|
||||||
<url>https://github.com/signalapp/noise-java</url>
|
<url>https://github.com/signalapp/noise-java</url>
|
||||||
<tag>noise-java-0.1.1</tag>
|
<tag>HEAD</tag>
|
||||||
</scm>
|
</scm>
|
||||||
|
|
||||||
<developers>
|
<developers>
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user