Skip to content

Commit

Permalink
fix test
Browse files Browse the repository at this point in the history
  • Loading branch information
saberduck committed May 22, 2024
1 parent b476b25 commit 576db46
Showing 1 changed file with 26 additions and 0 deletions.
26 changes: 26 additions & 0 deletions sonar-plugin/bridge/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -71,4 +71,30 @@
</dependency>
</dependencies>

<build>
<plugins>
<!-- copy runtimes so they are accessible by unit tests -->
<plugin>
<artifactId>maven-resources-plugin</artifactId>
<executions>
<execution>
<id>copy-resources</id>
<phase>generate-test-resources</phase>
<goals>
<goal>copy-resources</goal>
</goals>
<configuration>
<outputDirectory>${basedir}/target/test-classes</outputDirectory>
<resources>
<resource>
<directory>${project.build.directory}/node</directory>
</resource>
</resources>
</configuration>
</execution>
</executions>
</plugin>
</plugins>
</build>

</project>

0 comments on commit 576db46

Please sign in to comment.