Remove GitHub specific files
This commit is contained in:
parent
beb0f3e469
commit
78573399e9
1
.github/CODEOWNERS
vendored
1
.github/CODEOWNERS
vendored
@ -1 +0,0 @@
|
|||||||
* @CyB3RC0nN0R
|
|
28
.github/ISSUE_TEMPLATE/bug_report.md
vendored
28
.github/ISSUE_TEMPLATE/bug_report.md
vendored
@ -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.
|
|
17
.github/ISSUE_TEMPLATE/feature_request.md
vendored
17
.github/ISSUE_TEMPLATE/feature_request.md
vendored
@ -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.
|
|
10
.github/bugfix.md
vendored
10
.github/bugfix.md
vendored
@ -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}
|
|
9
.github/feature_integration.md
vendored
9
.github/feature_integration.md
vendored
@ -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
|
|
||||||
---
|
|
10
.github/javadoc_update.md
vendored
10
.github/javadoc_update.md
vendored
@ -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
|
|
||||||
|
|
||||||
---
|
|
35
.github/workflows/maven.yml
vendored
35
.github/workflows/maven.yml
vendored
@ -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
|
|
@ -1,11 +1,5 @@
|
|||||||
# Envoy
|
# Envoy
|
||||||
---
|
---
|
||||||
<a href="https://github.com/informatik-ag-ngl/envoy"><img src="https://raw.githubusercontent.com/informatik-ag-ngl/envoy/develop/client/src/main/resources/icons/envoy_logo.png" align="right" width="150" height="150"></a>
|
|
||||||
<a href="https://github.com/informatik-ag-ngl/envoy/milestone/1"><img alt="GitHub milestone" src="https://img.shields.io/github/milestones/progress-percent/informatik-ag-ngl/envoy/1"></a>
|
|
||||||
<a href="https://github.com/informatik-ag-ngl/envoy/pulls"><img alt="GitHub pull requests" src="https://img.shields.io/github/issues-pr-raw/informatik-ag-ngl/envoy?style=flat"></a>
|
|
||||||
<a href="https://github.com/informatik-ag-ngl/envoy/issues"><img alt="GitHub issues" src="https://img.shields.io/github/issues/informatik-ag-ngl/envoy?style=flat"></a>
|
|
||||||
<a href="https://github.com/informatik-ag-ngl/envoy/actions"><img src="https://github.com/informatik-ag-ngl/envoy/workflows/Java%20CI/badge.svg"></a>
|
|
||||||
|
|
||||||
**Envoy** is a messenger written in Java.<br>
|
**Envoy** is a messenger written in Java.<br>
|
||||||
It is split into three separate components: Envoy Client, Envoy Common and Envoy Server.
|
It is split into three separate components: Envoy Client, Envoy Common and Envoy Server.
|
||||||
<br><br><br><br><br>
|
<br><br><br><br><br>
|
||||||
|
Reference in New Issue
Block a user