mirror of
https://github.com/igniterealtime/Spark.git
synced 2026-08-18 11:10:02 +00:00
Remove swingx dependency
git-svn-id: http://svn.igniterealtime.org/svn/repos/spark/trunk@5060 b35dd754-fafc-0310-a699-88a17e54d16e
This commit is contained in:
@ -1,6 +1,7 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<project name="Spark" default="jar" basedir=".">
|
||||
|
||||
|
||||
<!-- Optional add this file to override any of the properties below -->
|
||||
<property file="${basedir}/build.properties"/>
|
||||
<property name="version.major" value="2"/>
|
||||
@ -48,6 +49,18 @@
|
||||
<property name="mac.app.file" value="${mac.build.dir}/Spark.app"/>
|
||||
<property name="mac.dmg.file" value="${target}/spark_${version.underscore}.dmg"/>
|
||||
|
||||
<taskdef resource="net/sf/antcontrib/antcontrib.properties">
|
||||
<classpath>
|
||||
<pathelement location="${lib.dir}/ant-contrib.jar"/>
|
||||
</classpath>
|
||||
</taskdef>
|
||||
|
||||
<taskdef name="pack200" classname="com.sun.tools.apache.ant.pack200.Pack200Task">
|
||||
<classpath>
|
||||
<pathelement location="${lib.dir}/pack200task.jar"/>
|
||||
</classpath>
|
||||
</taskdef>
|
||||
|
||||
<!-- Define Default Library Archives -->
|
||||
<path id="agent.dependencies">
|
||||
<fileset dir="${dist.libs.dir}" includes="*.jar"/>
|
||||
@ -185,6 +198,35 @@
|
||||
<!--Put everything in ${classes} into the MyProject-${DSTAMP}.jar file-->
|
||||
<tstamp/>
|
||||
<jar jarfile="${targetlib}/spark.jar" basedir="${classes}"/>
|
||||
<!--
|
||||
<for param="jar">
|
||||
<path>
|
||||
<fileset dir="${targetlib}" includes="*.jar" />
|
||||
</path>
|
||||
<sequential>
|
||||
<delete file="@{jar}.pack" />
|
||||
<pack200 src="@{jar}"
|
||||
destfile="@{jar}.pack"
|
||||
gzipoutput="false"
|
||||
/>
|
||||
<delete file="@{jar}" />
|
||||
</sequential>
|
||||
</for>
|
||||
|
||||
<for param="jar">
|
||||
<path>
|
||||
<fileset dir="${commercial.plugin.dir}" includes="*.jar" />
|
||||
</path>
|
||||
<sequential>
|
||||
<delete file="@{jar}.pack" />
|
||||
<pack200 src="@{jar}"
|
||||
destfile="@{jar}.pack"
|
||||
gzipoutput="false"
|
||||
/>
|
||||
<delete file="@{jar}" />
|
||||
</sequential>
|
||||
</for>
|
||||
-->
|
||||
</target>
|
||||
|
||||
<!-- javadocs =================================================================================== -->
|
||||
|
||||
Binary file not shown.
@ -81,15 +81,6 @@
|
||||
<SOURCES />
|
||||
</library>
|
||||
</orderEntry>
|
||||
<orderEntry type="module-library" exported="">
|
||||
<library>
|
||||
<CLASSES>
|
||||
<root url="jar://$MODULE_DIR$/../lib/merge/backport-util-concurrent.jar!/" />
|
||||
</CLASSES>
|
||||
<JAVADOC />
|
||||
<SOURCES />
|
||||
</library>
|
||||
</orderEntry>
|
||||
<orderEntry type="module-library" exported="">
|
||||
<library>
|
||||
<CLASSES>
|
||||
@ -99,15 +90,6 @@
|
||||
<SOURCES />
|
||||
</library>
|
||||
</orderEntry>
|
||||
<orderEntry type="module-library" exported="">
|
||||
<library>
|
||||
<CLASSES>
|
||||
<root url="jar://$MODULE_DIR$/../lib/merge/swingx.jar!/" />
|
||||
</CLASSES>
|
||||
<JAVADOC />
|
||||
<SOURCES />
|
||||
</library>
|
||||
</orderEntry>
|
||||
<orderEntry type="module-library" exported="">
|
||||
<library>
|
||||
<CLASSES>
|
||||
@ -117,15 +99,6 @@
|
||||
<SOURCES />
|
||||
</library>
|
||||
</orderEntry>
|
||||
<orderEntry type="module-library" exported="">
|
||||
<library>
|
||||
<CLASSES>
|
||||
<root url="jar://$MODULE_DIR$/../lib/merge/jtoaster-1.0.4.jar!/" />
|
||||
</CLASSES>
|
||||
<JAVADOC />
|
||||
<SOURCES />
|
||||
</library>
|
||||
</orderEntry>
|
||||
<orderEntry type="module-library" exported="">
|
||||
<library>
|
||||
<CLASSES>
|
||||
|
||||
@ -10,7 +10,6 @@
|
||||
|
||||
package org.jivesoftware.spark.component;
|
||||
|
||||
import org.jdesktop.swingx.JXTable;
|
||||
import org.jivesoftware.spark.util.GraphicUtils;
|
||||
|
||||
import javax.swing.BorderFactory;
|
||||
|
||||
Reference in New Issue
Block a user