我是Ant脚本的新手。
以下是要求说明
在我的工作区中,有各种项目,我必须让我的项目工作在RAD和eclipse IDE以及Websphere,tomcat和jboss环境..我已经进行了项目特定的设置,使项目在RAD和websphere上工作和eclipse和tomcat n jboss ..
但是几个文件中有一些变化,比如classpath和几个配置文件。
这给我留下了三个版本的工作空间。
但我的想法是让一个工作区具有多个版本的类路径,例如。 classpath_eclipse,classpath_rad等..并且有一个ant脚本,它将在构建期间根据哪个ide在正确的文件之间进行选择。
所以请各位建议我如何实施这种方法。蚂蚁全新。 :/
答案 0 :(得分:1)
我建议使用Apache ivy来管理复杂的类路径。它将构建依赖项外部化为单独的 ivy.xml 文件。
其次,ivy可以自动下载此类依赖项,从而减少源代码管理下项目的大小。
最后,乍一看这个解决方案可能看起来非常复杂。它的优点是它与Maven等其他构建技术兼容。
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>
备注:强>
常春藤ANT任务导入为antlib。常春藤cachepath任务用于将常春藤托管配置转换为普通ANT paths,常春藤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>
..
..
常春藤retrieve任务用于在应用程序的打包阶段填充目录:
<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>
常春藤的Eclipse plugin可用。
还可以使用嵌入式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>
答案 1 :(得分:0)
我想分享一下我最终实施的方法。
有classpath
,settings
和一些project config xmls
依赖于运行时。
在每个项目中,我们创建了runtime_classpah
&amp;每个文件的runtime_settings
和configxml_runtime
版本。
在target
中创建了一个ant
,其中runtime
作为参数,对每个项目进行了分析。将classpath_runtime
的内容复制到classpath
,setting_runtime to settings
。
目标是configxml
,其内容为configxml_runtime