2004-01-05 12:20:42 -05:00
|
|
|
<?xml version="1.0"?>
|
2003-12-10 21:07:45 -05:00
|
|
|
|
2007-06-09 02:09:46 -04:00
|
|
|
<!--
|
|
|
|
Licensed to the Apache Software Foundation (ASF) under one or more
|
|
|
|
contributor license agreements. See the NOTICE file distributed with
|
|
|
|
this work for additional information regarding copyright ownership.
|
|
|
|
The ASF licenses this file to You under the Apache License, Version 2.0
|
|
|
|
the "License"); you may not use this file except in compliance with
|
|
|
|
the License. You may obtain a copy of the License at
|
|
|
|
|
|
|
|
http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
|
|
|
|
Unless required by applicable law or agreed to in writing, software
|
|
|
|
distributed under the License is distributed on an "AS IS" BASIS,
|
|
|
|
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
|
|
See the License for the specific language governing permissions and
|
|
|
|
limitations under the License.
|
|
|
|
-->
|
|
|
|
|
2006-11-21 15:54:06 -05:00
|
|
|
<project name="lucli" default="jar">
|
2003-12-10 21:07:45 -05:00
|
|
|
|
2004-01-05 12:20:42 -05:00
|
|
|
<description>
|
|
|
|
Lucene Command Line Interface
|
|
|
|
</description>
|
2003-12-10 21:07:45 -05:00
|
|
|
|
|
|
|
|
2004-01-05 12:20:42 -05:00
|
|
|
<path id="additional.dependencies">
|
2005-03-23 18:42:23 -05:00
|
|
|
<pathelement location="lib/jline.jar"/>
|
2004-01-05 12:20:42 -05:00
|
|
|
</path>
|
2003-12-10 21:07:45 -05:00
|
|
|
|
2004-01-05 12:20:42 -05:00
|
|
|
<pathconvert property="project.classpath"
|
|
|
|
targetos="unix"
|
|
|
|
refid="additional.dependencies"
|
|
|
|
/>
|
2003-12-10 21:07:45 -05:00
|
|
|
|
2004-01-05 12:20:42 -05:00
|
|
|
<property name="src.dir" location="src"/>
|
2003-12-10 21:07:45 -05:00
|
|
|
|
2006-02-26 09:24:54 -05:00
|
|
|
|
|
|
|
<import file="../contrib-build.xml"/>
|
|
|
|
|
|
|
|
<target name="jar" depends="compile" description="Create JAR">
|
2007-06-06 20:48:32 -04:00
|
|
|
<jarify>
|
|
|
|
<manifest-attributes>
|
|
|
|
<attribute name="Main-Class" value="lucli.Lucli" />
|
|
|
|
<attribute name="Class-Path" value="lib/jline.jar lib/lucene.jar" />
|
|
|
|
</manifest-attributes>
|
|
|
|
</jarify>
|
2005-01-23 06:12:51 -05:00
|
|
|
</target>
|
2003-12-10 21:07:45 -05:00
|
|
|
</project>
|