问题:我需要在eclipse类路径上有一个不应该部署到Tomcat的lib。 (在maven项目中,它将提供范围)
解释
我已经设置了一个包含一些Ivy依赖项的项目,并且必须将配置外部化为JNI(邮件/会话)才能执行此操作我必须将mail-1.4.7.jar
放在Tomcat lib文件夹中。 / p>
问题是我有一个依赖项,将javax.mail-1.5.2.jar
添加到我的类路径中,所以我将其更改为:
<dependency org="org.apache.logging.log4j" name="log4j-core" rev="2.2">
<exclude org="com.sun.mail" name="javax.mail"/>
</dependency>
现在的问题是我的项目因为缺少javax.mail.MessagingException
所以我必须添加邮件依赖,但仅限于eclipse。我已经尝试了一些配置,如我所知,从Maven的行为中解释here无效。
仅在项目中保持邮件依赖性,打破Tomcat,将其保留在tomcat和项目中断项目上。当我从项目lib文件夹(WEB-INF \ lib)手动删除它时,在部署项目后,它可以正常工作。
底线(部署后):
tomcatFolder
|_lib
| |_...
| |_mail-1.4.7.jar
| |_...
|_webapps
|_myproject
|_WEB-INF
|_lib
|_...
|_javax.mail-1.5.2.jar //need to remove it at deploy time only
|_...
现在无法将其更改为maven。但它正在进行中:))
答案 0 :(得分:2)
这实际上是这个问题的重复:
但是..从你的问题我怀疑你没有使用常春藤配置映射。这是不幸的,因为这是常春藤用于逻辑地将依赖关系分组到功能分组中的机制,类似于Maven维护范围的方式。以下帖子试图弥合这种理解
此外,您还使用Eclipse,这意味着除非您使用ivy plugin,否则您实际上有两种构建机制。 (常春藤和日食)。我建议先修复你的ANT构建,然后再看看如何维护Eclipse类路径。
第一部分描述了如何在常春藤文件中声明和使用配置,第二部分解释了如何在构建逻辑中使用常春藤ANT任务。
您应该始终声明常春藤配置并使用它们来控制类路径。在我的构建中,我总是至少有三个:编译,运行时和测试。请注意 extends 属性如何用于在配置之间创建关系,因为运行时还应该包含编译依赖项。
为提供的范围罐添加额外的一个很容易。简单的独立配置:
<ivy-module version="2.0">
<info organisation="com.myspotontheweb" module="demo"/>
<configurations>
<conf name="compile" description="Required to compile application"/>
<conf name="runtime" description="Additional run-time dependencies" extends="compile"/>
<conf name="test" description="Required for test only" extends="runtime"/>
<conf name="provided" description="Needed for compile, but will be present on the target platform."/>
</configurations>
<dependencies>
<!-- compile dependencies -->
<dependency org="org.slf4j" name="slf4j-api" rev="1.7.5" conf="compile->default"/>
<!-- runtime dependencies -->
<dependency org="org.slf4j" name="slf4j-log4j12" rev="1.7.5" conf="runtime->default"/>
<!-- test dependencies -->
<dependency org="junit" name="junit" rev="4.11" conf="test->default"/>
<!-- provided dependencies -->
<dependency org="org.apache.tomcat" name="servlet-api" rev="6.0.16" conf="provided->master"/>
</dependencies>
</ivy-module>
配置映射使事情变得特别。简单的解释是,当从Maven存储库中提取时,它们分为两种基本类型:
第一种方法包括远程模块及其所有依赖项。第二种方法包括远程模块和排除它的依赖项。这意味着您不需要以下排除技巧:
<dependency org="org.apache.logging.log4j" name="log4j-core" rev="2.2">
<exclude org="com.sun.mail" name="javax.mail"/>
</dependency>
如果你想要的只是log4j-core jar,你只需使用以下内容:
<dependency org="org.apache.logging.log4j" name="log4j-core" rev="2.2" conf="provided->master"/>
附加说明:
解析目标将拉下依赖关系,生成报告并创建编译和测试类路径。请注意使用配置来确定应使用哪些jar分组:
<target name="resolve" description="Use ivy to resolve classpaths">
<ivy:resolve/>
<ivy:report todir='${build.dir}/ivy-reports' graph='false' xml='false'/>
<ivy:cachepath pathid="compile.path" conf="compile,provided"/>
<ivy:cachepath pathid="test.path" conf="test,provided"/>
</target>
然后编译目标正常使用这些类路径引用:
<target name="compile" depends="resolve,resources" description="Compile code">
<mkdir dir="${build.dir}/classes"/>
<javac srcdir="${src.dir}" destdir="${build.dir}/classes" includeantruntime="false" debug="true" classpathref="compile.path"/>
</target>
<target name="compile-tests" depends="compile" description="Compile tests">
<mkdir dir="${build.dir}/test-classes"/>
<javac srcdir="${test.src.dir}" destdir="${build.dir}/test-classes" includeantruntime="false" debug="true">
<classpath>
<path refid="test.path"/>
<pathelement path="${build.dir}/classes"/>
</classpath>
</javac>
</target>
测试目标:
<target name="test" depends="compile-tests" description="Run unit tests">
<mkdir dir="${build.dir}/test-reports"/>
<junit printsummary="yes" haltonfailure="yes">
<classpath>
<path refid="test.path"/>
<pathelement path="${build.dir}/classes"/>
<pathelement path="${build.dir}/test-classes"/>
</classpath>
<formatter type="xml"/>
<batchtest fork="yes" todir="${build.dir}/test-reports">
<fileset dir="${test.src.dir}">
<include name="**/*Test*.java"/>
<exclude name="**/AllTests.java"/>
</fileset>
</batchtest>
</junit>
</target>
最后,常春藤检索任务用于构建war文件。仅使用“运行时”配置jar:
<target name="package" depends="test" description="Create the WAR file">
<ivy:retrieve pattern="${build.dir}/lib/[artifact].[ext]" conf="runtime"/>
<war destfile="${war.file}" webxml="${resources.dir}/web.xml">
<fileset dir="${resources.dir}" excludes="web.xml"/>
<lib dir="${build.dir}/lib"/>
</war>
</target>