Skip to content

Commit

Permalink
Adjustments to master-main renaming;
Browse files Browse the repository at this point in the history
  • Loading branch information
JonasSchaub committed Jan 24, 2024
1 parent dea71c8 commit 61731e2
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 6 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/SonarCloud.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ name: SonarCloud
on:
push:
branches:
- master
- main
pull_request:
types: [opened, synchronize, reopened]
jobs:
Expand Down
12 changes: 8 additions & 4 deletions .github/workflows/maven.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,21 +11,25 @@ name: Java CI with Maven

on:
push:
branches: [ "master" ]
branches: [ "main", "production" ]
pull_request:
branches: [ "master" ]
branches: [ "main", "production" ]


jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
java: [ 11, 17, 21 ]
name: Java ${{ matrix.java }}

steps:
- uses: actions/checkout@v3
- name: Set up JDK 17
- name: Set up Java
uses: actions/setup-java@v3
with:
java-version: '17'
java-version: ${{ matrix.java }}
distribution: 'temurin'
- name: Build with Maven
run: mvn --batch-mode --update-snapshots package
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,7 @@ Sugar Removal Utility on multiple specific molecular structures of natural produ
(see above). Code examples of how to use and configure the <i>SugarRemovalUtility</i> class can be found here.

### SugarRemovalUtility CMD App
The sub-folder ["SugarRemovalUtility CMD App"](https://github.com/JonasSchaub/SugarRemoval/tree/master/SugarRemovalUtility%20CMD%20App)
The sub-folder ["SugarRemovalUtility CMD App"](https://github.com/JonasSchaub/SugarRemoval/tree/main/SugarRemovalUtility%20CMD%20App)
contains the sugar removal command-line application downloadable as
compressed archive. After decompression, the JAR file "SugarRemovalUtility-jar-with-dependencies.jar" can be executed
from the command-line using Java version 17 or higher. A detailed explanation how to use the application can be found in
Expand Down

0 comments on commit 61731e2

Please sign in to comment.