You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
To better support the case where multiple Maven projects or modules want to make use of the japicmp-maven-plugin, it would come in handy if the plugin could load the post-processing script from the plugin classpath and not only from the file system.
E.g.
<plugin>
<groupId>com.github.siom79.japicmp</groupId>
<artifactId>japicmp-maven-plugin</artifactId>
<configuration>
...
<parameter>
<!-- The post-analysis script is contained in "that-artifact-that-contains-my-post-analysis-script" -->
<postAnalysisScript>japicmp/post-analysis-script.groovy</postAnalysisScript>
</parameter>
...
</configuration>
<dependencies>
<dependency>
<groupId>my.group</groupId>
<artifactId>that-artifact-that-contains-my-post-analysis-script<artifactId>
</dependency>
</dependencies>
</plugin>
The text was updated successfully, but these errors were encountered:
To better support the case where multiple Maven projects or modules want to make use of the japicmp-maven-plugin, it would come in handy if the plugin could load the post-processing script from the plugin classpath and not only from the file system.
E.g.
The text was updated successfully, but these errors were encountered: