Skip to content

Commit

Permalink
farea 0.9.0
Browse files Browse the repository at this point in the history
  • Loading branch information
yegor256 committed Nov 12, 2024
1 parent 7209969 commit b4ed855
Show file tree
Hide file tree
Showing 4 changed files with 2 additions and 14 deletions.
2 changes: 1 addition & 1 deletion eo-maven-plugin/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -179,7 +179,7 @@ SOFTWARE.
<groupId>com.yegor256</groupId>
<artifactId>farea</artifactId>
<!-- We need to have the "version" here explicitly, otherwise tests won't work: -->
<version>0.8.0</version>
<version>0.9.0</version>
</dependency>
<dependency>
<groupId>org.yaml</groupId>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,6 @@

import com.yegor256.WeAreOnline;
import com.yegor256.farea.Farea;
import com.yegor256.farea.RequisiteMatcher;
import java.io.File;
import java.io.IOException;
import java.nio.file.Files;
Expand Down Expand Up @@ -72,11 +71,6 @@ void parsesSimpleFile(@TempDir final Path temp) throws Exception {
.execution()
.goals("register", "parse");
f.exec("compile", String.format("-Deo.cache=%s", temp.resolve("cache")));
MatcherAssert.assertThat(
"build has no problems",
f.log(),
RequisiteMatcher.SUCCESS
);
MatcherAssert.assertThat(
"the XMIR file is generated",
f.files().file("target/eo/1-parse/foo.xmir").exists(),
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,6 @@
package org.eolang.maven;

import com.yegor256.farea.Farea;
import com.yegor256.farea.RequisiteMatcher;
import java.io.IOException;
import java.nio.file.Path;
import java.nio.file.Paths;
Expand Down Expand Up @@ -67,11 +66,6 @@ void convertsSimpleObjectToPhi(@TempDir final Path temp) throws Exception {
.execution()
.goals("register", "parse", "optimize", "xmir-to-phi");
f.exec("compile");
MatcherAssert.assertThat(
"build has no problems",
f.log(),
RequisiteMatcher.SUCCESS
);
MatcherAssert.assertThat(
"the .phi file is generated",
f.files().file("target/eo/phi/foo.phi").exists(),
Expand Down
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -254,7 +254,7 @@ SOFTWARE.
<dependency>
<groupId>com.yegor256</groupId>
<artifactId>farea</artifactId>
<version>0.8.0</version>
<version>0.9.0</version>
<scope>test</scope>
</dependency>
</dependencies>
Expand Down

0 comments on commit b4ed855

Please sign in to comment.