Skip to content

Commit 21852b5

Browse files
committed
Update github workflows; use blaze public project
1 parent 692d2c5 commit 21852b5

File tree

7 files changed

+108
-3
lines changed

7 files changed

+108
-3
lines changed

.blaze/blaze.conf

+6
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
blaze.dependencies = [
2+
"com.fizzed:blaze-ssh"
3+
"com.fizzed:blaze-public-project:1.0.0"
4+
]
5+
6+
java.source.version = 8

.blaze/blaze.java

+7
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
import com.fizzed.blaze.project.PublicBlaze;
2+
3+
public class blaze extends PublicBlaze {
4+
5+
// all public of PublicBlaze included
6+
7+
}

.blaze/pom.xml

+74
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,74 @@
1+
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
2+
<modelVersion>4.0.0</modelVersion>
3+
<groupId>blaze</groupId>
4+
<artifactId>executors-blaze</artifactId>
5+
<version>0.0.1</version>
6+
7+
<!--
8+
THIS FILE IS AUTOMATICALLY GENERATED. DO NOT EDIT BY HAND!
9+
10+
Edit or create a <blaze-script>.conf file, and re-run the generate-maven-project command.
11+
-->
12+
13+
<properties>
14+
<maven.compiler.source>8</maven.compiler.source>
15+
<maven.compiler.target>8</maven.compiler.target>
16+
<maven.install.skip>true</maven.install.skip>
17+
<maven.deploy.skip>true</maven.deploy.skip>
18+
</properties>
19+
<build>
20+
<sourceDirectory>${project.basedir}</sourceDirectory>
21+
</build>
22+
<dependencies>
23+
<dependency>
24+
<groupId>com.fizzed</groupId>
25+
<artifactId>blaze-ivy</artifactId>
26+
<version>1.9.0</version>
27+
</dependency>
28+
<dependency>
29+
<groupId>org.apache.ivy</groupId>
30+
<artifactId>ivy</artifactId>
31+
<version>2.5.2</version>
32+
</dependency>
33+
<dependency>
34+
<groupId>commons-io</groupId>
35+
<artifactId>commons-io</artifactId>
36+
<version>2.16.1</version>
37+
</dependency>
38+
<dependency>
39+
<groupId>com.typesafe</groupId>
40+
<artifactId>config</artifactId>
41+
<version>1.4.3</version>
42+
</dependency>
43+
<dependency>
44+
<groupId>com.fizzed</groupId>
45+
<artifactId>blaze-core</artifactId>
46+
<version>1.9.0</version>
47+
</dependency>
48+
<dependency>
49+
<groupId>org.slf4j</groupId>
50+
<artifactId>slf4j-simple</artifactId>
51+
<version>2.0.13</version>
52+
</dependency>
53+
<dependency>
54+
<groupId>org.slf4j</groupId>
55+
<artifactId>slf4j-api</artifactId>
56+
<version>2.0.13</version>
57+
</dependency>
58+
<dependency>
59+
<groupId>org.zeroturnaround</groupId>
60+
<artifactId>zt-exec</artifactId>
61+
<version>1.12</version>
62+
</dependency>
63+
<dependency>
64+
<groupId>com.fizzed</groupId>
65+
<artifactId>blaze-ssh</artifactId>
66+
<version>1.9.0</version>
67+
</dependency>
68+
<dependency>
69+
<groupId>com.fizzed</groupId>
70+
<artifactId>blaze-public-project</artifactId>
71+
<version>1.0.0</version>
72+
</dependency>
73+
</dependencies>
74+
</project>

.github/workflows/java21.yaml

+17
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
name: Java 21
2+
on:
3+
- push
4+
- workflow_dispatch
5+
jobs:
6+
build:
7+
runs-on: ubuntu-latest
8+
steps:
9+
- uses: actions/checkout@v3
10+
- name: Set up Azul JDK 21
11+
uses: actions/setup-java@v3
12+
with:
13+
java-version: 21
14+
distribution: 'zulu'
15+
cache: 'maven'
16+
- name: Test in Maven
17+
run: mvn --no-transfer-progress -B test

.github/workflows/macos-x64.yaml .github/workflows/macos-arm64.yaml

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
1-
name: MacOS x64
1+
name: MacOS arm64
22
on:
33
- push
44
- workflow_dispatch
55
jobs:
66
build:
7-
runs-on: macos-11
7+
runs-on: macos-latest
88
steps:
99
- uses: actions/checkout@v3
1010
- name: Set up Azul JDK 11

README.md

+2-1
Original file line numberDiff line numberDiff line change
@@ -5,9 +5,10 @@
55
[![Java 8](https://img.shields.io/github/actions/workflow/status/fizzed/executors/java8.yaml?branch=master&label=Java%208&style=flat-square)](https://github.com/fizzed/executors/actions/workflows/java8.yaml)
66
[![Java 11](https://img.shields.io/github/actions/workflow/status/fizzed/executors/java11.yaml?branch=master&label=Java%2011&style=flat-square)](https://github.com/fizzed/executors/actions/workflows/java11.yaml)
77
[![Java 17](https://img.shields.io/github/actions/workflow/status/fizzed/executors/java17.yaml?branch=master&label=Java%2017&style=flat-square)](https://github.com/fizzed/executors/actions/workflows/java17.yaml)
8+
[![Java 21](https://img.shields.io/github/actions/workflow/status/fizzed/executors/java21.yaml?branch=master&label=Java%2021&style=flat-square)](https://github.com/fizzed/executors/actions/workflows/java21.yaml)
89

910
[![Linux x64](https://img.shields.io/github/actions/workflow/status/fizzed/executors/java11.yaml?branch=master&label=Linux%20x64&style=flat-square)](https://github.com/fizzed/executors/actions/workflows/java11.yaml)
10-
[![MacOS x64](https://img.shields.io/github/actions/workflow/status/fizzed/executors/macos-x64.yaml?branch=master&label=MacOS%20x64&style=flat-square)](https://github.com/fizzed/executors/actions/workflows/macos-x64.yaml)
11+
[![MacOS arm64](https://img.shields.io/github/actions/workflow/status/fizzed/executors/macos-arm64.yaml?branch=master&label=MacOS%20arm64&style=flat-square)](https://github.com/fizzed/executors/actions/workflows/macos-arm64.yaml)
1112
[![Windows x64](https://img.shields.io/github/actions/workflow/status/fizzed/executors/windows-x64.yaml?branch=master&label=Windows%20x64&style=flat-square)](https://github.com/fizzed/executors/actions/workflows/windows-x64.yaml)
1213

1314
[Fizzed, Inc.](http://fizzed.com) (Follow on Twitter: [@fizzed_inc](http://twitter.com/fizzed_inc))

blaze.jar

2.21 MB
Binary file not shown.

0 commit comments

Comments
 (0)