Change back default serverDirectory to baseDir/server

This commit is contained in:
2026-05-24 22:47:32 +02:00
parent 8e08154d21
commit 41647b158e
4 changed files with 7 additions and 7 deletions
+1 -1
View File
@@ -7,7 +7,7 @@
<groupId>org.strassburger</groupId> <groupId>org.strassburger</groupId>
<artifactId>mcrun-maven-plugin</artifactId> <artifactId>mcrun-maven-plugin</artifactId>
<version>0.0.16</version> <version>0.0.18</version>
<packaging>maven-plugin</packaging> <packaging>maven-plugin</packaging>
<name>MCRun Maven Plugin</name> <name>MCRun Maven Plugin</name>
@@ -24,9 +24,9 @@ public class InstallServerMojo extends AbstractMojo {
/** /**
* Directory where the test server will be created and run. * Directory where the test server will be created and run.
* The server jar, plugins folder, and all generated files (eula.txt, world, logs, etc.) * The server jar, plugins folder, and all generated files (eula.txt, world, logs, etc.)
* will be placed here. Defaults to <code>${project.build.directory}/server</code>. * will be placed here. Defaults to <code>${project.basedir}/server</code>.
*/ */
@Parameter(defaultValue = "${project.build.directory}/server") @Parameter(defaultValue = "${project.basedir}/server")
private File serverDirectory; private File serverDirectory;
/** /**
@@ -77,9 +77,9 @@ public class RunServerMojo extends AbstractMojo {
/** /**
* Directory where the test server will be created and run. * Directory where the test server will be created and run.
* The server jar, plugins folder, and all generated files (eula.txt, world, logs, etc.) * The server jar, plugins folder, and all generated files (eula.txt, world, logs, etc.)
* will be placed here. Defaults to <code>${project.build.directory}/server</code>. * will be placed here. Defaults to <code>${project.basedir}/server</code>.
*/ */
@Parameter(defaultValue = "${project.build.directory}/server") @Parameter(defaultValue = "${project.basedir}/server")
private File serverDirectory; private File serverDirectory;
/** /**
@@ -30,9 +30,9 @@ public class StartServerMojo extends AbstractMojo {
/** /**
* Directory where the test server will be created and run. * Directory where the test server will be created and run.
* The server jar, plugins folder, and all generated files (eula.txt, world, logs, etc.) * The server jar, plugins folder, and all generated files (eula.txt, world, logs, etc.)
* will be placed here. Defaults to <code>${project.build.directory}/server</code>. * will be placed here. Defaults to <code>${project.basedir}/server</code>.
*/ */
@Parameter(defaultValue = "${project.build.directory}/server") @Parameter(defaultValue = "${project.basedir}/server")
private File serverDirectory; private File serverDirectory;
/** /**