Code Search for Developers
 
 
  

build.xml from Kneobase at Krugle


Show build.xml syntax highlighted

<?xml version="1.0"?>

<project name="Installer" default="build" basedir=".">
	<import file="../KneobaseCommons/tasks.xml"/>

	<target name="buildWindowsExecutable">
		<ant dir="../Demo-WindowsExecutable" inheritall="false" target="build"/>
	</target>
	
	<target name="makensis">
		<copy file="${src}/kneobase.nsi" todir="${build}"/>
		<replace file="${build}/kneobase.nsi"
			token=";THIS LINE WILL BE REPLACED DURNING BUILD.XML AND WILL POINT TO JRE5 PATH"
			value="File /r &quot;${jre5.path}\*.*&quot;" />
		<exec executable="makensis/makensis.exe">
			<arg line="&quot;${build}/kneobase.nsi&quot;"/>
		</exec>
	</target>

	<target name="build" depends="clean, buildWindowsExecutable, makensis"/>
</project>



See more files for this project here

Kneobase

Kneobase is an enterprise search engine, based upon the Lucene search engine and the Spring framework. It allows to perform full-text search across many different content sources. It is highly adaptable out-of-the-box and has a pluggable architecture.

Project homepage: http://sourceforge.net/projects/kneobase
Programming language(s): Java,XML
License: other

  docs/
    project-info.txt
  makensis/
    Stubs/
      bzip2
      bzip2_solid
      lzma
      lzma_solid
      uninst
      zlib
      zlib_solid
    makensis.exe
  src/
    kneobase.nsi
  .classpath
  .project
  build.xml