mirror of
https://github.com/apache/lucene.git
synced 2025-02-07 10:38:40 +00:00
c3847f26ea
git-svn-id: https://svn.apache.org/repos/asf/lucene/java/trunk@165566 13f79535-47bb-0310-9956-ffa450edef68
25 lines
621 B
XML
25 lines
621 B
XML
<?xml version="1.0"?>
|
|
|
|
<project name="swing" default="default">
|
|
|
|
<description>
|
|
Swing Models
|
|
</description>
|
|
|
|
<import file="../contrib-build.xml"/>
|
|
|
|
<target name="list-demo" depends="compile">
|
|
<java classname="org.apache.lucene.swing.models.ListSearcherSimulator"
|
|
fork="yes" spawn="yes"
|
|
classpathref="test.classpath"
|
|
/>
|
|
</target>
|
|
|
|
<target name="table-demo" depends="compile">
|
|
<java classname="org.apache.lucene.swing.models.TableSearcherSimulator"
|
|
fork="yes" spawn="yes"
|
|
classpathref="test.classpath"
|
|
/>
|
|
</target>
|
|
</project>
|