Version 1.0.1
This commit is contained in:
parent
6e8d3c2cd6
commit
051f744831
2 changed files with 2 additions and 2 deletions
|
@ -35,7 +35,7 @@ public class ExecOperationBuild extends Project {
|
||||||
public ExecOperationBuild() {
|
public ExecOperationBuild() {
|
||||||
pkg = "rife.bld.extension";
|
pkg = "rife.bld.extension";
|
||||||
name = "ExecOperation";
|
name = "ExecOperation";
|
||||||
version = version(1, 0, 1, "SNAPSHOT");
|
version = version(1, 0, 1);
|
||||||
|
|
||||||
javaRelease = 17;
|
javaRelease = 17;
|
||||||
|
|
||||||
|
|
|
@ -35,7 +35,7 @@ class ExecOperationTest {
|
||||||
void testCommand() {
|
void testCommand() {
|
||||||
var op = new ExecOperation().fromProject(new WebProject())
|
var op = new ExecOperation().fromProject(new WebProject())
|
||||||
.command(FOO, "bar");
|
.command(FOO, "bar");
|
||||||
assertThat(op.command()).isEqualTo(List.of(FOO, "bar"));
|
assertThat(op.command()).containsExactly(FOO, "bar");
|
||||||
}
|
}
|
||||||
|
|
||||||
@Test
|
@Test
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue