Skip to content

Commit

Permalink
Enhance blaze build scripts
Browse files Browse the repository at this point in the history
  • Loading branch information
jjlauer committed Oct 27, 2023
1 parent efea3de commit 168c09a
Show file tree
Hide file tree
Showing 4 changed files with 19 additions and 19 deletions.
3 changes: 1 addition & 2 deletions .blaze/blaze.conf
Original file line number Diff line number Diff line change
Expand Up @@ -4,5 +4,4 @@ blaze.dependencies = [
"com.fizzed:jne:release"
]

maven.project.source.version = 11
maven.project.target.version = 11
java.source.version=8
3 changes: 2 additions & 1 deletion .blaze/blaze.java
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,7 @@
import static java.util.stream.Collectors.toList;

public class blaze {

final private Logger log = Contexts.logger();

private final Path projectDir = withBaseDir("..").toAbsolutePath();
Expand Down Expand Up @@ -261,7 +262,7 @@ public void cross_tests() throws Exception {
}

@Task(order=54)
public void cross_markdown() throws Exception {
public void readme_markdown() throws Exception {

System.out.println();

Expand Down
32 changes: 16 additions & 16 deletions .blaze/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -11,15 +11,20 @@
-->

<properties>
<maven.compiler.source>11</maven.compiler.source>
<maven.compiler.target>11</maven.compiler.target>
<maven.compiler.source>17</maven.compiler.source>
<maven.compiler.target>17</maven.compiler.target>
<maven.install.skip>true</maven.install.skip>
<maven.deploy.skip>true</maven.deploy.skip>
</properties>
<build>
<sourceDirectory>${project.basedir}</sourceDirectory>
</build>
<dependencies>
<dependency>
<groupId>com.fizzed</groupId>
<artifactId>blaze-core</artifactId>
<version>1.3.1-SNAPSHOT</version>
</dependency>
<dependency>
<groupId>commons-io</groupId>
<artifactId>commons-io</artifactId>
Expand All @@ -35,35 +40,30 @@
<artifactId>config</artifactId>
<version>1.3.0</version>
</dependency>
<dependency>
<groupId>com.fizzed</groupId>
<artifactId>blaze-ivy</artifactId>
<version>1.3.1-SNAPSHOT</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-core</artifactId>
<version>1.2.1</version>
<groupId>org.zeroturnaround</groupId>
<artifactId>zt-exec</artifactId>
<version>1.12</version>
</dependency>
<dependency>
<groupId>com.fizzed</groupId>
<artifactId>blaze-ssh</artifactId>
<version>1.2.1</version>
<version>1.3.1-SNAPSHOT</version>
</dependency>
<dependency>
<groupId>com.fizzed</groupId>
Expand Down
Binary file modified blaze.jar
Binary file not shown.

0 comments on commit 168c09a

Please sign in to comment.