在Gradle中使用FMPP生成Java文件



我有一个现有的Maven项目,我正在尝试移植到Gradle。

一个子模块使用FMPP/freemarker生成许多Java文件,然后将其馈入构建中。

我是Gradle的新手,想知道是否有人知道一种简单的方法。

任何帮助将不胜感激。

我当前的pom.xml看起来像这样:

<build>
    <plugins>
        <!-- Freemarker maven plugin for code generation -->
        <plugin>
            <groupId>com.googlecode.fmpp-maven-plugin</groupId>
            <artifactId>fmpp-maven-plugin</artifactId>
            <version>1.0</version>
            <dependencies>
                <dependency>
                    <groupId>org.unix4j</groupId>
                    <artifactId>unix4j-tools</artifactId>
                    <version>0.1-SNAPSHOT</version>
                    <optional>true</optional>
                </dependency>
            </dependencies>
            <configuration>
                <cfgFile>src/main/resources/codegen/config.fmpp</cfgFile>
                <outputDirectory>target/generated-sources/main/java</outputDirectory>
                <templateDirectory>src/main/resources/codegen/templates</templateDirectory>
            </configuration>
            <executions>
                <execution>
                    <phase>generate-sources</phase>
                    <goals>
                        <goal>generate</goal>
                    </goals>
                </execution>
            </executions>
        </plugin>
        <plugin>
            <groupId>org.codehaus.mojo</groupId>
            <artifactId>build-helper-maven-plugin</artifactId>
            <executions>
                <execution>
                    <phase>generate-sources</phase>
                    <goals>
                        <goal>add-source</goal>
                    </goals>
                    <configuration>
                        <sources>
                            <source>src/main/generated</source>
                        </sources>
                    </configuration>
                </execution>
            </executions>
        </plugin>
    </plugins>
</build>

对不起,应该花更多的时间先搜索。这是对我有用的解决方案:

project(':unix4j-core:unix4j-command') {
    configurations {pmd}
    dependencies {
        compile project(':unix4j-core:unix4j-base')
        compile project(':unix4j-tools')
        pmd project(':unix4j-tools')
    }
    task generateFmppSources(dependsOn: ":unix4j-tools:compileJava") << {
        println "Generating sources...."
        ant.taskdef(name:'fmpp', classname:'fmpp.tools.AntTask', classpath:configurations.pmd.asPath);
        ant.fmpp configuration:"src/main/resources/codegen/config.fmpp", sourceRoot:"src/main/resources/codegen/templates", outputRoot:"target/generated-sources/main/java";
    }
    compileJava.dependsOn generateFmppSources
    sourceSets {
        main {
            java {
                srcDir 'target/generated-sources/main/java'
            }
        }
    }
}

相关内容

  • 没有找到相关文章

最新更新