From 78573399e9167d54d8c584902d1a252ad7bc04a6 Mon Sep 17 00:00:00 2001 From: kske Date: Sun, 6 Sep 2020 11:12:03 +0200 Subject: [PATCH] Remove GitHub specific files --- .github/CODEOWNERS | 1 - .github/ISSUE_TEMPLATE/bug_report.md | 28 ------------------ .github/ISSUE_TEMPLATE/feature_request.md | 17 ----------- .github/bugfix.md | 10 ------- .github/feature_integration.md | 9 ------ .github/javadoc_update.md | 10 ------- .github/workflows/maven.yml | 35 ----------------------- README.md | 6 ---- 8 files changed, 116 deletions(-) delete mode 100644 .github/CODEOWNERS delete mode 100644 .github/ISSUE_TEMPLATE/bug_report.md delete mode 100644 .github/ISSUE_TEMPLATE/feature_request.md delete mode 100644 .github/bugfix.md delete mode 100644 .github/feature_integration.md delete mode 100644 .github/javadoc_update.md delete mode 100644 .github/workflows/maven.yml diff --git a/.github/CODEOWNERS b/.github/CODEOWNERS deleted file mode 100644 index 8ff7fe0..0000000 --- a/.github/CODEOWNERS +++ /dev/null @@ -1 +0,0 @@ -* @CyB3RC0nN0R diff --git a/.github/ISSUE_TEMPLATE/bug_report.md b/.github/ISSUE_TEMPLATE/bug_report.md deleted file mode 100644 index c90c9c9..0000000 --- a/.github/ISSUE_TEMPLATE/bug_report.md +++ /dev/null @@ -1,28 +0,0 @@ ---- -name: Bug report -about: Create a report to help us improve -labels: bug ---- - -**Describe the bug** -A clear and concise description of what the bug is. - -**To Reproduce** -Steps to reproduce the behavior: -1. Go to '...' -2. Click on '....' -3. Scroll down to '....' -4. See error - -**Expected behavior** -A clear and concise description of what you expected to happen. - -**Screenshots** -If applicable, add screenshots to help explain your problem. - -**Desktop (please complete the following information):** - - OS: [e.g. Debian GNU/Linux, Microsoft Windows 10] - - Version [e.g. 0.1-beta] - -**Additional context** -Add any other context about the problem here. diff --git a/.github/ISSUE_TEMPLATE/feature_request.md b/.github/ISSUE_TEMPLATE/feature_request.md deleted file mode 100644 index 2356405..0000000 --- a/.github/ISSUE_TEMPLATE/feature_request.md +++ /dev/null @@ -1,17 +0,0 @@ ---- -name: Feature request -about: Suggest an idea for this project -labels: enhancement ---- - -**Is your feature request related to a problem? Please describe.** -A clear and concise description of what the problem is. Ex. I'm always frustrated when [...] - -**Describe the solution you'd like** -A clear and concise description of what you want to happen. - -**Describe alternatives you've considered** -A clear and concise description of any alternative solutions or features you've considered. - -**Additional context** -Add any other context or screenshots about the feature request here. diff --git a/.github/bugfix.md b/.github/bugfix.md deleted file mode 100644 index 1ebcde4..0000000 --- a/.github/bugfix.md +++ /dev/null @@ -1,10 +0,0 @@ ---- -name: Bug fix -title: Fixed Bug -labels: bug -assignees: CyB3RC0nN0R, delvh, DieGurke -reviewers: CyB3RC0nN0R, delvh -projects: Envoy -milestone: Envoy v0.1-beta ---- -Fixes #{issue} diff --git a/.github/feature_integration.md b/.github/feature_integration.md deleted file mode 100644 index 367ee38..0000000 --- a/.github/feature_integration.md +++ /dev/null @@ -1,9 +0,0 @@ ---- -name: Feature integration -title: Added feature -labels: feature -assignees: CyB3RC0nN0R, delvh, DieGurke -reviewers: CyB3RC0nN0R, delvh -projects: Envoy -milestone: Envoy v0.1-beta ---- diff --git a/.github/javadoc_update.md b/.github/javadoc_update.md deleted file mode 100644 index 68b0afd..0000000 --- a/.github/javadoc_update.md +++ /dev/null @@ -1,10 +0,0 @@ ---- -name: Updated Javadoc -title: Updated Javadoc -labels: documentation -assignees: CyB3RC0nN0R, delvh -reviewers: CyB3RC0nN0R, delvh -projects: Envoy -milestone: Envoy v0.1-beta - ---- diff --git a/.github/workflows/maven.yml b/.github/workflows/maven.yml deleted file mode 100644 index 17fc4b4..0000000 --- a/.github/workflows/maven.yml +++ /dev/null @@ -1,35 +0,0 @@ -name: Java CI - -on: [push] - -jobs: - build: - name: Build & Package - runs-on: ${{ matrix.os }} - strategy: - matrix: - os: [ubuntu-latest, windows-latest] - - steps: - - uses: actions/checkout@v2 - - name: Set up JDK 11 - uses: actions/setup-java@v1 - with: - java-version: 11 - - name: Cache Maven packages - uses: actions/cache@v2 - with: - path: ~/.m2 - key: ${{ runner.os }}-m2-${{ hashFiles('**/pom.xml') }} - restore-keys: ${{ runner.os }}-m2 - - name: Build with Maven - run: mvn -B package - - name: Stage build artifacts - run: | - mkdir staging - cp server/target/envoy-server-jar-with-dependencies.jar staging/envoy-server.jar - cp client/target/envoy-client*shaded.jar staging/envoy.jar - - uses: actions/upload-artifact@v2 - with: - name: envoy-${{ matrix.os }} - path: staging diff --git a/README.md b/README.md index 7a7cfca..f1bf5aa 100644 --- a/README.md +++ b/README.md @@ -1,11 +1,5 @@ # Envoy --- - -GitHub milestone -GitHub pull requests -GitHub issues - - **Envoy** is a messenger written in Java.
It is split into three separate components: Envoy Client, Envoy Common and Envoy Server.