Skip to content

Commit

Permalink
fix(#44): fused-xmir outpur directory
Browse files Browse the repository at this point in the history
  • Loading branch information
maxonfjvipon committed Jan 19, 2024
1 parent 02aebc0 commit 0b5e7c5
Show file tree
Hide file tree
Showing 5 changed files with 3 additions and 9 deletions.
3 changes: 0 additions & 3 deletions src/it/benchmark-example/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -74,9 +74,6 @@ SOFTWARE.
</goals>
</execution>
</executions>
<configuration>
<ineo.outputDir>${project.basedir}/target/generated-output-sources/xmir</ineo.outputDir>
</configuration>
</plugin>
</plugins>
</build>
Expand Down
2 changes: 1 addition & 1 deletion src/it/benchmark-example/verify.groovy
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@

import groovy.xml.XmlSlurper

file = new File(basedir, 'target/generated-output-sources/xmir/com/exam/BA.xmir')
file = new File(basedir, 'target/generated-sources/fused-xmir/com/exam/BA.xmir')
assert file.exists()

true
3 changes: 0 additions & 3 deletions src/it/toy-example/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -72,9 +72,6 @@ SOFTWARE.
<goals>
<goal>fuse</goal>
</goals>
<configuration>
<outputDir>${project.basedir}/target/generated-output-sources/xmir</outputDir>
</configuration>
</execution>
</executions>
</plugin>
Expand Down
2 changes: 1 addition & 1 deletion src/it/toy-example/verify.groovy
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@

import groovy.xml.XmlSlurper

file = new File(basedir, 'target/generated-output-sources/xmir/com/exam/BA.xmir')
file = new File(basedir, 'target/generated-sources/fused-xmir/com/exam/BA.xmir')
assert file.exists()

true
2 changes: 1 addition & 1 deletion src/main/java/org/eolang/ineo/FuseMojo.java
Original file line number Diff line number Diff line change
Expand Up @@ -86,7 +86,7 @@ public final class FuseMojo extends AbstractMojo {
@Parameter(
property = "ineo.outputDir",
required = true,
defaultValue = "${project.build.directory}/generated-output-sources/xmir"
defaultValue = "${project.build.directory}/generated-sources/fused-xmir"
)
private File outputDir;

Expand Down

0 comments on commit 0b5e7c5

Please sign in to comment.