Skip to content
This repository was archived by the owner on May 8, 2026. It is now read-only.
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
48 changes: 48 additions & 0 deletions .github/workflows/continuous_integration.yml
Original file line number Diff line number Diff line change
Expand Up @@ -57,6 +57,54 @@ jobs:
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
run: mvn -B package --file pom.xml --settings ci/settings.xml -DskipTests=true
build_jdk12:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Set up JDK 12
uses: actions/setup-java@v1
with:
java-version: 12
- name: Build with Maven
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
run: mvn -B package --file pom.xml --settings ci/settings.xml -DskipTests=true
build_jdk13:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Set up JDK 13
uses: actions/setup-java@v1
with:
java-version: 13
- name: Build with Maven
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
run: mvn -B package --file pom.xml --settings ci/settings.xml -DskipTests=true
build_jdk14:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Set up JDK 14
uses: actions/setup-java@v1
with:
java-version: 14
- name: Build with Maven
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
run: mvn -B package --file pom.xml --settings ci/settings.xml -DskipTests=true
build_jdk15:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Set up JDK 15
uses: actions/setup-java@v1
with:
java-version: 15
- name: Build with Maven
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
run: mvn -B package --file pom.xml --settings ci/settings.xml -DskipTests=true
integration_test:
runs-on: ubuntu-latest
steps:
Expand Down
5 changes: 3 additions & 2 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,9 @@ name: Release

on:
push:
branches:
- master
tags:
- 1.*
- 2.*

jobs:
deploy:
Expand Down
4 changes: 4 additions & 0 deletions README.adoc
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,10 @@ Feel free to get in touch by visiting our https://www.lmis.de[website] or contac

This project contains the API for the communication with the agrirouter. Everything you need for the onboarding process, secure communication and much more.

== Releases

The release workflow follows the https://docs.microsoft.com/en-us/azure/devops/repos/git/git-branching-guidance?view=azure-devops[Microsoft DevOps Release Model] where a release shows up as a branch in the repository.

== Modules

=== `api` Module
Expand Down
2 changes: 1 addition & 1 deletion agrirouter-api-java-api/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<parent>
<groupId>com.agrirouter.api</groupId>
<artifactId>agrirouter-api-java</artifactId>
<version>1.4.0</version>
<version>2.0.0-SNAPSHOT</version>
</parent>
<name>AGRIROUTER API JAVA - API</name>
<artifactId>agrirouter-api-java-api</artifactId>
Expand Down
2 changes: 1 addition & 1 deletion agrirouter-api-java-convenience/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<parent>
<groupId>com.agrirouter.api</groupId>
<artifactId>agrirouter-api-java</artifactId>
<version>1.4.0</version>
<version>2.0.0-SNAPSHOT</version>
</parent>
<name>AGRIROUTER API JAVA - CONVENIENCE</name>
<artifactId>agrirouter-api-java-convenience</artifactId>
Expand Down
2 changes: 1 addition & 1 deletion agrirouter-api-java-impl/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
<parent>
<groupId>com.agrirouter.api</groupId>
<artifactId>agrirouter-api-java</artifactId>
<version>1.4.0</version>
<version>2.0.0-SNAPSHOT</version>
</parent>
<name>AGRIROUTER API JAVA - IMPL</name>
<artifactId>agrirouter-api-java-impl</artifactId>
Expand Down
2 changes: 1 addition & 1 deletion agrirouter-api-tests/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<parent>
<artifactId>agrirouter-api-java</artifactId>
<groupId>com.agrirouter.api</groupId>
<version>1.4.0</version>
<version>2.0.0-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<name>AGRIROUTER API JAVA - TESTS</name>
Expand Down
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@

<groupId>com.agrirouter.api</groupId>
<artifactId>agrirouter-api-java</artifactId>
<version>1.4.0</version>
<version>2.0.0-SNAPSHOT</version>
<packaging>pom</packaging>

<name>AGRIROUTER API JAVA</name>
Expand Down