我目前正在开发一个使用工具的项目,该工具采用以下示例IDL文件并从中生成大约5个Java类。
struct Example {
int x;
int y;
};
有没有办法让Maven使用我们用来在构建时自动创建这些Java类的命令行工具?
答案 0 :(得分:7)
以下是使用Exec Maven Plugin。
的示例<plugins>
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>exec-maven-plugin</artifactId>
<version>1.2.1</version>
<executions>
<execution>
<!-- this execution happens just after compiling the java classes, and builds the native code. -->
<id>build-native</id>
<phase>process-classes</phase>
<goals>
<goal>exec</goal>
</goals>
<configuration>
<executable>src/main/c/Makefile</executable>
<workingDirectory>src/main/c</workingDirectory>
</configuration>
</execution>
</executions>
</plugin>
</plugins>
答案 1 :(得分:1)
您可以使用maven-antrun-plugin
插件运行任意Ant tasks甚至任何命令行程序:
<build>
<plugins>
<plugin>
<artifactId>maven-antrun-plugin</artifactId>
<executions>
<execution>
<phase>generate-sources</phase>
<configuration>
<tasks>
<exec executable="ls">
<arg value="-l"/>
<arg value="-a"/>
</exec>
</tasks>
</configuration>
<goals>
<goal>run</goal>
</goals>
</execution>
</executions>
</plugin>
</plugins>
</build>
使用此配置,您的命令行程序将在编译之前执行,因此生成的Java源代码将可用于其余代码。