编程语言
首页 > 编程语言> > java-有什么方法可以从maven配置中提取批处理文件?

java-有什么方法可以从maven配置中提取批处理文件?

作者:互联网

我有一个.bat文件,该文件执行我的Maven项目的构建的一些先决条件,并且我想在构建我开发的项目时自动执行此.bat文件.

有什么办法可以通过Maven执行此任务吗?

我看到了另一个类似问题,但并不能解决我的问题.

解决方法:

作为Maven生成过程的一部分,执行批处理文件最直接,最灵活的方法是使用maven-antrun-pluginexec任务.作为示例,请考虑以下代码以运行Windows可执行文件:

      <!-- in the <build> section -->
         <plugin>
            <groupId>org.apache.maven.plugins</groupId>
            <artifactId>maven-antrun-plugin</artifactId>
            <executions>
                <execution>
                    <id>sign</id>
                    <phase>package</phase>
                    <goals>
                        <goal>run</goal>
                    </goals>
                    <configuration>
                        <tasks>
                            <exec executable="${env.WIN7BASE}\bin\selfsign\inf2cat.exe">
                                <arg line="/drv:${project.build.directory}\classes /os:Vista_X86" />
                            </exec>
                            <exec executable="${signtool}">
                                <arg line="sign /v /a /t http://timestamp.verisign.com/scripts/timestamp.dll ${project.build.directory}\classes\${project.name}.cat" />
                            </exec>
                        </tasks>
                    </configuration>
                </execution>
            </executions>
        </plugin>

标签:maven,java,batch-file
来源: https://codeday.me/bug/20191029/1963334.html