1

我需要挂钩或附加批处理文件到 Maven

所以如果让我说我输入 mvn package

并且没有错误,然后我创建的批处理文件将开始运行。

有没有办法做这样的事情?

4

1 回答 1

7

你可以很容易地做到这一点,maven-exec-plugin并将其与包阶段链接:

    <build>
      <plugins>
        <plugin>
          <groupId>org.codehaus.mojo</groupId>
            <artifactId>exec-maven-plugin</artifactId>
            <version>1.2</version>
            <executions>
              <execution>
                <id>runbatchfile</id>
                <phase>package</phase>
                <goals>
                  <goal>exec</goal>
                </goals>
              </execution>
            </executions>
            <configuration>
              <executable>c:\path\to\file.bat</executable>
            </configuration>
          </plugin>
        </plugins>

使用此配置:您的批处理文件将在与包阶段关联的默认目标之后执行。

于 2013-02-14T10:23:24.083 回答