Skip to main content

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index] [List Home]
RE: [aspectj-users] inPath in 1.2rc1

sorry, the echopoint build was bad and the injar'd echopoint.jar did not
contain the resources.

so it works fine!



:: Hi!
:: 
:: Do I think it right that the iajc ant task should copy all 
:: files (not only .class files) from the inPath jars into the outJar?
:: 
:: The copyInJars attribute is obsolete.
:: 
:: I have the task below and the output jar does not contain 
:: the gif's from the echopoint jar.
:: 
:: Any ideas?
:: 
:: - 101
:: 
:: 		<iajc
:: 			encoding="UTF-8"
:: 			source="1.4"
:: 			debug="true"
:: 			verbose="false"
:: 			debuglevel="lines,vars,source"
:: 			outJar="${build}/${project-name}.jar"
:: 			
:: 			fork="true"
:: 		>
:: 			<sourceroots>
:: 				<pathelement location="src/java"/>
:: 			</sourceroots>
:: 
:: 			<inpath>
:: 				<pathelement
:: path="${echo.build.home}/Echo.jar"/>
:: 				<pathelement
:: path="${echo.build.home}/EchoServer.jar"/>
:: 				<fileset
:: dir="${echo.filetransfer.home}" includes="Echo_FileTransfer*.jar"/>
:: 				<fileset
:: dir="${echopoint.build.home}" includes="echopoint*.jar"/>
:: 			</inpath>
:: 
:: 			<classpath refid="web.build.classpath"/>
:: 		</iajc>
:: _______________________________________________
:: aspectj-users mailing list
:: aspectj-users@xxxxxxxxxxx 
:: http://dev.eclipse.org/mailman/listinfo/aspectj-users
:: 
:: 


Back to the top