Skip to content

Commit

Permalink
fix: absolute paths in classpath.txt break everything (#627)
Browse files Browse the repository at this point in the history
  • Loading branch information
worstell authored Nov 21, 2023
1 parent c36e518 commit aab88e1
Show file tree
Hide file tree
Showing 2 changed files with 20 additions and 0 deletions.
10 changes: 10 additions & 0 deletions examples/kotlin/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -112,6 +112,16 @@
</goals>
<configuration>
<outputFile>${project.build.directory}/classpath.txt</outputFile>
<prefix>dependency</prefix>
</configuration>
</execution>
<execution>
<id>build-classpath-property</id>
<phase>compile</phase>
<goals>
<goal>build-classpath</goal>
</goals>
<configuration>
<outputProperty>generated.classpath</outputProperty>
<prefix>${project.build.directory}/dependency</prefix>
</configuration>
Expand Down
10 changes: 10 additions & 0 deletions kotlin-runtime/scaffolding/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -112,6 +112,16 @@
</goals>
<configuration>
<outputFile>${project.build.directory}/classpath.txt</outputFile>
<prefix>dependency</prefix>
</configuration>
</execution>
<execution>
<id>build-classpath-property</id>
<phase>compile</phase>
<goals>
<goal>build-classpath</goal>
</goals>
<configuration>
<outputProperty>generated.classpath</outputProperty>
<prefix>${project.build.directory}/dependency</prefix>
</configuration>
Expand Down

0 comments on commit aab88e1

Please sign in to comment.