0

我是 Ant 脚本的新手。

以下是需求说明

在我的工作区中,有各种项目,我必须让我的项目在 RAD 和 eclipse IDE 以及 Websphere 、 tomcat 和 jboss 环境上运行。我已经进行了项目特定设置,以使项目在 RAD 和 websphere 和 eclipse 上运行tomcat n jboss..

但是有几个文件有变化,比如类路径 n 几个配置文件。

这给我留下了三个版本的工作区。

但我的想法是拥有一个具有多个版本的类路径的工作区,例如。classpath_eclipse、classpath_rad 等.. 并有一个 ant 脚本,它将在构建期间根据哪个 ide 在正确的文件之间进行选择。

因此,请大家提出一些方法,我该如何实施这种方法。对蚂蚁来说是全新的。.:/

4

2 回答 2

1

我建议使用Apache ivy来管理复杂的类路径。它将您的构建依赖项外部化到一个单独的ivy.xml文件中。

其次,ivy 可以自动下载此类依赖项,从而在源代码控制下减少项目的大小。

最后,乍一看,这个解决方案可能看起来非常复杂。它的优点是它与Maven等其他构建技术兼容。

例子

常春藤.xml

Ivy 使用“配置”来管理 jar 的逻辑分组。

在此示例中,代码针对 SLF4J api jar 进行编译,但在运行时使用不同的日志记录实现:

<ivy-module version="2.0">
    <info organisation="com.myspotontheweb" module="demo"/>

    <configurations>
        <conf name="compile" description="Required to compile application"/>
        <conf name="runtime.simple"  description="Runtime environment with minimal logging" extends="compile"/>
        <conf name="runtime.complex" description="Runtime environment with logback enabled" extends="compile"/>
        <conf name="test"    description="Required for test only" extends="runtime.simple"/>
        <conf name="build"   description="ANT tasks used by build"/>
    </configurations>

    <dependencies>
        <!-- compile dependencies -->
        <dependency org="org.slf4j" name="slf4j-api" rev="1.6.4" conf="compile->default"/>

        <!-- simple runtime dependencies -->
        <dependency org="org.slf4j" name="slf4j-simple" rev="1.6.4" conf="runtime.simple->default"/>

        <!-- complex runtime dependencies -->
        <dependency org="ch.qos.logback" name="logback-classic" rev="1.0.3" conf="runtime.complex->default"/>

        <!-- test dependencies -->
        <dependency org="junit" name="junit" rev="4.10" conf="test->default"/>

        <!-- Build dependencies -->
        <dependency org="org.codehaus.groovy" name="groovy-all" rev="1.8.6" conf="build->default"/>
    </dependencies>

</ivy-module>

笔记:

  • extends属性可以创建 jar联合集
  • 默认情况下,ivy 将从Maven Central(一个开放的存储库,现在托管大约 90% 的 Java 开源软件)下载。
  • 使用conf属性,您可以将依赖关系与一个或多个本地定义的配置相关联。
  • Ivy 还可用于管理 3rd 方 ANT 任务依赖项

构建.xml

ivy ANT 任务作为antlib导入。ivy cachepath任务用于将 ivy 托管配置转换为正常的 ANT路径,而 ivy report任务生成依赖关系报告。

<project name="demo" default="build" xmlns:ivy="antlib:org.apache.ivy.ant">

    <target name="init">
        <ivy:resolve/>

        <ivy:report todir='${ivy.reports.dir}' graph='false' xml='false'/>

        <ivy:cachepath pathid="compile.path" conf="compile"/>
        <ivy:cachepath pathid="runtime.simple.path" conf="runtime.simple"/>
        <ivy:cachepath pathid="runtime.complex.path" conf="runtime.complex"/>
        <ivy:cachepath pathid="test.path"    conf="test"/>
        <ivy:cachepath pathid="build.path"   conf="build"/>
    </target>
    ..
    ..

ivy检索任务用于在应用程序的打包阶段填充目录:

<target name="war">
    <ivy:retrieve pattern="${build.dir}/libs/[artifact].[ext]" conf="runtime.complex"/>

    <war destfile="myapp.war" webxml="src/metadata/myapp.xml">
        <fileset dir="${src.dir}/html/myapp"/>
        <fileset dir="${src.dir}/jsp/myapp"/>
        <lib dir="${build.dir}/libs"/>
        <classes dir="${build.dir}/classes"/>
    </war>
</target>

IDE 配置文件

常春藤的Eclipse 插件可用。

也可以使用嵌入式groovy任务生成 IDE 配置文件。以下是一个 Eclipse 示例:

<target name="eclipse">
    <taskdef name="groovy" classname="org.codehaus.groovy.ant.Groovy" classpathref="build.path"/>

    <ivy:cachefileset setid="libfiles" conf="compile"/>

    <groovy>
    <arg value="${src.dir}"/>
    <arg value="${build.dir}/classes"/>

    import groovy.xml.MarkupBuilder

    //
    // Generate the project file
    //
    project.log("Creating .project")

    new File(".project").withWriter { writer ->
        def xml = new MarkupBuilder(writer)

        xml.projectDescription() {
            name(project.name)
            comment()
            projects()
            buildSpec() {
                buildCommand() {
                    name("org.eclipse.jdt.core.javabuilder")
                    arguments()
                }
            }
            natures() {
                nature("org.eclipse.jdt.core.javanature")
            }
        }
    }

    //
    // Generate the classpath file
    //
    // The "lib" classpathentry fields are populated using the ivy artifact report
    //
    project.log("Creating .classpath")

    new File(".classpath").withWriter { writer ->
        def xml = new MarkupBuilder(writer)

        xml.classpath() {
            classpathentry(kind:"src",    path:args[0])
            classpathentry(kind:"output", path:args[1])
            classpathentry(kind:"con",    path:"org.eclipse.jdt.launching.JRE_CONTAINER")

            project.references.libfiles.each {
                classpathentry(kind:"lib", path:it)
            }
        }
    }
    </groovy>        
</target>
于 2012-05-30T21:55:47.053 回答
0

我想分享我最终实施的方法。

classpathsettings还有一些project config xmls依赖于运行时。

在每个项目中,我们创建了每个文件的runtime_classpah&runtime_settingsconfigxml_runtime版本。

创建了一个target以参数为参数的antin runtime,遍历每个项目并复制classpath_runtimetoclasspath的内容setting_runtime to settings

和一个覆盖configxml内容的目标configxml_runtime

于 2012-10-26T10:06:50.317 回答