mirror of
https://github.com/Eaglercraft-TeaVM-Fork/eagler-teavm.git
synced 2024-12-22 16:14:10 -08:00
Merge pull request #153 from jtulach/maven-plugin-prefix
Using less cryptic prefix for the teavm-maven-plugin
This commit is contained in:
commit
5e6f175923
|
@ -88,7 +88,7 @@
|
||||||
<version>3.3</version>
|
<version>3.3</version>
|
||||||
<configuration>
|
<configuration>
|
||||||
<skipErrorNoDescriptorsFound>true</skipErrorNoDescriptorsFound>
|
<skipErrorNoDescriptorsFound>true</skipErrorNoDescriptorsFound>
|
||||||
<goalPrefix>mysql-jdbc-compliance</goalPrefix>
|
<goalPrefix>teavm</goalPrefix>
|
||||||
</configuration>
|
</configuration>
|
||||||
<executions>
|
<executions>
|
||||||
<execution>
|
<execution>
|
||||||
|
|
|
@ -93,6 +93,9 @@ public class BuildJavascriptTestMojo extends AbstractJavascriptMojo {
|
||||||
|
|
||||||
setupTool(tool);
|
setupTool(tool);
|
||||||
try {
|
try {
|
||||||
|
if (!testFiles.isDirectory()) {
|
||||||
|
throw new MojoFailureException("Directory with tests doesn't exist: " + testFiles);
|
||||||
|
}
|
||||||
getLog().info("Searching for tests in the directory `" + testFiles.getAbsolutePath() + "'");
|
getLog().info("Searching for tests in the directory `" + testFiles.getAbsolutePath() + "'");
|
||||||
tool.setAdapter(createAdapter(classLoader));
|
tool.setAdapter(createAdapter(classLoader));
|
||||||
findTestClasses(classLoader, testFiles, "");
|
findTestClasses(classLoader, testFiles, "");
|
||||||
|
|
Loading…
Reference in New Issue
Block a user