From: <ls...@us...> - 2009-04-30 09:18:40
|
Revision: 5370 http://jnode.svn.sourceforge.net/jnode/?rev=5370&view=rev Author: lsantha Date: 2009-04-30 09:18:39 +0000 (Thu, 30 Apr 2009) Log Message: ----------- Updated Idea project files and build targets for the cli subproject project. Modified Paths: -------------- trunk/JNode.ipr trunk/all/build.xml Added Paths: ----------- trunk/cli/cli.iml Property Changed: ---------------- trunk/cli/ Modified: trunk/JNode.ipr =================================================================== --- trunk/JNode.ipr 2009-04-30 04:12:27 UTC (rev 5369) +++ trunk/JNode.ipr 2009-04-30 09:18:39 UTC (rev 5370) @@ -358,6 +358,7 @@ <modules> <module fileurl="file://$PROJECT_DIR$/all/all.iml" filepath="$PROJECT_DIR$/all/all.iml" /> <module fileurl="file://$PROJECT_DIR$/builder/builder.iml" filepath="$PROJECT_DIR$/builder/builder.iml" /> + <module fileurl="file://$PROJECT_DIR$/cli/cli.iml" filepath="$PROJECT_DIR$/cli/cli.iml" /> <module fileurl="file://$PROJECT_DIR$/core/core.iml" filepath="$PROJECT_DIR$/core/core.iml" /> <module fileurl="file://$PROJECT_DIR$/distr/distr.iml" filepath="$PROJECT_DIR$/distr/distr.iml" /> <module fileurl="file://$PROJECT_DIR$/fs/fs.iml" filepath="$PROJECT_DIR$/fs/fs.iml" /> Modified: trunk/all/build.xml =================================================================== --- trunk/all/build.xml 2009-04-30 04:12:27 UTC (rev 5369) +++ trunk/all/build.xml 2009-04-30 09:18:39 UTC (rev 5370) @@ -629,6 +629,9 @@ <target name="javadoc" description="generate documentation of all java source files"> <jnode.javadoc destdir="${build.dir}/javadoc/full"> <sourcepath> + <pathelement location="${root.dir}/builder/src/builder"/> + <pathelement location="${root.dir}/builder/src/configure"/> + <pathelement location="${root.dir}/cli/src/commands"/> <pathelement location="${root.dir}/core/src/classlib"/> <pathelement location="${root.dir}/core/src/classpath/ext"/> <pathelement location="${root.dir}/core/src/classpath/vm"/> @@ -767,6 +770,7 @@ <header update="on" headerFile="${root.dir}/all/template/header.txt"> <fileset dir="${root.dir}/builder/src/builder" includes="**/*.java"/> + <fileset dir="${root.dir}/cli/src/commands" includes="**/*.java"/> <fileset dir="${root.dir}/core/src/classpath/ext" includes="**/*.java"/> <fileset dir="${root.dir}/core/src/classpath/vm" includes="**/*.java" excludes="gnu/classpath/jdwp/VMFrame.java, @@ -1060,6 +1064,7 @@ <checkstyle config="jnode_checks.xml"> <fileset dir="../builder/src/builder" includes="**/*.java"/> <fileset dir="../builder/src/configure" includes="**/*.java"/> + <fileset dir="../cli/src/commands" includes="**/*.java"/> <fileset dir="../core/src/core" includes="**/*.java"/> <fileset dir="../core/src/driver" includes="**/*.java"/> <fileset dir="../core/src/test" includes="**/*.java"/> Property changes on: trunk/cli ___________________________________________________________________ Added: svn:ignore + build Added: trunk/cli/cli.iml =================================================================== --- trunk/cli/cli.iml (rev 0) +++ trunk/cli/cli.iml 2009-04-30 09:18:39 UTC (rev 5370) @@ -0,0 +1,35 @@ +<?xml version="1.0" encoding="UTF-8"?> +<module relativePaths="true" type="JAVA_MODULE" version="4"> + <component name="NewModuleRootManager" inherit-compiler-output="false"> + <output url="file://$MODULE_DIR$/build/classes" /> + <exclude-output /> + <content url="file://$MODULE_DIR$"> + <sourceFolder url="file://$MODULE_DIR$/src/commands" isTestSource="false" /> + </content> + <orderEntry type="inheritedJdk" /> + <orderEntry type="sourceFolder" forTests="false" /> + <orderEntry type="module" module-name="shell" /> + <orderEntry type="module" module-name="core" /> + <orderEntry type="module" module-name="net" /> + <orderEntry type="module-library"> + <library> + <CLASSES> + <root url="jar://$MODULE_DIR$/../core/lib/log4j-1.2.8.jar!/" /> + </CLASSES> + <JAVADOC /> + <SOURCES /> + </library> + </orderEntry> + <orderEntry type="module-library"> + <library> + <CLASSES> + <root url="jar://$MODULE_DIR$/../net/lib/oncrpc.jar!/" /> + </CLASSES> + <JAVADOC /> + <SOURCES /> + </library> + </orderEntry> + <orderEntry type="module" module-name="fs" /> + </component> +</module> + This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |