Skip to content

Commit ddb013a

Browse files
committed
elk stack + readme + agent refactorings
1 parent 0225f78 commit ddb013a

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

46 files changed

+1965
-434
lines changed

.github/workflows/codeql.yml

Lines changed: 0 additions & 74 deletions
This file was deleted.

.github/workflows/maven-tests.yml

Lines changed: 72 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,72 @@
1+
name: Maven Tests
2+
3+
on:
4+
push:
5+
branches:
6+
- main
7+
- master
8+
pull_request:
9+
branches:
10+
- main
11+
- master
12+
workflow_dispatch:
13+
14+
permissions:
15+
contents: read
16+
17+
jobs:
18+
test:
19+
name: Test (JDK ${{ matrix.java }})
20+
runs-on: ubuntu-latest
21+
strategy:
22+
fail-fast: false
23+
matrix:
24+
java:
25+
- '8'
26+
27+
steps:
28+
- name: Checkout
29+
uses: actions/checkout@v4
30+
31+
- name: Set up JDK
32+
uses: actions/setup-java@v4
33+
with:
34+
distribution: temurin
35+
java-version: ${{ matrix.java }}
36+
cache: maven
37+
38+
- name: Run tests
39+
run: mvn -B -ntp test
40+
41+
- name: Upload surefire reports
42+
if: always()
43+
uses: actions/upload-artifact@v4
44+
with:
45+
name: surefire-reports-jdk-${{ matrix.java }}
46+
path: target/surefire-reports
47+
if-no-files-found: warn
48+
49+
package:
50+
name: Package (JDK ${{ matrix.java }})
51+
runs-on: ubuntu-latest
52+
needs: test
53+
strategy:
54+
fail-fast: false
55+
matrix:
56+
java:
57+
- '8'
58+
59+
steps:
60+
- name: Checkout
61+
uses: actions/checkout@v4
62+
63+
- name: Set up JDK
64+
uses: actions/setup-java@v4
65+
with:
66+
distribution: temurin
67+
java-version: ${{ matrix.java }}
68+
cache: maven
69+
70+
- name: Build package
71+
run: mvn -B -ntp package -DskipTests
72+

.travis.yml

Lines changed: 0 additions & 16 deletions
This file was deleted.

LICENSE.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
MIT License
22

3-
Copyright (c) 2018 Marcel Sauer <niesfisch79@gmail.com>
3+
Copyright (c) 2026 Marcel Sauer <niesfisch79@gmail.com>
44

55
Permission is hereby granted, free of charge, to any person obtaining
66
a copy of this software and associated documentation files (the

0 commit comments

Comments
 (0)