Skip to content

Commit 8c9d008

Browse files
committed
build: fix the path to testBuild folder
Using `../testBuild` caused the following errors: ``` Error: Error fetching link: /home/runner/work/TweetyProject/TweetyProject/org-tweetyproject-logics-pl/home/runner/work/TweetyProject/TweetyProject/testBuild. Ignored it. Error: Error fetching link: /home/runner/work/TweetyProject/TweetyProject/org-tweetyproject-arg-dung/home/runner/work/TweetyProject/TweetyProject/testBuild. Ignored it. ``` Maven seems not to allow output in the parent folder of the project.
1 parent 975cacb commit 8c9d008

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

pom.xml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -107,7 +107,7 @@
107107
</execution>
108108
</executions>
109109
<configuration>
110-
<outputDirectory>../testBuild</outputDirectory>
110+
<outputDirectory>./testBuild</outputDirectory>
111111
<finalName
112112
>${project.groupId}.${project.artifactId}-${project.version}</finalName>
113113
</configuration>
@@ -125,7 +125,7 @@
125125
</execution>
126126
</executions>
127127
<configuration>
128-
<outputDirectory>../testBuild</outputDirectory>
128+
<outputDirectory>./testBuild</outputDirectory>
129129
<finalName
130130
>${project.groupId}.${project.artifactId}-${project.version}</finalName>
131131
</configuration>
@@ -137,7 +137,7 @@
137137
<configuration>
138138
<finalName
139139
>${project.groupId}.${project.artifactId}-${project.version}</finalName>
140-
<outputDirectory>../testBuild</outputDirectory>
140+
<outputDirectory>./testBuild</outputDirectory>
141141
</configuration>
142142
</plugin>
143143
<!--

0 commit comments

Comments
 (0)