Author SHA1 Message Date
dmg 6e0bacd236 build: configure maven compiler
Build / build (push) Successful in 10m12s
2026-01-29 23:37:41 -05:00
dmg 33929c4122 ci: support maven install without sudo
Build / build (push) Failing after 10m58s
2026-01-29 22:10:58 -05:00
dmg 19cec547f7 ci: install maven for build
Build / build (push) Failing after 4m44s
2026-01-29 21:56:27 -05:00
automation cb9b3b881f chore(release): 1.0.0 [skip ci]
# 1.0.0 (2026-01-30)

### Features

* add NATS chat sync plugin ([bdd9b4b](bdd9b4bb8b))
2026-01-30 02:35:49 +00:00
dmg 933375423a chore: add commitlint config
Build / build (push) Failing after 1m56s
2026-01-29 21:34:40 -05:00
4 changed files with 25 additions and 0 deletions
+13
View File
@@ -19,6 +19,19 @@ jobs:
with:
distribution: temurin
java-version: 21
cache: maven
- name: Install Maven
run: |
if ! command -v mvn >/dev/null 2>&1; then
if command -v sudo >/dev/null 2>&1; then
sudo apt-get update
sudo apt-get install -y maven
else
apt-get update
apt-get install -y maven
fi
fi
- name: Set up Node
uses: actions/setup-node@v4
+3
View File
@@ -0,0 +1,3 @@
module.exports = {
extends: ["@commitlint/config-conventional"],
};
+8
View File
@@ -42,6 +42,14 @@
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<version>3.11.0</version>
<configuration>
<release>${maven.compiler.release}</release>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-shade-plugin</artifactId>
+1
View File
@@ -0,0 +1 @@
undefined