Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .blaze/blaze.conf
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
blaze.dependencies = [
"com.fizzed:blaze-ssh",
"com.fizzed:blaze-jsync",
"com.fizzed:blaze-public-project:4.7.0"
"com.fizzed:blaze-public-project:4.8.0"
]

java.source.version = 8
10 changes: 10 additions & 0 deletions .blaze/blaze.java
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,7 @@

import com.fizzed.blaze.Contexts;
import static com.fizzed.blaze.Contexts.withBaseDir;
import static com.fizzed.blaze.Systems.exec;

import com.fizzed.blaze.Task;
import com.fizzed.blaze.TaskGroup;
Expand All @@ -42,4 +43,13 @@ public void try_all() throws Exception {
Contexts.withBaseDir(".");
}

@Task(group="maintainers")
public void generate_poms() {
exec("java", "-jar", "blaze.jar", "--generate-maven-project", "-f", ".blaze/blaze.java")
.run();

exec("java", "-jar", "blaze.jar", "--generate-maven-project", "-f", "examples/blaze.java")
.run();
}

}
13 changes: 9 additions & 4 deletions .blaze/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@
<dependency>
<groupId>com.fizzed</groupId>
<artifactId>blaze-core</artifactId>
<version>2.10.0</version>
<version>2.11.0</version>
</dependency>
<dependency>
<groupId>org.slf4j</groupId>
Expand All @@ -48,7 +48,7 @@
<dependency>
<groupId>com.fizzed</groupId>
<artifactId>blaze-ivy</artifactId>
<version>2.10.0</version>
<version>2.11.0</version>
</dependency>
<dependency>
<groupId>org.apache.ivy</groupId>
Expand All @@ -58,12 +58,17 @@
<dependency>
<groupId>com.fizzed</groupId>
<artifactId>blaze-ssh</artifactId>
<version>2.10.0</version>
<version>2.11.0</version>
</dependency>
<dependency>
<groupId>com.fizzed</groupId>
<artifactId>blaze-jsync</artifactId>
<version>2.11.0</version>
</dependency>
<dependency>
<groupId>com.fizzed</groupId>
<artifactId>blaze-public-project</artifactId>
<version>4.7.0</version>
<version>4.8.0</version>
</dependency>
</dependencies>
</project>
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -100,6 +100,7 @@ JVM languages.
- [Configuration and dependency management](docs/CONFIG.md)
- [Basic usage](docs/BASIC.md)
- [SSH plugin](docs/SSH.md)
- [JSYNC plugin](docs/JSYNC.md)
- [HTTP plugin](docs/HTTP.md)
- [Archive plugin](docs/ARCHIVE.md)

Expand Down
Loading