Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
  • Loading branch information
jonherrmann committed May 24, 2022
1 parent 349b18e commit 7613de3
Show file tree
Hide file tree
Showing 342 changed files with 164,435 additions and 3,549 deletions.
25 changes: 25 additions & 0 deletions .editorconfig
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
# end_of_line is handled by git

root = true

[*.{js,java,groovy}]
charset = utf-8
indent_style = space
indent_size = 4
trim_trailing_whitespace = true
insert_final_newline = true
max_line_length = 120

[*.{md,txt}]
indent_style = space
indent_size = 4
trim_trailing_whitespace = false
max_line_length = 120

[*.scala]
charset = utf-8
indent_style = space
indent_size = 4
trim_trailing_whitespace = true
insert_final_newline = true
max_line_length = 120
18 changes: 18 additions & 0 deletions .gitattributes
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
* text eol=lf

*.jar binary
*.png binary
*.jpg binary
*.jpeg binary
*.gif binary
*.ico binary
*.mov binary
*.mp4 binary
*.mp3 binary
*.flv binary
*.fla binary
*.swf binary
*.gz binary
*.zip binary
*.7z binary
*.ttf binary
19 changes: 19 additions & 0 deletions .github/workflows/gradle.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
name: Java CI

on: [push]

jobs:
build:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v3
- name: Set up JDK 11
uses: actions/setup-java@v3
with:
java-version: '11'
distribution: 'temurin'
- name: Setup Gradle
uses: gradle/gradle-build-action@v2
- name: Execute Gradle build
run: ./gradlew jar
60 changes: 57 additions & 3 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,6 +1,60 @@
*.class
.DS_Store
.gradle
.idea
build
etf-bsxtd.iml
hs_err_pid*
*.log
build/
bin/
out/
outputFileStates.bin
*.licensed
/build-dependencies.txt
local.properties
.env
.venv
.allure/
coverage.xml
!gradle/wrapper/gradle-wrapper.jar

### IntelliJ IDEA ###
.idea
*.iws
*.iml
*.ipr

### VS Code ###
.vscode/

### Eclipse ###
.target
.texlipse
.cache-main
.scala_dependencies
.worksheet
*.launch
.project
.settings

### STS ###
.apt_generated
.classpath
.factorypath
.springBeans
.sts4-cache

### NetBeans ###
/nbproject/private/
/nbbuild/
/dist/
/nbdist/
/.nb-gradle/

### Scala ###
target/
boot/
lib_managed/
src_managed/
project/boot/
project/plugins/project/
.metals
.scala_dependencies
Loading

0 comments on commit 7613de3

Please sign in to comment.