gpt4 book ai didi

java - 将Maven插件exec-maven-plugin转换为Gradle

转载 作者:行者123 更新时间:2023-12-03 06:27:41 24 4
gpt4 key购买 nike

我需要在gradle项目中使用以下maven插件。请给一些想法如何转换成gradle?

<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>exec-maven-plugin</artifactId>
<version>${exec-maven-plugin.version}</version>
<executions>
<execution>
<id>main</id>
<goals>
<goal>java</goal>
</goals>
</execution>
<execution>
<id>test</id>
<phase>package</phase>
<goals>
<goal>exec</goal>
</goals>
<configuration>
<executable>make</executable>
<arguments>
<argument>test</argument>
</arguments>
</configuration>
</execution>
</executions>
<configuration>
<mainClass>com.service.main.TWAService</mainClass>
</configuration>
</plugin>

请给我一些想法,我该怎么做。

最佳答案

task runTwaService(type: JavaExec) {
main = 'com.service.main.TWAService'
classpath = sourceSets.main.runtimeClasspath
}

关于java - 将Maven插件exec-maven-plugin转换为Gradle,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/45591439/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com