Thread: [Japi-cvs] SF.net SVN: japi:[911] tools (Page 2)
Status: Beta
Brought to you by:
christianhujer
|
From: <chr...@us...> - 2009-02-15 22:35:42
|
Revision: 911
http://japi.svn.sourceforge.net/japi/?rev=911&view=rev
Author: christianhujer
Date: 2009-02-15 22:35:34 +0000 (Sun, 15 Feb 2009)
Log Message:
-----------
Updated build.xml and module.properties of all tools to build with common build.
Modified Paths:
--------------
tools/fontbrowser/trunk/build.xml
tools/gdbControl/trunk/build.xml
tools/gdbControl/trunk/module.properties
tools/jgrep/trunk/build.xml
tools/jwget/trunk/build.xml
tools/keystrokes/trunk/build.xml
tools/mail/trunk/build.xml
tools/prefsbrowser/trunk/build.xml
tools/replacer/trunk/build.xml
tools/replacer/trunk/module.properties
tools/scriptInterpreter/trunk/build.xml
tools/string2bytes/trunk/build.xml
tools/todoScanner/trunk/build.xml
tools/todoScanner/trunk/module.properties
Added Paths:
-----------
tools/fontbrowser/trunk/module.properties
tools/jgrep/trunk/module.properties
tools/jwget/trunk/module.properties
tools/keystrokes/trunk/module.properties
tools/mail/trunk/module.properties
tools/midiDeviceLister/trunk/build.xml
tools/midiDeviceLister/trunk/module.properties
tools/midiMonitor/trunk/build.xml
tools/midiMonitor/trunk/module.properties
tools/prefsbrowser/trunk/module.properties
tools/scriptEngineLister/trunk/build.xml
tools/scriptEngineLister/trunk/module.properties
tools/scriptInterpreter/trunk/module.properties
tools/string2bytes/trunk/module.properties
Modified: tools/fontbrowser/trunk/build.xml
===================================================================
--- tools/fontbrowser/trunk/build.xml 2009-02-15 22:06:52 UTC (rev 910)
+++ tools/fontbrowser/trunk/build.xml 2009-02-15 22:35:34 UTC (rev 911)
@@ -15,210 +15,11 @@
~ You should have received a copy of the GNU General Public License
~ along with this program. If not, see <http://www.gnu.org/licenses/>.
-->
+<!DOCTYPE project [
+ <!ENTITY commonBuild SYSTEM "common/commonBuild.xml">
+]>
+<project name="fontbrowser" default="compile">
-<project name="dircount" default="compile">
+ &commonBuild;
- <property name="module.version" value="0.1" />
- <property name="module.name" value="dircount" />
- <property name="module.shortname" value="dircount" />
- <property name="module.title" value="DirCount" />
- <property name="module.main.class" value="net.sf.japi.dircount.DirCount" />
-
- <taskdef name="pack200" classpath="common/antlib/Pack200Task.jar" classname="com.sun.tools.apache.ant.pack200.Pack200Task" />
-
- <target
- name = "clean"
- description = "Cleans Sandbox"
- >
- <delete dir="classes" />
- <delete dir="docs" />
- </target>
-
- <target
- name = "compile"
- description = "Compiles production classes"
- >
- <mkdir dir="classes/production/${module.shortname}" />
- <mkdir dir="classes/test/${module.shortname}" />
- <javac
- srcdir="src/prj"
- destdir="classes/production/${module.shortname}"
- encoding="utf-8"
- source="1.5"
- target="1.5"
- >
- <classpath>
- <fileset dir="lib" includes="*.jar" excludes="LICENSE-*.jar" />
- <fileset dir="common/lib" includes="*.jar" excludes="LICENSE-*.jar" />
- </classpath>
- <exclude name="test/**/*.java" />
- </javac>
- <copy
- todir="classes/production/${module.shortname}"
- >
- <fileset dir="src/prj" includes="**/*.properties" excludes="test/**/*.properties" />
- <fileset dir="src/prj" includes="META-INF/services/**" />
- </copy>
- <copy
- todir="classes/production/${module.shortname}"
- >
- <fileset dir="lib" includes="LICENSE-*" />
- <fileset dir="." includes="COPYING" />
- </copy>
- </target>
-
- <target
- name = "dist"
- description = "Packs distribution archives."
- depends = "clean, compile"
- >
- <!--depends = "clean, compile, doc"
- -->
- <delete dir="dist" />
- <mkdir dir="dist" />
- <property name="distName" value="dist/${module.name}-${module.version}" />
- <parallel>
- <tar tarfile="${distName}.src.tar">
- <tarfileset dir="." prefix="${module.name}-${module.version}">
- <include name="src/**" />
- <include name="build.xml" />
- </tarfileset>
- </tar>
- <zip destfile="${distName}.src.zip">
- <zipfileset dir="." prefix="${module.name}-${module.version}">
- <include name="src/**" />
- <include name="build.xml" />
- </zipfileset>
- </zip>
- <jar destfile="${distName}.src.jar">
- <zipfileset dir="." prefix="${module.name}-${module.version}">
- <include name="src/**" />
- <include name="build.xml" />
- </zipfileset>
- </jar>
- <jar destfile="${distName}.jar">
- <zipfileset dir="classes/production/${module.shortname}"/>
- <manifest>
- <attribute name="Main-Class" value="${module.main.class}" />
- <attribute name="Class-Path" value="lib/annotations.jar lib/japi-lib-lang-0.1.jar lib/japi-lib-swing-about-0.1.jar lib/japi-lib-swing-action-0.1.jar" />
- <attribute name="Implementation-Title" value="${module.name}" />
- <attribute name="Implementation-Vendor" value="Christian Hujer + the JAPI Developers" />
- <attribute name="Implementation-Version" value="${module.version}" />
- <attribute name="Implementation-URL" value="http://sourceforge.net/projects/japi/" />
- </manifest>
- </jar>
- <tar tarfile="${distName}.doc.tar">
- <tarfileset dir="." prefix="${module.name}-${module.version}">
- <include name="docs/**" />
- <include name="build.xml" />
- </tarfileset>
- </tar>
- <zip destfile="${distName}.doc.zip">
- <zipfileset dir="." prefix="${module.name}-${module.version}">
- <include name="docs/**" />
- <include name="build.xml" />
- </zipfileset>
- </zip>
- <jar destfile="${distName}.doc.jar">
- <zipfileset dir="." prefix="${module.name}-${module.version}">
- <include name="docs/**" />
- </zipfileset>
- </jar>
- </parallel>
- <parallel>
- <gzip src="${distName}.src.tar" destfile="${distName}.src.tar.gz" />
- <bzip2 src="${distName}.src.tar" destfile="${distName}.src.tar.bz2" />
- <gzip src="${distName}.doc.tar" destfile="${distName}.doc.tar.gz" />
- <bzip2 src="${distName}.doc.tar" destfile="${distName}.doc.tar.bz2" />
- <pack200
- src="${distName}.jar"
- destfile="${distName}.pack.gz"
- gzipoutput="true"
- stripdebug="true"
- effort="9"
- keepfileorder="false"
- modificationtime="latest"
- deflatehint="false"
- />
- </parallel>
- <delete file="${distName}.src.tar" />
- <delete file="${distName}.doc.tar" />
- </target>
-
- <target
- name = "doc"
- description = "Creates public javadoc documentation."
- >
- <mkdir dir="docs/api" />
- <!--copy todir="docs/api" file="src/doc/api/public/copyright.html" />
- <copy todir="docs/api" file="src/doc/api/public/.htaccess" /-->
- <javadoc
- destdir = "docs/api"
- access = "protected"
- author = "yes"
- version = "yes"
- locale = "en_US"
- use = "yes"
- splitindex = "yes"
- windowtitle = "JAPI Library ${module.title} ${module.version} API documentation"
- doctitle = "JAPI<br />Yet another Java API<br />Library ${module.title} ${module.version} API documentation"
- header = "JAPI Library ${module.title} ${module.version}<br />API Documentation"
- footer = "JAPI<br />Yet another Java API<br />Library ${module.title} ${module.version} API documentation"
- bottom = "<div style=" text-align:center;">© 2005-2006 Christian Hujer. All rights reserved. See <a href="{@docRoot}/copyright.html">copyright</a></div>"
- serialwarn = "yes"
- charset = "utf-8"
- docencoding = "utf-8"
- encoding = "utf-8"
- source = "1.5"
- linksource = "yes"
- link = "${user.javadoc.link}"
- >
- <!--
- overview = "src/overview.html"
- -->
- <classpath>
- <fileset dir="lib" includes="annotations.jar" />
- </classpath>
- <sourcepath>
- <pathelement path="${user.javadoc.javasrc}" />
- <pathelement path="src/prj" />
- </sourcepath>
- <packageset
- dir="src/prj"
- defaultexcludes="yes"
- >
- <include name="net/**" />
- </packageset>
- <tag enabled="true" name="retval" description="Return Values:" scope="methods" />
- <tag enabled="true" name="pre" description="Preconditions:" scope="methods,constructors" />
- <tag enabled="true" name="post" description="Postconditions:" scope="methods" />
- <tag enabled="true" name="invariant" description="Invariant:" scope="methods,fields" />
- <tag enabled="true" name="note" description="Notes:" />
- <tag enabled="true" name="warning" description="Warnings:" />
- <!--tag enabled="true" name="todo" description="Todo:" /-->
- <taglet name="com.sun.tools.doclets.ToDoTaglet" path="" />
- <tag enabled="true" name="fixme" description="Fixme:" />
- <tag enabled="true" name="xxx" description="XXX:" />
- </javadoc>
- </target>
-
- <target
- name = "buildapp"
- description = "Creates executable jar"
- >
- <property name="appName" value="${module.name}-${module.version}-app" />
- <jar destfile="${appName}.jar">
- <zipfileset dir="classes/production/${module.shortname}"/>
- <zipgroupfileset dir="lib" includes="*.jar" excludes="LICENSE-*.jar" />
- <manifest>
- <attribute name="Main-Class" value="${module.main.class}" />
- <!--attribute name="Class-Path" value="lib/annotations.jar lib/japi-lib-lang-0.1.jar lib/japi-lib-swing-about-0.1.jar lib/japi-lib-swing-action-0.1.jar" /-->
- <attribute name="Implementation-Title" value="${module.name}" />
- <attribute name="Implementation-Vendor" value="Christian Hujer + the JAPI Developers" />
- <attribute name="Implementation-Version" value="${module.version}" />
- <attribute name="Implementation-URL" value="http://sourceforge.net/projects/japi/" />
- </manifest>
- </jar>
- </target>
-
</project>
Added: tools/fontbrowser/trunk/module.properties
===================================================================
--- tools/fontbrowser/trunk/module.properties (rev 0)
+++ tools/fontbrowser/trunk/module.properties 2009-02-15 22:35:34 UTC (rev 911)
@@ -0,0 +1,24 @@
+#
+# Copyright (C) 2009 Christian Hujer
+#
+# This program is free software: you can redistribute it and/or modify
+# it under the terms of the GNU General Public License as published by
+# the Free Software Foundation, either version 3 of the License, or
+# (at your option) any later version.
+#
+# This program is distributed in the hope that it will be useful,
+# but WITHOUT ANY WARRANTY; without even the implied warranty of
+# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+# GNU General Public License for more details.
+#
+# You should have received a copy of the GNU General Public License
+# along with this program. If not, see <http://www.gnu.org/licenses/>.
+#
+
+update.focus=none
+name=FontBrowser
+shortname=FontBrowser
+title=FontBrowser
+package=net.sf.japi.fontbrowser
+package.path=net/sf/japi/fontbrowser
+main.class=net.sf.japi.fontbrowser.FontBrowser
Property changes on: tools/fontbrowser/trunk/module.properties
___________________________________________________________________
Added: svn:mime-type
+ text/plain
Added: svn:eol-style
+ LF
Modified: tools/gdbControl/trunk/build.xml
===================================================================
--- tools/gdbControl/trunk/build.xml 2009-02-15 22:06:52 UTC (rev 910)
+++ tools/gdbControl/trunk/build.xml 2009-02-15 22:35:34 UTC (rev 911)
@@ -15,221 +15,11 @@
~ You should have received a copy of the GNU General Public License
~ along with this program. If not, see <http://www.gnu.org/licenses/>.
-->
+<!DOCTYPE project [
+ <!ENTITY commonBuild SYSTEM "common/commonBuild.xml">
+]>
+<project name="GdbControl" default="compile">
-<project name="GdbControl" default="buildapp">
+ &commonBuild;
- <property file="module.properties" />
-
- <!-- Sets module.version to something very reasonable, depending on whether we're in trunk, tags, branches or somewhere else. -->
- <basename property="dir.version" file="${user.dir}" />
- <dirname property="parent" file="${user.dir}" />
- <basename property="parentRegion" file="${parent}" />
- <exec outputproperty="svnversion" executable="svnversion">
- <env key="LC_ALL" value="C" />
- </exec>
- <condition property="module.version" value="trunk-${svnversion}">
- <equals arg1="trunk" arg2="${dir.version}" />
- </condition>
- <condition property="module.version" value="branch-${dir.version}-${svnversion}">
- <equals arg1="branches" arg2="${parentRegion}" />
- </condition>
- <condition property="module.version" value="${dir.version}">
- <equals arg1="tags" arg2="${parentRegion}" />
- </condition>
- <property name="module.version" value="${parentRegion}-${dir.version}-${svnversion}" />
-
- <taskdef name="pack200" classpath="common/antlib/Pack200Task.jar" classname="com.sun.tools.apache.ant.pack200.Pack200Task" />
-
- <target
- name = "clean"
- description = "Cleans Sandbox"
- >
- <delete dir="classes" />
- <delete dir="docs" />
- </target>
-
- <target
- name = "compile"
- description = "Compiles production classes"
- >
- <mkdir dir="classes/production/${module.shortname}" />
- <javac
- srcdir="src/prj"
- destdir="classes/production/${module.shortname}"
- encoding="utf-8"
- source="1.5"
- target="1.5"
- >
- <classpath>
- <fileset dir="lib" includes="*.jar" excludes="LICENSE-*.jar" />
- <fileset dir="common/lib" includes="*.jar" excludes="LICENSE-*.jar" />
- </classpath>
- </javac>
- <copy
- todir="classes/production/${module.shortname}"
- >
- <fileset dir="src/prj" includes="**/*.properties" excludes="test/**/*.properties" />
- <fileset dir="src/prj" includes="META-INF/services/**" />
- </copy>
- <copy
- todir="classes/production/${module.shortname}"
- >
- <fileset dir="lib" includes="LICENSE-*" />
- <fileset dir="." includes="COPYING" />
- </copy>
- </target>
-
- <target
- name = "dist"
- description = "Packs distribution archives."
- depends = "clean, compile"
- >
- <delete dir="dist" />
- <mkdir dir="dist" />
- <property name="distName" value="dist/${module.name}-${module.version}" />
- <parallel>
- <tar tarfile="${distName}.src.tar">
- <tarfileset dir="." prefix="${module.name}-${module.version}">
- <include name="src/**" />
- <include name="build.xml" />
- </tarfileset>
- </tar>
- <zip destfile="${distName}.src.zip">
- <zipfileset dir="." prefix="${module.name}-${module.version}">
- <include name="src/**" />
- <include name="build.xml" />
- </zipfileset>
- </zip>
- <jar destfile="${distName}.src.jar">
- <zipfileset dir="." prefix="${module.name}-${module.version}">
- <include name="src/**" />
- <include name="build.xml" />
- </zipfileset>
- </jar>
- <jar destfile="${distName}.jar">
- <zipfileset dir="classes/production/${module.shortname}"/>
- <manifest>
- <attribute name="Main-Class" value="${module.main.class}" />
- <attribute name="Class-Path" value="lib/annotations.jar lib/japi-lib-lang-0.1.jar lib/japi-lib-swing-about-0.1.jar lib/japi-lib-swing-action-0.1.jar" />
- <attribute name="Implementation-Title" value="${module.name}" />
- <attribute name="Implementation-Vendor" value="Christian Hujer + the JAPI Developers" />
- <attribute name="Implementation-Version" value="${module.version}" />
- <attribute name="Implementation-URL" value="http://sourceforge.net/projects/japi/" />
- </manifest>
- </jar>
- <tar tarfile="${distName}.doc.tar">
- <tarfileset dir="." prefix="${module.name}-${module.version}">
- <include name="docs/**" />
- <include name="build.xml" />
- </tarfileset>
- </tar>
- <zip destfile="${distName}.doc.zip">
- <zipfileset dir="." prefix="${module.name}-${module.version}">
- <include name="docs/**" />
- <include name="build.xml" />
- </zipfileset>
- </zip>
- <jar destfile="${distName}.doc.jar">
- <zipfileset dir="." prefix="${module.name}-${module.version}">
- <include name="docs/**" />
- </zipfileset>
- </jar>
- </parallel>
- <parallel>
- <gzip src="${distName}.src.tar" destfile="${distName}.src.tar.gz" />
- <bzip2 src="${distName}.src.tar" destfile="${distName}.src.tar.bz2" />
- <gzip src="${distName}.doc.tar" destfile="${distName}.doc.tar.gz" />
- <bzip2 src="${distName}.doc.tar" destfile="${distName}.doc.tar.bz2" />
- <pack200
- src="${distName}.jar"
- destfile="${distName}.pack.gz"
- gzipoutput="true"
- stripdebug="true"
- effort="9"
- keepfileorder="false"
- modificationtime="latest"
- deflatehint="false"
- />
- </parallel>
- <delete file="${distName}.src.tar" />
- <delete file="${distName}.doc.tar" />
- </target>
-
- <target
- name = "doc"
- description = "Creates public javadoc documentation."
- >
- <mkdir dir="docs/api" />
- <!--copy todir="docs/api" file="src/doc/api/public/copyright.html" />
- <copy todir="docs/api" file="src/doc/api/public/.htaccess" /-->
- <javadoc
- destdir = "docs/api"
- access = "protected"
- author = "yes"
- version = "yes"
- locale = "en_US"
- use = "yes"
- splitindex = "yes"
- windowtitle = "JAPI Library ${module.title} ${module.version} API documentation"
- doctitle = "JAPI<br />Yet another Java API<br />Library ${module.title} ${module.version} API documentation"
- header = "JAPI Library ${module.title} ${module.version}<br />API Documentation"
- footer = "JAPI<br />Yet another Java API<br />Library ${module.title} ${module.version} API documentation"
- bottom = "<div style=" text-align:center;">© 2005-2006 Christian Hujer. All rights reserved. See <a href="{@docRoot}/copyright.html">copyright</a></div>"
- serialwarn = "yes"
- charset = "utf-8"
- docencoding = "utf-8"
- encoding = "utf-8"
- source = "1.5"
- linksource = "yes"
- link = "${user.javadoc.link}"
- >
- <!--
- overview = "src/overview.html"
- -->
- <classpath>
- <fileset dir="lib" includes="annotations.jar" />
- </classpath>
- <sourcepath>
- <pathelement path="${user.javadoc.javasrc}" />
- <pathelement path="src/prj" />
- </sourcepath>
- <packageset
- dir="src/prj"
- defaultexcludes="yes"
- >
- <include name="net/**" />
- </packageset>
- <taglet name="net.sf.japi.taglets.FixmeTaglet" path="${commonPath}/antlib/japi-lib-taglets-trunk.jar" />
- <taglet name="net.sf.japi.taglets.HistoryTaglet" path="${commonPath}/antlib/japi-lib-taglets-trunk.jar" />
- <taglet name="net.sf.japi.taglets.InvariantTaglet" path="${commonPath}/antlib/japi-lib-taglets-trunk.jar" />
- <taglet name="net.sf.japi.taglets.NoteTaglet" path="${commonPath}/antlib/japi-lib-taglets-trunk.jar" />
- <taglet name="net.sf.japi.taglets.PostconditionTaglet" path="${commonPath}/antlib/japi-lib-taglets-trunk.jar" />
- <taglet name="net.sf.japi.taglets.PreconditionTaglet" path="${commonPath}/antlib/japi-lib-taglets-trunk.jar" />
- <taglet name="net.sf.japi.taglets.ReturnValueTaglet" path="${commonPath}/antlib/japi-lib-taglets-trunk.jar" />
- <taglet name="net.sf.japi.taglets.TodoTaglet" path="${commonPath}/antlib/japi-lib-taglets-trunk.jar" />
- <taglet name="net.sf.japi.taglets.WarningTaglet" path="${commonPath}/antlib/japi-lib-taglets-trunk.jar" />
- <taglet name="net.sf.japi.taglets.XxxTaglet" path="${commonPath}/antlib/japi-lib-taglets-trunk.jar" />
- </javadoc>
- </target>
-
- <target
- name = "buildapp"
- description = "Creates executable jar"
- depends = "compile"
- >
- <property name="appName" value="${module.name}-${module.version}-app" />
- <jar destfile="${appName}.jar">
- <zipfileset dir="classes/production/${module.shortname}"/>
- <zipgroupfileset dir="lib" includes="*.jar" excludes="LICENSE-*.jar" />
- <manifest>
- <attribute name="Main-Class" value="${module.main.class}" />
- <!--attribute name="Class-Path" value="lib/annotations.jar lib/japi-lib-lang-0.1.jar lib/japi-lib-swing-about-0.1.jar lib/japi-lib-swing-action-0.1.jar" /-->
- <attribute name="Implementation-Title" value="${module.name}" />
- <attribute name="Implementation-Vendor" value="Christian Hujer + the JAPI Developers" />
- <attribute name="Implementation-Version" value="${module.version}" />
- <attribute name="Implementation-URL" value="http://sourceforge.net/projects/japi/" />
- </manifest>
- </jar>
- </target>
-
</project>
Modified: tools/gdbControl/trunk/module.properties
===================================================================
--- tools/gdbControl/trunk/module.properties 2009-02-15 22:06:52 UTC (rev 910)
+++ tools/gdbControl/trunk/module.properties 2009-02-15 22:35:34 UTC (rev 911)
@@ -19,4 +19,6 @@
name=GdbCobtrol
shortname=GdbCobtrol
title=GdbCobtrol
+package=net.sf.japi.gdbcontrol
+package.path=net/sf/japi/gdbcontrol
main.class=net.sf.japi.tools.gdbcontrol.ComWithGdb
Modified: tools/jgrep/trunk/build.xml
===================================================================
--- tools/jgrep/trunk/build.xml 2009-02-15 22:06:52 UTC (rev 910)
+++ tools/jgrep/trunk/build.xml 2009-02-15 22:35:34 UTC (rev 911)
@@ -15,210 +15,11 @@
~ You should have received a copy of the GNU General Public License
~ along with this program. If not, see <http://www.gnu.org/licenses/>.
-->
+<!DOCTYPE project [
+ <!ENTITY commonBuild SYSTEM "common/commonBuild.xml">
+]>
+<project name="JGrep" default="compile">
-<project name="Replacer" default="compile">
+ &commonBuild;
- <property name="module.version" value="0.1" />
- <property name="module.name" value="Replacer" />
- <property name="module.shortname" value="Replacer" />
- <property name="module.title" value="Replacer" />
- <property name="module.main.class" value="net.sf.japi.tools.replacer.Replacer" />
-
- <taskdef name="pack200" classpath="common/antlib/Pack200Task.jar" classname="com.sun.tools.apache.ant.pack200.Pack200Task" />
-
- <target
- name = "clean"
- description = "Cleans Sandbox"
- >
- <delete dir="classes" />
- <delete dir="docs" />
- </target>
-
- <target
- name = "compile"
- description = "Compiles production classes"
- >
- <mkdir dir="classes/production/${module.shortname}" />
- <mkdir dir="classes/test/${module.shortname}" />
- <javac
- srcdir="src/prj"
- destdir="classes/production/${module.shortname}"
- encoding="utf-8"
- source="1.5"
- target="1.5"
- >
- <classpath>
- <fileset dir="lib" includes="*.jar" excludes="LICENSE-*.jar" />
- <fileset dir="common/lib" includes="*.jar" excludes="LICENSE-*.jar" />
- </classpath>
- <exclude name="test/**/*.java" />
- </javac>
- <copy
- todir="classes/production/${module.shortname}"
- >
- <fileset dir="src/prj" includes="**/*.properties" excludes="test/**/*.properties" />
- <fileset dir="src/prj" includes="META-INF/services/**" />
- </copy>
- <copy
- todir="classes/production/${module.shortname}"
- >
- <fileset dir="lib" includes="LICENSE-*" />
- <fileset dir="." includes="COPYING" />
- </copy>
- </target>
-
- <target
- name = "dist"
- description = "Packs distribution archives."
- depends = "clean, compile"
- >
- <!--depends = "clean, compile, doc"
- -->
- <delete dir="dist" />
- <mkdir dir="dist" />
- <property name="distName" value="dist/${module.name}-${module.version}" />
- <parallel>
- <tar tarfile="${distName}.src.tar">
- <tarfileset dir="." prefix="${module.name}-${module.version}">
- <include name="src/**" />
- <include name="build.xml" />
- </tarfileset>
- </tar>
- <zip destfile="${distName}.src.zip">
- <zipfileset dir="." prefix="${module.name}-${module.version}">
- <include name="src/**" />
- <include name="build.xml" />
- </zipfileset>
- </zip>
- <jar destfile="${distName}.src.jar">
- <zipfileset dir="." prefix="${module.name}-${module.version}">
- <include name="src/**" />
- <include name="build.xml" />
- </zipfileset>
- </jar>
- <jar destfile="${distName}.jar">
- <zipfileset dir="classes/production/${module.shortname}"/>
- <manifest>
- <attribute name="Main-Class" value="${module.main.class}" />
- <attribute name="Class-Path" value="lib/annotations.jar lib/japi-lib-lang-0.1.jar lib/japi-lib-swing-about-0.1.jar lib/japi-lib-swing-action-0.1.jar" />
- <attribute name="Implementation-Title" value="${module.name}" />
- <attribute name="Implementation-Vendor" value="Christian Hujer + the JAPI Developers" />
- <attribute name="Implementation-Version" value="${module.version}" />
- <attribute name="Implementation-URL" value="http://sourceforge.net/projects/japi/" />
- </manifest>
- </jar>
- <tar tarfile="${distName}.doc.tar">
- <tarfileset dir="." prefix="${module.name}-${module.version}">
- <include name="docs/**" />
- <include name="build.xml" />
- </tarfileset>
- </tar>
- <zip destfile="${distName}.doc.zip">
- <zipfileset dir="." prefix="${module.name}-${module.version}">
- <include name="docs/**" />
- <include name="build.xml" />
- </zipfileset>
- </zip>
- <jar destfile="${distName}.doc.jar">
- <zipfileset dir="." prefix="${module.name}-${module.version}">
- <include name="docs/**" />
- </zipfileset>
- </jar>
- </parallel>
- <parallel>
- <gzip src="${distName}.src.tar" destfile="${distName}.src.tar.gz" />
- <bzip2 src="${distName}.src.tar" destfile="${distName}.sr...
[truncated message content] |
|
From: <chr...@us...> - 2009-03-01 20:36:41
|
Revision: 1207
http://japi.svn.sourceforge.net/japi/?rev=1207&view=rev
Author: christianhujer
Date: 2009-03-01 20:36:29 +0000 (Sun, 01 Mar 2009)
Log Message:
-----------
Updated IntelliJ IDEa module files to new settings.
Modified Paths:
--------------
libs/argparser/trunk/libs-argparser.iml
libs/finance/trunk/libs-finance.iml
libs/io/trunk/libs-io.iml
libs/lang/trunk/libs-lang.iml
libs/logging/trunk/libs-logging.iml
libs/midi/trunk/midi.iml
libs/net/trunk/libs-net.iml
libs/registry/trunk/libs-registry.iml
libs/swing-about/trunk/libs-swing-about.iml
libs/swing-action/trunk/libs-swing-action.iml
libs/swing-app/trunk/libs-swing-app.iml
libs/swing-bookmarks/trunk/libs-swing-bookmarks.iml
libs/swing-extlib/trunk/libs-swing-extlib.iml
libs/swing-font/trunk/libs-swing-font.iml
libs/swing-keyprefs/trunk/libs-swing-keyprefs.iml
libs/swing-list/trunk/libs-swing-list.iml
libs/swing-misc/trunk/libs-swing-misc.iml
libs/swing-prefs/trunk/libs-swing-prefs.iml
libs/swing-proxyprefs/trunk/libs-swing-proxyprefs.iml
libs/swing-recent/trunk/libs-swing-recent.iml
libs/swing-tod/trunk/libs-swing-tod.iml
libs/swing-treetable/trunk/libs-swing-treetable.iml
libs/taglets/trunk/libs-taglets.iml
libs/util/trunk/libs-util.iml
libs/xml/trunk/libs-xml.iml
progs/batcher/trunk/Batcher.iml
progs/cardlearn/trunk/cardlearn.iml
progs/jeduca/trunk/JEduca.iml
progs/jhexedit/trunk/jhexedit.iml
progs/jhexview/trunk/jhexview.iml
progs/jirus/trunk/jirus.iml
progs/jtype/trunk/jtype.iml
progs/midilearn/trunk/midilearn.iml
progs/pffhtrain/trunk/pffhtrain.iml
progs/textedit/trunk/textedit.iml
tools/archStat/trunk/archStat.iml
tools/cstyle/trunk/cstyle.iml
tools/dircount/trunk/dircount.iml
tools/findLongestPath/trunk/findLongestPath.iml
tools/fontbrowser/trunk/fontbrowser.iml
tools/gdbControl/trunk/gdbControl.iml
tools/jgrep/trunk/jgrep.iml
tools/jwget/trunk/jwget.iml
tools/keystrokes/trunk/keystrokes.iml
tools/mail/trunk/mail.iml
tools/midiDeviceLister/trunk/midiDeviceLister.iml
tools/midiMonitor/trunk/midiMonitor.iml
tools/prefsbrowser/trunk/prefsbrowser.iml
tools/replacer/trunk/replacer.iml
tools/scriptEngineLister/trunk/scriptEngineLister.iml
tools/scriptInterpreter/trunk/scriptInterpreter.iml
tools/string2bytes/trunk/string2bytes.iml
tools/todoScanner/trunk/todoScanner.iml
Modified: libs/argparser/trunk/libs-argparser.iml
===================================================================
--- libs/argparser/trunk/libs-argparser.iml 2009-03-01 19:36:11 UTC (rev 1206)
+++ libs/argparser/trunk/libs-argparser.iml 2009-03-01 20:36:29 UTC (rev 1207)
@@ -12,7 +12,7 @@
<orderEntry type="module-library">
<library>
<CLASSES>
- <root url="jar://$MODULE_DIR$/common/lib/annotations.jar!/" />
+ <root url="jar://$MODULE_DIR$/lib/annotations.jar!/" />
</CLASSES>
<JAVADOC />
<SOURCES />
Modified: libs/finance/trunk/libs-finance.iml
===================================================================
--- libs/finance/trunk/libs-finance.iml 2009-03-01 19:36:11 UTC (rev 1206)
+++ libs/finance/trunk/libs-finance.iml 2009-03-01 20:36:29 UTC (rev 1207)
@@ -12,7 +12,7 @@
<orderEntry type="module-library">
<library>
<CLASSES>
- <root url="jar://$MODULE_DIR$/common/lib/annotations.jar!/" />
+ <root url="jar://$MODULE_DIR$/lib/annotations.jar!/" />
</CLASSES>
<JAVADOC />
<SOURCES />
Modified: libs/io/trunk/libs-io.iml
===================================================================
--- libs/io/trunk/libs-io.iml 2009-03-01 19:36:11 UTC (rev 1206)
+++ libs/io/trunk/libs-io.iml 2009-03-01 20:36:29 UTC (rev 1207)
@@ -12,7 +12,7 @@
<orderEntry type="module-library">
<library>
<CLASSES>
- <root url="jar://$MODULE_DIR$/common/lib/annotations.jar!/" />
+ <root url="jar://$MODULE_DIR$/lib/annotations.jar!/" />
</CLASSES>
<JAVADOC />
<SOURCES />
Modified: libs/lang/trunk/libs-lang.iml
===================================================================
--- libs/lang/trunk/libs-lang.iml 2009-03-01 19:36:11 UTC (rev 1206)
+++ libs/lang/trunk/libs-lang.iml 2009-03-01 20:36:29 UTC (rev 1207)
@@ -12,7 +12,7 @@
<orderEntry type="module-library">
<library>
<CLASSES>
- <root url="jar://$MODULE_DIR$/common/lib/annotations.jar!/" />
+ <root url="jar://$MODULE_DIR$/lib/annotations.jar!/" />
</CLASSES>
<JAVADOC />
<SOURCES />
Modified: libs/logging/trunk/libs-logging.iml
===================================================================
--- libs/logging/trunk/libs-logging.iml 2009-03-01 19:36:11 UTC (rev 1206)
+++ libs/logging/trunk/libs-logging.iml 2009-03-01 20:36:29 UTC (rev 1207)
@@ -12,7 +12,7 @@
<orderEntry type="module-library">
<library>
<CLASSES>
- <root url="jar://$MODULE_DIR$/common/lib/annotations.jar!/" />
+ <root url="jar://$MODULE_DIR$/lib/annotations.jar!/" />
</CLASSES>
<JAVADOC />
<SOURCES />
Modified: libs/midi/trunk/midi.iml
===================================================================
--- libs/midi/trunk/midi.iml 2009-03-01 19:36:11 UTC (rev 1206)
+++ libs/midi/trunk/midi.iml 2009-03-01 20:36:29 UTC (rev 1207)
@@ -12,7 +12,7 @@
<orderEntry type="module-library">
<library>
<CLASSES>
- <root url="jar://$MODULE_DIR$/common/lib/annotations.jar!/" />
+ <root url="jar://$MODULE_DIR$/lib/annotations.jar!/" />
</CLASSES>
<JAVADOC />
<SOURCES />
Modified: libs/net/trunk/libs-net.iml
===================================================================
--- libs/net/trunk/libs-net.iml 2009-03-01 19:36:11 UTC (rev 1206)
+++ libs/net/trunk/libs-net.iml 2009-03-01 20:36:29 UTC (rev 1207)
@@ -12,7 +12,7 @@
<orderEntry type="module-library">
<library>
<CLASSES>
- <root url="jar://$MODULE_DIR$/common/lib/annotations.jar!/" />
+ <root url="jar://$MODULE_DIR$/lib/annotations.jar!/" />
</CLASSES>
<JAVADOC />
<SOURCES />
Modified: libs/registry/trunk/libs-registry.iml
===================================================================
--- libs/registry/trunk/libs-registry.iml 2009-03-01 19:36:11 UTC (rev 1206)
+++ libs/registry/trunk/libs-registry.iml 2009-03-01 20:36:29 UTC (rev 1207)
@@ -12,7 +12,7 @@
<orderEntry type="module-library">
<library>
<CLASSES>
- <root url="jar://$MODULE_DIR$/common/lib/annotations.jar!/" />
+ <root url="jar://$MODULE_DIR$/lib/annotations.jar!/" />
</CLASSES>
<JAVADOC />
<SOURCES />
Modified: libs/swing-about/trunk/libs-swing-about.iml
===================================================================
--- libs/swing-about/trunk/libs-swing-about.iml 2009-03-01 19:36:11 UTC (rev 1206)
+++ libs/swing-about/trunk/libs-swing-about.iml 2009-03-01 20:36:29 UTC (rev 1207)
@@ -13,7 +13,7 @@
<orderEntry type="module-library">
<library>
<CLASSES>
- <root url="jar://$MODULE_DIR$/common/lib/annotations.jar!/" />
+ <root url="jar://$MODULE_DIR$/lib/annotations.jar!/" />
</CLASSES>
<JAVADOC />
<SOURCES />
Modified: libs/swing-action/trunk/libs-swing-action.iml
===================================================================
--- libs/swing-action/trunk/libs-swing-action.iml 2009-03-01 19:36:11 UTC (rev 1206)
+++ libs/swing-action/trunk/libs-swing-action.iml 2009-03-01 20:36:29 UTC (rev 1207)
@@ -13,7 +13,7 @@
<orderEntry type="module-library">
<library>
<CLASSES>
- <root url="jar://$MODULE_DIR$/common/lib/annotations.jar!/" />
+ <root url="jar://$MODULE_DIR$/lib/annotations.jar!/" />
</CLASSES>
<JAVADOC />
<SOURCES />
Modified: libs/swing-app/trunk/libs-swing-app.iml
===================================================================
--- libs/swing-app/trunk/libs-swing-app.iml 2009-03-01 19:36:11 UTC (rev 1206)
+++ libs/swing-app/trunk/libs-swing-app.iml 2009-03-01 20:36:29 UTC (rev 1207)
@@ -12,7 +12,7 @@
<orderEntry type="module-library">
<library>
<CLASSES>
- <root url="jar://$MODULE_DIR$/common/lib/annotations.jar!/" />
+ <root url="jar://$MODULE_DIR$/lib/annotations.jar!/" />
</CLASSES>
<JAVADOC />
<SOURCES />
Modified: libs/swing-bookmarks/trunk/libs-swing-bookmarks.iml
===================================================================
--- libs/swing-bookmarks/trunk/libs-swing-bookmarks.iml 2009-03-01 19:36:11 UTC (rev 1206)
+++ libs/swing-bookmarks/trunk/libs-swing-bookmarks.iml 2009-03-01 20:36:29 UTC (rev 1207)
@@ -12,7 +12,7 @@
<orderEntry type="module-library">
<library>
<CLASSES>
- <root url="jar://$MODULE_DIR$/common/lib/annotations.jar!/" />
+ <root url="jar://$MODULE_DIR$/lib/annotations.jar!/" />
</CLASSES>
<JAVADOC />
<SOURCES />
Modified: libs/swing-extlib/trunk/libs-swing-extlib.iml
===================================================================
--- libs/swing-extlib/trunk/libs-swing-extlib.iml 2009-03-01 19:36:11 UTC (rev 1206)
+++ libs/swing-extlib/trunk/libs-swing-extlib.iml 2009-03-01 20:36:29 UTC (rev 1207)
@@ -12,7 +12,7 @@
<orderEntry type="module-library">
<library>
<CLASSES>
- <root url="jar://$MODULE_DIR$/common/lib/annotations.jar!/" />
+ <root url="jar://$MODULE_DIR$/lib/annotations.jar!/" />
</CLASSES>
<JAVADOC />
<SOURCES />
Modified: libs/swing-font/trunk/libs-swing-font.iml
===================================================================
--- libs/swing-font/trunk/libs-swing-font.iml 2009-03-01 19:36:11 UTC (rev 1206)
+++ libs/swing-font/trunk/libs-swing-font.iml 2009-03-01 20:36:29 UTC (rev 1207)
@@ -12,7 +12,7 @@
<orderEntry type="module-library">
<library>
<CLASSES>
- <root url="jar://$MODULE_DIR$/common/lib/annotations.jar!/" />
+ <root url="jar://$MODULE_DIR$/lib/annotations.jar!/" />
</CLASSES>
<JAVADOC />
<SOURCES />
Modified: libs/swing-keyprefs/trunk/libs-swing-keyprefs.iml
===================================================================
--- libs/swing-keyprefs/trunk/libs-swing-keyprefs.iml 2009-03-01 19:36:11 UTC (rev 1206)
+++ libs/swing-keyprefs/trunk/libs-swing-keyprefs.iml 2009-03-01 20:36:29 UTC (rev 1207)
@@ -12,7 +12,7 @@
<orderEntry type="module-library">
<library>
<CLASSES>
- <root url="jar://$MODULE_DIR$/common/lib/annotations.jar!/" />
+ <root url="jar://$MODULE_DIR$/lib/annotations.jar!/" />
</CLASSES>
<JAVADOC />
<SOURCES />
Modified: libs/swing-list/trunk/libs-swing-list.iml
===================================================================
--- libs/swing-list/trunk/libs-swing-list.iml 2009-03-01 19:36:11 UTC (rev 1206)
+++ libs/swing-list/trunk/libs-swing-list.iml 2009-03-01 20:36:29 UTC (rev 1207)
@@ -12,7 +12,7 @@
<orderEntry type="module-library">
<library>
<CLASSES>
- <root url="jar://$MODULE_DIR$/common/lib/annotations.jar!/" />
+ <root url="jar://$MODULE_DIR$/lib/annotations.jar!/" />
</CLASSES>
<JAVADOC />
<SOURCES />
Modified: libs/swing-misc/trunk/libs-swing-misc.iml
===================================================================
--- libs/swing-misc/trunk/libs-swing-misc.iml 2009-03-01 19:36:11 UTC (rev 1206)
+++ libs/swing-misc/trunk/libs-swing-misc.iml 2009-03-01 20:36:29 UTC (rev 1207)
@@ -12,7 +12,7 @@
<orderEntry type="module-library">
<library>
<CLASSES>
- <root url="jar://$MODULE_DIR$/common/lib/annotations.jar!/" />
+ <root url="jar://$MODULE_DIR$/lib/annotations.jar!/" />
</CLASSES>
<JAVADOC />
<SOURCES />
Modified: libs/swing-prefs/trunk/libs-swing-prefs.iml
===================================================================
--- libs/swing-prefs/trunk/libs-swing-prefs.iml 2009-03-01 19:36:11 UTC (rev 1206)
+++ libs/swing-prefs/trunk/libs-swing-prefs.iml 2009-03-01 20:36:29 UTC (rev 1207)
@@ -12,7 +12,7 @@
<orderEntry type="module-library">
<library>
<CLASSES>
- <root url="jar://$MODULE_DIR$/common/lib/annotations.jar!/" />
+ <root url="jar://$MODULE_DIR$/lib/annotations.jar!/" />
</CLASSES>
<JAVADOC />
<SOURCES />
Modified: libs/swing-proxyprefs/trunk/libs-swing-proxyprefs.iml
===================================================================
--- libs/swing-proxyprefs/trunk/libs-swing-proxyprefs.iml 2009-03-01 19:36:11 UTC (rev 1206)
+++ libs/swing-proxyprefs/trunk/libs-swing-proxyprefs.iml 2009-03-01 20:36:29 UTC (rev 1207)
@@ -12,7 +12,7 @@
<orderEntry type="module-library">
<library>
<CLASSES>
- <root url="jar://$MODULE_DIR$/common/lib/annotations.jar!/" />
+ <root url="jar://$MODULE_DIR$/lib/annotations.jar!/" />
</CLASSES>
<JAVADOC />
<SOURCES />
Modified: libs/swing-recent/trunk/libs-swing-recent.iml
===================================================================
--- libs/swing-recent/trunk/libs-swing-recent.iml 2009-03-01 19:36:11 UTC (rev 1206)
+++ libs/swing-recent/trunk/libs-swing-recent.iml 2009-03-01 20:36:29 UTC (rev 1207)
@@ -12,7 +12,7 @@
<orderEntry type="module-library">
<library>
<CLASSES>
- <root url="jar://$MODULE_DIR$/common/lib/annotations.jar!/" />
+ <root url="jar://$MODULE_DIR$/lib/annotations.jar!/" />
</CLASSES>
<JAVADOC />
<SOURCES />
Modified: libs/swing-tod/trunk/libs-swing-tod.iml
===================================================================
--- libs/swing-tod/trunk/libs-swing-tod.iml 2009-03-01 19:36:11 UTC (rev 1206)
+++ libs/swing-tod/trunk/libs-swing-tod.iml 2009-03-01 20:36:29 UTC (rev 1207)
@@ -12,7 +12,7 @@
<orderEntry type="module-library">
<library>
<CLASSES>
- <root url="jar://$MODULE_DIR$/common/lib/annotations.jar!/" />
+ <root url="jar://$MODULE_DIR$/lib/annotations.jar!/" />
</CLASSES>
<JAVADOC />
<SOURCES />
Modified: libs/swing-treetable/trunk/libs-swing-treetable.iml
===================================================================
--- libs/swing-treetable/trunk/libs-swing-treetable.iml 2009-03-01 19:36:11 UTC (rev 1206)
+++ libs/swing-treetable/trunk/libs-swing-treetable.iml 2009-03-01 20:36:29 UTC (rev 1207)
@@ -12,7 +12,7 @@
<orderEntry type="module-library">
<library>
<CLASSES>
- <root url="jar://$MODULE_DIR$/common/lib/annotations.jar!/" />
+ <root url="jar://$MODULE_DIR$/lib/annotations.jar!/" />
</CLASSES>
<JAVADOC />
<SOURCES />
Modified: libs/taglets/trunk/libs-taglets.iml
===================================================================
--- libs/taglets/trunk/libs-taglets.iml 2009-03-01 19:36:11 UTC (rev 1206)
+++ libs/taglets/trunk/libs-taglets.iml 2009-03-01 20:36:29 UTC (rev 1207)
@@ -12,7 +12,7 @@
<orderEntry type="module-library">
<library>
<CLASSES>
- <root url="jar://$MODULE_DIR$/common/lib/annotations.jar!/" />
+ <root url="jar://$MODULE_DIR$/lib/annotations.jar!/" />
</CLASSES>
<JAVADOC />
<SOURCES />
Modified: libs/util/trunk/libs-util.iml
===================================================================
--- libs/util/trunk/libs-util.iml 2009-03-01 19:36:11 UTC (rev 1206)
+++ libs/util/trunk/libs-util.iml 2009-03-01 20:36:29 UTC (rev 1207)
@@ -12,7 +12,7 @@
<orderEntry type="module-library">
<library>
<CLASSES>
- <root url="jar://$MODULE_DIR$/common/lib/annotations.jar!/" />
+ <root url="jar://$MODULE_DIR$/lib/annotations.jar!/" />
</CLASSES>
<JAVADOC />
<SOURCES />
Modified: libs/xml/trunk/libs-xml.iml
===================================================================
--- libs/xml/trunk/libs-xml.iml 2009-03-01 19:36:11 UTC (rev 1206)
+++ libs/xml/trunk/libs-xml.iml 2009-03-01 20:36:29 UTC (rev 1207)
@@ -12,7 +12,7 @@
<orderEntry type="module-library">
<library>
<CLASSES>
- <root url="jar://$MODULE_DIR$/common/lib/annotations.jar!/" />
+ <root url="jar://$MODULE_DIR$/lib/annotations.jar!/" />
</CLASSES>
<JAVADOC />
<SOURCES />
Modified: progs/batcher/trunk/Batcher.iml
===================================================================
--- progs/batcher/trunk/Batcher.iml 2009-03-01 19:36:11 UTC (rev 1206)
+++ progs/batcher/trunk/Batcher.iml 2009-03-01 20:36:29 UTC (rev 1207)
@@ -12,7 +12,7 @@
<orderEntry type="module-library">
<library>
<CLASSES>
- <root url="jar://$MODULE_DIR$/common/lib/annotations.jar!/" />
+ <root url="jar://$MODULE_DIR$/lib/annotations.jar!/" />
</CLASSES>
<JAVADOC />
<SOURCES />
Modified: progs/cardlearn/trunk/cardlearn.iml
===================================================================
--- progs/cardlearn/trunk/cardlearn.iml 2009-03-01 19:36:11 UTC (rev 1206)
+++ progs/cardlearn/trunk/cardlearn.iml 2009-03-01 20:36:29 UTC (rev 1207)
@@ -12,7 +12,7 @@
<orderEntry type="module-library">
<library>
<CLASSES>
- <root url="jar://$MODULE_DIR$/common/lib/annotations.jar!/" />
+ <root url="jar://$MODULE_DIR$/lib/annotations.jar!/" />
</CLASSES>
<JAVADOC />
<SOURCES />
Modified: progs/jeduca/trunk/JEduca.iml
===================================================================
--- progs/jeduca/trunk/JEduca.iml 2009-03-01 19:36:11 UTC (rev 1206)
+++ progs/jeduca/trunk/JEduca.iml 2009-03-01 20:36:29 UTC (rev 1207)
@@ -12,7 +12,7 @@
<orderEntry type="module-library">
<library>
<CLASSES>
- <root url="jar://$MODULE_DIR$/common/lib/annotations.jar!/" />
+ <root url="jar://$MODULE_DIR$/lib/annotations.jar!/" />
</CLASSES>
<JAVADOC />
<SOURCES />
Modified: progs/jhexedit/trunk/jhexedit.iml
===================================================================
--- progs/jhexedit/trunk/jhexedit.iml 2009-03-01 19:36:11 UTC (rev 1206)
+++ progs/jhexedit/trunk/jhexedit.iml 2009-03-01 20:36:29 UTC (rev 1207)
@@ -12,7 +12,7 @@
<orderEntry type="module-library">
<library>
<CLASSES>
- <root url="jar://$MODULE_DIR$/common/lib/annotations.jar!/" />
+ <root url="jar://$MODULE_DIR$/lib/annotations.jar!/" />
</CLASSES>
<JAVADOC />
<SOURCES />
Modified: progs/jhexview/trunk/jhexview.iml
===================================================================
--- progs/jhexview/trunk/jhexview.iml 2009-03-01 19:36:11 UTC (rev 1206)
+++ progs/jhexview/trunk/jhexview.iml 2009-03-01 20:36:29 UTC (rev 1207)
@@ -12,7 +12,7 @@
<orderEntry type="module-library">
<library>
<CLASSES>
- <root url="jar://$MODULE_DIR$/common/lib/annotations.jar!/" />
+ <root url="jar://$MODULE_DIR$/lib/annotations.jar!/" />
</CLASSES>
<JAVADOC />
<SOURCES />
Modified: progs/jirus/trunk/jirus.iml
===================================================================
--- progs/jirus/trunk/jirus.iml 2009-03-01 19:36:11 UTC (rev 1206)
+++ progs/jirus/trunk/jirus.iml 2009-03-01 20:36:29 UTC (rev 1207)
@@ -12,7 +12,7 @@
<orderEntry type="module-library">
<library>
<CLASSES>
- <root url="jar://$MODULE_DIR$/common/lib/annotations.jar!/" />
+ <root url="jar://$MODULE_DIR$/lib/annotations.jar!/" />
</CLASSES>
<JAVADOC />
<SOURCES />
Modified: progs/jtype/trunk/jtype.iml
===================================================================
--- progs/jtype/trunk/jtype.iml 2009-03-01 19:36:11 UTC (rev 1206)
+++ progs/jtype/trunk/jtype.iml 2009-03-01 20:36:29 UTC (rev 1207)
@@ -12,7 +12,7 @@
<orderEntry type="module-library">
<library>
<CLASSES>
- <root url="jar://$MODULE_DIR$/common/lib/annotations.jar!/" />
+ <root url="jar://$MODULE_DIR$/lib/annotations.jar!/" />
</CLASSES>
<JAVADOC />
<SOURCES />
Modified: progs/midilearn/trunk/midilearn.iml
===================================================================
--- progs/midilearn/trunk/midilearn.iml 2009-03-01 19:36:11 UTC (rev 1206)
+++ progs/midilearn/trunk/midilearn.iml 2009-03-01 20:36:29 UTC (rev 1207)
@@ -12,7 +12,7 @@
<orderEntry type="module-library">
<library>
<CLASSES>
- <root url="jar://$MODULE_DIR$/common/lib/annotations.jar!/" />
+ <root url="jar://$MODULE_DIR$/lib/annotations.jar!/" />
</CLASSES>
<JAVADOC />
<SOURCES />
Modified: progs/pffhtrain/trunk/pffhtrain.iml
===================================================================
--- progs/pffhtrain/trunk/pffhtrain.iml 2009-03-01 19:36:11 UTC (rev 1206)
+++ progs/pffhtrain/trunk/pffhtrain.iml 2009-03-01 20:36:29 UTC (rev 1207)
@@ -12,7 +12,7 @@
<orderEntry type="module-library">
<library>
<CLASSES>
- <root url="jar://$MODULE_DIR$/common/lib/annotations.jar!/" />
+ <root url="jar://$MODULE_DIR$/lib/annotations.jar!/" />
</CLASSES>
<JAVADOC />
<SOURCES />
Modified: progs/textedit/trunk/textedit.iml
===================================================================
--- progs/textedit/trunk/textedit.iml 2009-03-01 19:36:11 UTC (rev 1206)
+++ progs/textedit/trunk/textedit.iml 2009-03-01 20:36:29 UTC (rev 1207)
@@ -12,7 +12,7 @@
<orderEntry type="module-library">
<library>
<CLASSES>
- <root url="jar://$MODULE_DIR$/common/lib/annotations.jar!/" />
+ <root url="jar://$MODULE_DIR$/lib/annotations.jar!/" />
</CLASSES>
<JAVADOC />
<SOURCES />
Modified: tools/archStat/trunk/archStat.iml
===================================================================
--- tools/archStat/trunk/archStat.iml 2009-03-01 19:36:11 UTC (rev 1206)
+++ tools/archStat/trunk/archStat.iml 2009-03-01 20:36:29 UTC (rev 1207)
@@ -12,7 +12,7 @@
<orderEntry type="module-library">
<library>
<CLASSES>
- <root url="jar://$MODULE_DIR$/common/lib/annotations.jar!/" />
+ <root url="jar://$MODULE_DIR$/lib/annotations.jar!/" />
</CLASSES>
<JAVADOC />
<SOURCES />
Modified: tools/cstyle/trunk/cstyle.iml
===================================================================
--- tools/cstyle/trunk/cstyle.iml 2009-03-01 19:36:11 UTC (rev 1206)
+++ tools/cstyle/trunk/cstyle.iml 2009-03-01 20:36:29 UTC (rev 1207)
@@ -12,7 +12,7 @@
<orderEntry type="module-library">
<library>
<CLASSES>
- <root url="jar://$MODULE_DIR$/common/lib/annotations.jar!/" />
+ <root url="jar://$MODULE_DIR$/lib/annotations.jar!/" />
</CLASSES>
<JAVADOC />
<SOURCES />
Modified: tools/dircount/trunk/dircount.iml
===================================================================
--- tools/dircount/trunk/dircount.iml 2009-03-01 19:36:11 UTC (rev 1206)
+++ tools/dircount/trunk/dircount.iml 2009-03-01 20:36:29 UTC (rev 1207)
@@ -12,7 +12,7 @@
<orderEntry type="module-library">
<library>
<CLASSES>
- <root url="jar://$MODULE_DIR$/common/lib/annotations.jar!/" />
+ <root url="jar://$MODULE_DIR$/lib/annotations.jar!/" />
</CLASSES>
<JAVADOC />
<SOURCES />
Modified: tools/findLongestPath/trunk/findLongestPath.iml
===================================================================
--- tools/findLongestPath/trunk/findLongestPath.iml 2009-03-01 19:36:11 UTC (rev 1206)
+++ tools/findLongestPath/trunk/findLongestPath.iml 2009-03-01 20:36:29 UTC (rev 1207)
@@ -12,7 +12,7 @@
<orderEntry type="module-library">
<library>
<CLASSES>
- <root url="jar://$MODULE_DIR$/common/lib/annotations.jar!/" />
+ <root url="jar://$MODULE_DIR$/lib/annotations.jar!/" />
</CLASSES>
<JAVADOC />
<SOURCES />
Modified: tools/fontbrowser/trunk/fontbrowser.iml
===================================================================
--- tools/fontbrowser/trunk/fontbrowser.iml 2009-03-01 19:36:11 UTC (rev 1206)
+++ tools/fontbrowser/trunk/fontbrowser.iml 2009-03-01 20:36:29 UTC (rev 1207)
@@ -12,7 +12,7 @@
<orderEntry type="module-library">
<library>
<CLASSES>
- <root url="jar://$MODULE_DIR$/common/lib/annotations.jar!/" />
+ <root url="jar://$MODULE_DIR$/lib/annotations.jar!/" />
</CLASSES>
<JAVADOC />
<SOURCES />
Modified: tools/gdbControl/trunk/gdbControl.iml
===================================================================
--- tools/gdbControl/trunk/gdbControl.iml 2009-03-01 19:36:11 UTC (rev 1206)
+++ tools/gdbControl/trunk/gdbControl.iml 2009-03-01 20:36:29 UTC (rev 1207)
@@ -12,7 +12,7 @@
<orderEntry type="module-library">
<library>
<CLASSES>
- <root url="jar://$MODULE_DIR$/common/lib/annotations.jar!/" />
+ <root url="jar://$MODULE_DIR$/lib/annotations.jar!/" />
</CLASSES>
<JAVADOC />
<SOURCES />
Modified: tools/jgrep/trunk/jgrep.iml
===================================================================
--- tools/jgrep/trunk/jgrep.iml 2009-03-01 19:36:11 UTC (rev 1206)
+++ tools/jgrep/trunk/jgrep.iml 2009-03-01 20:36:29 UTC (rev 1207)
@@ -12,7 +12,7 @@
<orderEntry type="module-library">
<library>
<CLASSES>
- <root url="jar://$MODULE_DIR$/common/lib/annotations.jar!/" />
+ <root url="jar://$MODULE_DIR$/lib/annotations.jar!/" />
</CLASSES>
<JAVADOC />
<SOURCES />
Modified: tools/jwget/trunk/jwget.iml
===================================================================
--- tools/jwget/trunk/jwget.iml 2009-03-01 19:36:11 UTC (rev 1206)
+++ tools/jwget/trunk/jwget.iml 2009-03-01 20:36:29 UTC (rev 1207)
@@ -12,7 +12,7 @@
<orderEntry type="module-library">
<library>
<CLASSES>
- <root url="jar://$MODULE_DIR$/common/lib/annotations.jar!/" />
+ <root url="jar://$MODULE_DIR$/lib/annotations.jar!/" />
</CLASSES>
<JAVADOC />
<SOURCES />
Modified: tools/keystrokes/trunk/keystrokes.iml
===================================================================
--- tools/keystrokes/trunk/keystrokes.iml 2009-03-01 19:36:11 UTC (rev 1206)
+++ tools/keystrokes/trunk/keystrokes.iml 2009-03-01 20:36:29 UTC (rev 1207)
@@ -12,7 +12,7 @@
<orderEntry type="module-library">
<library>
<CLASSES>
- <root url="jar://$MODULE_DIR$/common/lib/annotations.jar!/" />
+ <root url="jar://$MODULE_DIR$/lib/annotations.jar!/" />
</CLASSES>
<JAVADOC />
<SOURCES />
Modified: tools/mail/trunk/mail.iml
===================================================================
--- tools/mail/trunk/mail.iml 2009-03-01 19:36:11 UTC (rev 1206)
+++ tools/mail/trunk/mail.iml 2009-03-01 20:36:29 UTC (rev 1207)
@@ -12,7 +12,7 @@
<orderEntry type="module-library">
<library>
<CLASSES>
- <root url="jar://$MODULE_DIR$/common/lib/annotations.jar!/" />
+ <root url="jar://$MODULE_DIR$/lib/annotations.jar!/" />
</CLASSES>
<JAVADOC />
<SOURCES />
Modified: tools/midiDeviceLister/trunk/midiDeviceLister.iml
===================================================================
--- tools/midiDeviceLister/trunk/midiDeviceLister.iml 2009-03-01 19:36:11 UTC (rev 1206)
+++ tools/midiDeviceLister/trunk/midiDeviceLister.iml 2009-03-01 20:36:29 UTC (rev 1207)
@@ -12,7 +12,7 @@
<orderEntry type="module-library">
<library>
<CLASSES>
- <root url="jar://$MODULE_DIR$/common/lib/annotations.jar!/" />
+ <root url="jar://$MODULE_DIR$/lib/annotations.jar!/" />
</CLASSES>
<JAVADOC />
<SOURCES />
Modified: tools/midiMonitor/trunk/midiMonitor.iml
===================================================================
--- tools/midiMonitor/trunk/midiMonitor.iml 2009-03-01 19:36:11 UTC (rev 1206)
+++ tools/midiMonitor/trunk/midiMonitor.iml 2009-03-01 20:36:29 UTC (rev 1207)
@@ -12,7 +12,7 @@
<orderEntry type="module-library">
<library>
<CLASSES>
- <root url="jar://$MODULE_DIR$/common/lib/annotations.jar!/" />
+ <root url="jar://$MODULE_DIR$/lib/annotations.jar!/" />
</CLASSES>
<JAVADOC />
<SOURCES />
Modified: tools/prefsbrowser/trunk/prefsbrowser.iml
===================================================================
--- tools/prefsbrowser/trunk/prefsbrowser.iml 2009-03-01 19:36:11 UTC (rev 1206)
+++ tools/prefsbrowser/trunk/prefsbrowser.iml 2009-03-01 20:36:29 UTC (rev 1207)
@@ -12,7 +12,7 @@
<orderEntry type="module-library">
<library>
<CLASSES>
- <root url="jar://$MODULE_DIR$/common/lib/annotations.jar!/" />
+ <root url="jar://$MODULE_DIR$/lib/annotations.jar!/" />
</CLASSES>
<JAVADOC />
<SOURCES />
Modified: tools/replacer/trunk/replacer.iml
===================================================================
--- tools/replacer/trunk/replacer.iml 2009-03-01 19:36:11 UTC (rev 1206)
+++ tools/replacer/trunk/replacer.iml 2009-03-01 20:36:29 UTC (rev 1207)
@@ -12,7 +12,7 @@
<orderEntry type="module-library">
<library>
<CLASSES>
- <root url="jar://$MODULE_DIR$/common/lib/annotations.jar!/" />
+ <root url="jar://$MODULE_DIR$/lib/annotations.jar!/" />
</CLASSES>
<JAVADOC />
<SOURCES />
Modified: tools/scriptEngineLister/trunk/scriptEngineLister.iml
======================================================...
[truncated message content] |