Skip to content

Commit e91f474

Browse files
author
LukasHiveMQ
authored
Merge pull request #13 from hivemq/refactoring/change_build_tool_to_gradle
Refactored message log extension to Gradle.
2 parents 76aa8c5 + fc4d012 commit e91f474

File tree

63 files changed

+3913
-2098
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

63 files changed

+3913
-2098
lines changed

.editorconfig

+1,161
Large diffs are not rendered by default.

.github/workflows/check.yml

+18
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
name: CI Check
2+
3+
on: [ push ]
4+
5+
jobs:
6+
check:
7+
runs-on: ubuntu-latest
8+
steps:
9+
- name: Checkout
10+
uses: actions/checkout@v3
11+
- name: Setup Java
12+
uses: actions/setup-java@v3
13+
with:
14+
distribution: 'temurin'
15+
java-version: '11'
16+
cache: gradle
17+
- name: Check
18+
run: ./gradlew check

.gitignore

+14-24
Original file line numberDiff line numberDiff line change
@@ -1,24 +1,14 @@
1-
# Created
2-
# idea files
3-
/.idea/
4-
5-
#target
6-
.target
7-
8-
9-
# Compiled class file
10-
*.class
11-
12-
# Log file
13-
*.log
14-
15-
# Package Files #
16-
*.jar
17-
*.zip
18-
*.tar.gz
19-
20-
# virtual machine crash logs, see http://www.java.com/en/download/help/error_hotspot.xml
21-
hs_err_pid*
22-
/target/
23-
/dependency-reduced-pom.xml
24-
/hivemq-heartbeat-extension.iml
1+
# Gradle
2+
.gradle
3+
build/
4+
5+
# IntelliJ
6+
out/
7+
*.iml
8+
.idea/*
9+
!.idea/codeStyles
10+
!.idea/inspectionProfiles
11+
!.idea/runConfigurations
12+
13+
.java-version
14+
.DS_Store

.idea/codeStyles/Project.xml

+335
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)