Skip to content
This repository was archived by the owner on Mar 31, 2025. It is now read-only.
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
45 commits
Select commit Hold shift + click to select a range
2df071f
Testing workflow file for GitHub Actions
rlrSybit Mar 3, 2022
ca28f16
Testing publishing to MavenCentral
rlrSybit Mar 18, 2022
dbcef62
Testing publishing to MavenCentral
rlrSybit Mar 18, 2022
9b004c0
Testing publishing to MavenCentral
rlrSybit Mar 18, 2022
a086b60
Updated gradle-version,
rlrSybit Mar 18, 2022
78039a1
fixing bugs after gradle upgrade
rlrSybit Mar 18, 2022
82ee74c
removed typo
rlrSybit Mar 18, 2022
e11f29c
added chmod to publish workflow
rlrSybit Mar 18, 2022
7144705
added config for publishing to gradle
rlrSybit Mar 18, 2022
318676a
removed deprecated functions
rlrSybit Mar 21, 2022
fcb382f
changed remote url
rlrSybit Mar 21, 2022
117f254
changed order
rlrSybit Mar 21, 2022
010d1b9
added debugging print
rlrSybit Mar 21, 2022
a48ae6f
testing access on secrets
rlrSybit Mar 21, 2022
ef5a42f
testing access
rlrSybit Mar 21, 2022
843b5f8
testing access
rlrSybit Mar 21, 2022
7cd01b6
testing access
rlrSybit Mar 21, 2022
3e24395
finished publishing
rlrSybit Mar 21, 2022
7cb4228
restructured xml creation
rlrSybit Mar 21, 2022
b75d65c
added Test action
rlrSybit Apr 4, 2022
f1cafe5
added more pom information
rlrSybit Apr 14, 2022
c96bd15
fixed signing error
rlrSybit Apr 14, 2022
fb6707b
testing without signing
rlrSybit Apr 14, 2022
c46edff
added developers infos for pom
rlrSybit Apr 14, 2022
cf84d7f
added developers infos for pom
rlrSybit Apr 14, 2022
88b87c3
testing publish
rlrSybit Apr 21, 2022
eb876a8
testing publish
rlrSybit Apr 21, 2022
73d5da6
testing publish
rlrSybit May 6, 2022
d2eaef3
update gradle
stritti Jul 15, 2022
5a2fc1e
add correct envs
stritti Jul 15, 2022
d86b4b1
update prepository
stritti Jul 15, 2022
c15d538
update env vars
stritti Jul 15, 2022
f6d327b
update actions
stritti Jul 15, 2022
be2f1d1
pass envs
stritti Jul 15, 2022
a72ac20
update
stritti Jul 15, 2022
99e8a84
remove name
stritti Jul 15, 2022
80cecb9
default version: snapshot
stritti Jul 15, 2022
7a2a151
upgrade to JDK 18
stritti Jul 15, 2022
337e551
add snapshot
stritti Jul 15, 2022
79d1dbb
remove version from gradle
stritti Jul 15, 2022
64b1eed
rename defautl
stritti Jul 15, 2022
a44cf6d
add java settings
stritti Jul 15, 2022
056275f
remove snapshot
stritti Jul 15, 2022
ee550bd
just a try
stritti Jul 15, 2022
67ce67b
remove travis
stritti Jul 15, 2022
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
50 changes: 50 additions & 0 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,50 @@
# This workflow uses actions that are not certified by GitHub.
# They are provided by a third-party and are governed by
# separate terms of service, privacy policy, and support
# documentation.
# This workflow will build a Java project with Gradle and cache/restore any dependencies to improve the workflow execution time
# For more information see: https://help.github.com/actions/language-and-framework-guides/building-and-testing-java-with-gradle

name: Build & Publish

on:
push:
branches: [master]
pull_request:
branches: [master]

jobs:
build:

runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v2
- name: Set up JDK 18
uses: actions/setup-java@v2
with:
java-version: '18'
distribution: 'temurin'
cache: gradle
- name: Make gradlew executable
run: chmod +x ./gradlew
- name: Build with Gradle
uses: gradle/gradle-build-action@v2
with:
arguments: -Pversion=${{ github.event.release.tag_name || '1.0-SNAPSHOT' }} build
- name: Run Tests
uses: gradle/gradle-build-action@v2
with:
arguments: test integrationTest
- name: Archive test report
uses: actions/upload-artifact@v2
with:
name: Test report
path: build/reports/tests/test
- name: Publish with Gradle
uses: gradle/gradle-build-action@v2
with:
arguments: -Pversion=${{ github.event.release.tag_name || '1.0-SNAPSHOT' }} publish
env:
ACTION_DEPLOY_USER: ${{ secrets.ACTION_DEPLOY_USER }}
ACTION_DEPLOY_TOKEN: ${{ secrets.ACTION_DEPLOY_TOKEN }}
33 changes: 0 additions & 33 deletions .github/workflows/gradle.yml

This file was deleted.

1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -22,3 +22,4 @@ src/itest/resources/credentials.properties
src/itest/resources/credentials.properties
out/
*.iml
bin/
28 changes: 0 additions & 28 deletions .travis.yml

This file was deleted.

3 changes: 3 additions & 0 deletions .vscode/settings.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
{
"java.configuration.updateBuildConfiguration": "interactive"
}
Loading