Skip to content

Commit

Permalink
Merge pull request #13 from hivemq/refactoring/change_build_tool_to_g…
Browse files Browse the repository at this point in the history
…radle

Refactored message log extension to Gradle.
  • Loading branch information
LukasHiveMQ authored Oct 20, 2022
2 parents 76aa8c5 + fc4d012 commit e91f474
Show file tree
Hide file tree
Showing 63 changed files with 3,913 additions and 2,098 deletions.
1,161 changes: 1,161 additions & 0 deletions .editorconfig

Large diffs are not rendered by default.

18 changes: 18 additions & 0 deletions .github/workflows/check.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
name: CI Check

on: [ push ]

jobs:
check:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Setup Java
uses: actions/setup-java@v3
with:
distribution: 'temurin'
java-version: '11'
cache: gradle
- name: Check
run: ./gradlew check
38 changes: 14 additions & 24 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,24 +1,14 @@
# Created
# idea files
/.idea/

#target
.target


# Compiled class file
*.class

# Log file
*.log

# Package Files #
*.jar
*.zip
*.tar.gz

# virtual machine crash logs, see http://www.java.com/en/download/help/error_hotspot.xml
hs_err_pid*
/target/
/dependency-reduced-pom.xml
/hivemq-heartbeat-extension.iml
# Gradle
.gradle
build/

# IntelliJ
out/
*.iml
.idea/*
!.idea/codeStyles
!.idea/inspectionProfiles
!.idea/runConfigurations

.java-version
.DS_Store
335 changes: 335 additions & 0 deletions .idea/codeStyles/Project.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading

0 comments on commit e91f474

Please sign in to comment.