Skip to content

Commit

Permalink
Update blaze scripts
Browse files Browse the repository at this point in the history
  • Loading branch information
jjlauer committed Oct 26, 2023
1 parent 49c7177 commit efea3de
Show file tree
Hide file tree
Showing 4 changed files with 60 additions and 21 deletions.
11 changes: 7 additions & 4 deletions .blaze/blaze.conf
Original file line number Diff line number Diff line change
@@ -1,5 +1,8 @@
blaze.dependencies = [
"com.fizzed:blaze-ssh:1.1.0"
"com.fizzed:buildx:1.0.3"
"com.fizzed:jne:4.0.2"
]
"com.fizzed:blaze-ssh"
"com.fizzed:buildx:release"
"com.fizzed:jne:release"
]

maven.project.source.version = 11
maven.project.target.version = 11
1 change: 1 addition & 0 deletions .blaze/blaze.java
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
import com.fizzed.blaze.Contexts;
import com.fizzed.blaze.Task;
import com.fizzed.blaze.core.Blaze;
import com.fizzed.blaze.util.Globber;
import com.fizzed.buildx.Buildx;
import com.fizzed.buildx.ContainerBuilder;
Expand Down
69 changes: 52 additions & 17 deletions .blaze/pom.xml
Original file line number Diff line number Diff line change
@@ -1,44 +1,79 @@
<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">

<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">
<modelVersion>4.0.0</modelVersion>
<groupId>blaze</groupId>
<artifactId>shmemj-blaze</artifactId>
<name>shmemj-blaze</name>
<version>0.0.1</version>

<!--
THIS FILE IS AUTOMATICALLY GENERATED. DO NOT EDIT BY HAND!
Edit or create a <blaze-script>.conf file, and re-run the generate-maven-project command.
-->

<properties>
<maven.compiler.target>1.8</maven.compiler.target>
<maven.compiler.source>1.8</maven.compiler.source>
<maven.compiler.source>11</maven.compiler.source>
<maven.compiler.target>11</maven.compiler.target>
<maven.install.skip>true</maven.install.skip>
<maven.deploy.skip>true</maven.deploy.skip>
</properties>

<build>
<sourceDirectory>${project.basedir}</sourceDirectory>
<sourceDirectory>${project.basedir}</sourceDirectory>
</build>

<dependencies>
<dependency>
<groupId>commons-io</groupId>
<artifactId>commons-io</artifactId>
<version>2.11.0</version>
</dependency>
<dependency>
<groupId>org.slf4j</groupId>
<artifactId>slf4j-api</artifactId>
<version>2.0.7</version>
</dependency>
<dependency>
<groupId>com.typesafe</groupId>
<artifactId>config</artifactId>
<version>1.3.0</version>
</dependency>
<dependency>
<groupId>org.apache.ivy</groupId>
<artifactId>ivy</artifactId>
<version>2.5.2</version>
</dependency>
<dependency>
<groupId>org.zeroturnaround</groupId>
<artifactId>zt-exec</artifactId>
<version>1.11</version>
</dependency>
<dependency>
<groupId>com.fizzed</groupId>
<artifactId>blaze-ivy</artifactId>
<version>1.2.1</version>
</dependency>
<dependency>
<groupId>org.slf4j</groupId>
<artifactId>slf4j-simple</artifactId>
<version>2.0.7</version>
</dependency>
<dependency>
<groupId>com.fizzed</groupId>
<artifactId>blaze-lite</artifactId>
<version>1.1.0</version>
<artifactId>blaze-core</artifactId>
<version>1.2.1</version>
</dependency>
<dependency>
<groupId>com.fizzed</groupId>
<artifactId>blaze-ssh</artifactId>
<version>1.1.0</version>
<version>1.2.1</version>
</dependency>
<dependency>
<groupId>com.fizzed</groupId>
<artifactId>buildx</artifactId>
<version>1.0.3</version>
<version>RELEASE</version>
</dependency>
<dependency>
<groupId>com.fizzed</groupId>
<artifactId>jne</artifactId>
<version>4.0.2</version>
<version>RELEASE</version>
</dependency>
</dependencies>

</project>
Binary file modified blaze.jar
Binary file not shown.

0 comments on commit efea3de

Please sign in to comment.