Skip to content

Commit

Permalink
Initial contribution
Browse files Browse the repository at this point in the history
Signed-off-by: Mark Hoffmann <m.hoffmann@data-in-motion.biz>
  • Loading branch information
maho7791 committed Jun 22, 2023
0 parents commit 82e5b35
Show file tree
Hide file tree
Showing 136 changed files with 15,740 additions and 0 deletions.
45 changes: 45 additions & 0 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,45 @@
name: CI Build
on:
push:
paths-ignore:
- 'docs/**'
- '.github/**/*docs*'
- '.github/**/*codeql*'
- '.github/*.yml'
pull_request:
paths-ignore:
- 'docs/**'
- '.github/**/*docs*'
- '.github/**/*codeql*'
- '.github/*.yml'

env:
LC_ALL: en_US.UTF-8
GRADLE_OPTS: >-
-Dorg.gradle.parallel=true
defaults:
run:
shell: bash

jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Git Checkout
uses: actions/checkout@v3
- name: Set up Java 17
uses: actions/setup-java@v3
with:
distribution: 'temurin'
java-version: 17
cache: maven
- name: Build Maven
run: mvn clean verify
- name: Upload Test Reports
uses: mikepenz/action-junit-report@v3
if: success() || failure()
with:
name: Java 17 -test-reports
report_paths: '**/target/test-reports/*/TEST-*.xml'

21 changes: 21 additions & 0 deletions .github/workflows/license.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
name: license

on:
# Triggers the workflow on push or pull request events but only for the main branch
push:
branches: '*'
pull_request:
branches: '*'

# Allows you to run this workflow manually from the Actions tab
workflow_dispatch:

jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Check License Header
uses: apache/skywalking-eyes@v0.4.0 # always prefer to use a revision instead of `main`.
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} # needed only when you want License-Eye to comment on the pull request.
5 changes: 5 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
.DS_Store
target/
.project
.classpath
.settings/
55 changes: 55 additions & 0 deletions .licenserc.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,55 @@
header:
license:
spdx-id: EPL-2.0
copyright-owner: Eclipse Foundation
content: |
This program and the accompanying materials are made available under the terms of the
Eclipse Public License v2.0 which accompanies this distribution, and is available at
http://www.eclipse.org/legal/epl-v20.html
pattern: |
This program and the accompanying materials are made available under the terms of the
Eclipse Public License v2.0 which accompanies this distribution, and is available at
http://www.eclipse.org/legal/epl-v20.html
paths-ignore:
- 'dist'
- 'licenses'
- '**/package-info.java'
- '**/packageinfo'
- '**/org/freshvanilla/**'
- '**/permissions.perm'
- '**/*.json'
- '**/*.bnd'
- '**/*.bndrun'
- '**/*.xml'
- '**/*.ecore'
- '**/*.genmodel'
- '**/*.md'
- '**/*.MD'
- '**/.classpath'
- '**/.keep'
- 'LICENSE'
- 'NOTICE'
- '.gitattributes'
- '.github/**'
- '.gitignore'
- 'cnf/**'
- 'build/**'
- 'gradle/**'
- 'org.eclipse.osgitech.rest.bnd.project.library/**'
- 'org.eclipse.osgitech.rest.bnd.library/**'
- 'org.eclipse.osgitech.rest.tck/**'
- 'org.eclipse.osgitech.rest.tests/**'
- '.gradle-wrapper/gradle-wrapper.properties'
- '.licenserc.yaml'
- '**/.project'
- '**/.settings/**'
- '**/*.prefs'
- 'build.gradle'
- 'gradle.properties'
- 'gradlew'
- 'gradlew.bat'
- 'settings.gradle'

comment: always
Loading

0 comments on commit 82e5b35

Please sign in to comment.