krysalis-menu krysalis-menu.ipr,NONE,1.1 root.iml,NONE,1.1 build.xml,1.1,1.2

Glen Stampoultzis <[email protected]> Tue, 07 Dec 2004 02:46:22 +0000
Newsgroups gmane.comp.krysalis.metamorphosis.cvs
Message-ID <[email protected]>
Update of /cvsroot/metamorphosis/krysalis-menu
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv32045

Modified Files:
	build.xml 
Added Files:
	krysalis-menu.ipr root.iml 
Log Message:
Some updates

--- NEW FILE: root.iml ---
<?xml version="1.0" encoding="UTF-8"?>
<module version="4" relativePaths="true" type="JAVA_MODULE">
  <component name="ModuleRootManager" />
  <component name="NewModuleRootManager">
    <output url="file://$MODULE_DIR$/classes" />
    <exclude-output />
    <exclude-exploded />
    <content url="file://$MODULE_DIR$">
      <excludeFolder url="file://$MODULE_DIR$/component" />
      <excludeFolder url="file://$MODULE_DIR$/example" />
      <excludeFolder url="file://$MODULE_DIR$/forrestdocs" />
    </content>
    <orderEntry type="inheritedJdk" />
    <orderEntry type="sourceFolder" forTests="false" />
    <orderEntryProperties />
  </component>
</module>


Index: build.xml
===================================================================
RCS file: /cvsroot/metamorphosis/krysalis-menu/build.xml,v
retrieving revision 1.1
retrieving revision 1.2
diff -C2 -d -r1.1 -r1.2
*** build.xml	25 Nov 2004 10:57:50 -0000	1.1
--- build.xml	7 Dec 2004 02:46:20 -0000	1.2
***************
*** 1,14 ****
  <project name="Krysalis Menu" basedir="." default="all" >
  
!     <!-- All build files except this one are generated automatically by IntelliJ Idea
!          and so should not be modified directly.  Luckily we can extend things
!          easily through the wonders of import -->
!     <import file="krysalismenu.xml"/>
  
      <target name="jar.module.component" depends="compile.module.component" description="Produce component jar file">
!         <jar destfile="${module.component.basedir}/component.jar" duplicate="preserve">
            <fileset dir="${module.component.basedir}/classes"/>
          </jar>
      </target>
  
! </project>
\ No newline at end of file
--- 1,78 ----
  <project name="Krysalis Menu" basedir="." default="all" >
  
!     <property file=".build.properties"/>
! 
!     <!-- Uncomment the following property if no tests compilation is needed -->
!     <!--
!     <property name="skip.tests" value="true"/>
!      -->
! 
!     <!-- Compiler options -->
! 
!     <property name="compiler.debug" value="on"/>
!     <property name="compiler.generate.no.warnings" value="off"/>
!     <property name="compiler.args" value=""/>
!     <property name="compiler.max.memory" value="128m"/>
!     <patternset id="compiler.excluded"/>
!     <patternset id="compiler.resources">
!         <include name="**/?*.properties"/>
!         <include name="**/?*.xml"/>
!         <include name="**/?*.html"/>
!         <include name="**/?*.gif"/>
!         <include name="**/?*.png"/>
!         <include name="**/?*.jpeg"/>
!         <include name="**/?*.library"/>
!         <include name="**/?*.page"/>
!         <include name="**/?*.jwc"/>
!         <include name="**/?*.script"/>
!     </patternset>
! 
!     <!-- JDK definitions -->
!     <property environment="env"/>
!     <property name="jdk.home" value="${env.JAVA_HOME}"/>
!     <path id="jdk.classpath">
!         <fileset dir="${jdk.home}">
!             <include name="jre/lib/*.jar"/>
!         </fileset>
!     </path>
! 
!     <property name="project.jdk.home" value="${jdk.home}"/>
!     <property name="project.jdk.classpath" value="jdk.classpath"/>
!     <!-- Project Libraries -->
!     <!-- Global Libraries -->
! 
!     <path id="library.tapestry.classpath">
!         <pathelement location="${tapestry.home}/framework/module-lib/compile/**/*.jar"/>
!         <pathelement location="${tapestry.home}/contrib/module-lib/compile/**/*.jar"/>
!     </path>
! 
!     <!-- Application Server Libraries -->
! 
!     <path id="library.tomcat.classpath">
!         <pathelement location="${tomcat.home}/common/lib/servlet-api.jar"/>
!         <pathelement location="${tomcat.home}/common/lib/jsp-api.jar"/>
!     </path>
! 
!     <import file="${basedir}/forrestdocs/module_documentation.xml"/>
! 
!     <import file="${basedir}/component/module_component.xml"/>
! 
!     <import file="${basedir}/example/module_example.xml"/>
! 
!     <target name="init" description="Build initialization">
!         <!-- Perform any build initialization in this target -->
!     </target>
! 
!     <target name="clean" depends="clean.module.example, clean.module.documentation, clean.module.component" description="cleanup all"/>
! 
!     <target name="all" depends="init, clean, compile.module.component, j2ee.build.example, site" description="build all"/>
! 
  
      <target name="jar.module.component" depends="compile.module.component" description="Produce component jar file">
!         <jar destfile="${module.component.basedir}/krysalis-menu.jar" duplicate="preserve">
            <fileset dir="${module.component.basedir}/classes"/>
          </jar>
      </target>
  
! </project>
! 

--- NEW FILE: krysalis-menu.ipr ---
<?xml version="1.0" encoding="UTF-8"?>
<project version="4" relativePaths="false">
  <component name="AntConfiguration">
    <defaultAnt bundledAnt="true" />
    <buildFile url="file://$PROJECT_DIR$/build.xml">
      <additionalClassPath />
      <antReference projectDefault="true" />
      <customJdkName value="" />
      <maximumHeapSize value="128" />
      <properties />
    </buildFile>
  </component>
  <component name="CodeStyleSettingsManager">
    <option name="PER_PROJECT_SETTINGS" />
    <option name="USE_PER_PROJECT_SETTINGS" value="false" />
  </component>
  <component name="CompilerConfiguration">
    <option name="DEFAULT_COMPILER" value="Javac" />
    <option name="CLEAR_OUTPUT_DIRECTORY" value="true" />
    <option name="DEPLOY_AFTER_MAKE" value="0" />
    <resourceExtensions>
      <entry name=".+\.(properties|xml|html)" />
      <entry name=".+\.(gif|png|jpeg)" />
    </resourceExtensions>
    <wildcardResourcePatterns>
      <entry name="?*.properties" />
      <entry name="?*.xml" />
      <entry name="?*.html" />
      <entry name="?*.gif" />
      <entry name="?*.png" />
      <entry name="?*.jpeg" />
      <entry name="?*.page" />
      <entry name="?*.jwc" />
      <entry name="?*.library" />
      <entry name="?*.script" />
    </wildcardResourcePatterns>
  </component>
  <component name="DataSourceManagerImpl" />
  <component name="DependencyValidationManager" />
  <component name="EntryPointsManager">
    <entry_points />
  </component>
  <component name="ExportToHTMLSettings">
    <option name="PRINT_LINE_NUMBERS" value="false" />
    <option name="OPEN_IN_BROWSER" value="false" />
    <option name="OUTPUT_DIRECTORY" />
  </component>
  <component name="GUI Designer component loader factory" />
  <component name="JavacSettings">
    <option name="DEBUGGING_INFO" value="true" />
    <option name="GENERATE_NO_WARNINGS" value="false" />
    <option name="DEPRECATION" value="true" />
    <option name="ADDITIONAL_OPTIONS_STRING" value="" />
    <option name="MAXIMUM_HEAP_SIZE" value="128" />
    <option name="USE_GENERICS_COMPILER" value="false" />
  </component>
  <component name="JavadocGenerationManager">
    <option name="OUTPUT_DIRECTORY" />
    <option name="OPTION_SCOPE" value="protected" />
    <option name="OPTION_HIERARCHY" value="false" />
    <option name="OPTION_NAVIGATOR" value="false" />
    <option name="OPTION_INDEX" value="false" />
    <option name="OPTION_SEPARATE_INDEX" value="false" />
    <option name="OPTION_DOCUMENT_TAG_USE" value="false" />
    <option name="OPTION_DOCUMENT_TAG_AUTHOR" value="false" />
    <option name="OPTION_DOCUMENT_TAG_VERSION" value="false" />
    <option name="OPTION_DOCUMENT_TAG_DEPRECATED" value="false" />
    <option name="OPTION_DEPRECATED_LIST" value="false" />
    <option name="OTHER_OPTIONS" />
    <option name="HEAP_SIZE" />
    <option name="OPEN_IN_BROWSER" value="false" />
  </component>
  <component name="JikesSettings">
    <option name="JIKES_PATH" value="" />
    <option name="DEBUGGING_INFO" value="true" />
    <option name="DEPRECATION" value="true" />
    <option name="GENERATE_NO_WARNINGS" value="false" />
    <option name="IS_EMACS_ERRORS_MODE" value="true" />
    <option name="ADDITIONAL_OPTIONS_STRING" value="" />
  </component>
  <component name="Palette2">
    <group name="Swing">
      <item class="com.intellij.uiDesigner.HSpacer" tooltip-text="Horizontal Spacer" icon="/com/intellij/uiDesigner/icons/hspacer.png" removable="false">
        <default-constraints vsize-policy="1" hsize-policy="6" anchor="0" fill="1" />
      </item>
      <item class="com.intellij.uiDesigner.VSpacer" tooltip-text="Vertical Spacer" icon="/com/intellij/uiDesigner/icons/vspacer.png" removable="false">
        <default-constraints vsize-policy="6" hsize-policy="1" anchor="0" fill="2" />
      </item>
      <item class="javax.swing.JPanel" icon="/com/intellij/uiDesigner/icons/panel.png" removable="false">
        <default-constraints vsize-policy="3" hsize-policy="3" anchor="0" fill="3" />
      </item>
      <item class="javax.swing.JScrollPane" icon="/com/intellij/uiDesigner/icons/scrollPane.png" removable="false">
        <default-constraints vsize-policy="7" hsize-policy="7" anchor="0" fill="3" />
      </item>
      <item class="javax.swing.JButton" icon="/com/intellij/uiDesigner/icons/button.png" removable="false">
        <default-constraints vsize-policy="0" hsize-policy="3" anchor="0" fill="1" />
        <initial-values>
          <property name="text" value="Button" />
        </initial-values>
      </item>
      <item class="javax.swing.JRadioButton" icon="/com/intellij/uiDesigner/icons/radioButton.png" removable="false">
        <default-constraints vsize-policy="0" hsize-policy="3" anchor="8" fill="0" />
        <initial-values>
          <property name="text" value="RadioButton" />
        </initial-values>
      </item>
      <item class="javax.swing.JCheckBox" icon="/com/intellij/uiDesigner/icons/checkBox.png" removable="false">
        <default-constraints vsize-policy="0" hsize-policy="3" anchor="8" fill="0" />
        <initial-values>
          <property name="text" value="CheckBox" />
        </initial-values>
      </item>
      <item class="javax.swing.JLabel" icon="/com/intellij/uiDesigner/icons/label.png" removable="false">
        <default-constraints vsize-policy="0" hsize-policy="0" anchor="8" fill="0" />
        <initial-values>
          <property name="text" value="Label" />
        </initial-values>
      </item>
      <item class="javax.swing.JTextField" icon="/com/intellij/uiDesigner/icons/textField.png" removable="false">
        <default-constraints vsize-policy="0" hsize-policy="6" anchor="8" fill="1">
          <preferred-size width="150" height="-1" />
        </default-constraints>
      </item>
      <item class="javax.swing.JPasswordField" icon="/com/intellij/uiDesigner/icons/passwordField.png" removable="false">
        <default-constraints vsize-policy="0" hsize-policy="6" anchor="8" fill="1">
          <preferred-size width="150" height="-1" />
        </default-constraints>
      </item>
      <item class="javax.swing.JFormattedTextField" icon="/com/intellij/uiDesigner/icons/formattedTextField.png" removable="false">
        <default-constraints vsize-policy="0" hsize-policy="6" anchor="8" fill="1">
          <preferred-size width="150" height="-1" />
        </default-constraints>
      </item>
      <item class="javax.swing.JTextArea" icon="/com/intellij/uiDesigner/icons/textArea.png" removable="false">
        <default-constraints vsize-policy="6" hsize-policy="6" anchor="0" fill="3">
          <preferred-size width="150" height="50" />
        </default-constraints>
      </item>
      <item class="javax.swing.JTextPane" icon="/com/intellij/uiDesigner/icons/textPane.png" removable="false">
        <default-constraints vsize-policy="6" hsize-policy="6" anchor="0" fill="3">
          <preferred-size width="150" height="50" />
        </default-constraints>
      </item>
      <item class="javax.swing.JEditorPane" icon="/com/intellij/uiDesigner/icons/editorPane.png" removable="false">
        <default-constraints vsize-policy="6" hsize-policy="6" anchor="0" fill="3">
          <preferred-size width="150" height="50" />
        </default-constraints>
      </item>
      <item class="javax.swing.JComboBox" icon="/com/intellij/uiDesigner/icons/comboBox.png" removable="false">
        <default-constraints vsize-policy="0" hsize-policy="2" anchor="8" fill="1" />
      </item>
      <item class="javax.swing.JTable" icon="/com/intellij/uiDesigner/icons/table.png" removable="false">
        <default-constraints vsize-policy="6" hsize-policy="6" anchor="0" fill="3">
          <preferred-size width="150" height="50" />
        </default-constraints>
      </item>
      <item class="javax.swing.JList" icon="/com/intellij/uiDesigner/icons/list.png" removable="false">
        <default-constraints vsize-policy="6" hsize-policy="2" anchor="0" fill="3">
          <preferred-size width="150" height="50" />
        </default-constraints>
      </item>
      <item class="javax.swing.JTree" icon="/com/intellij/uiDesigner/icons/tree.png" removable="false">
        <default-constraints vsize-policy="6" hsize-policy="6" anchor="0" fill="3">
          <preferred-size width="150" height="50" />
        </default-constraints>
      </item>
      <item class="javax.swing.JTabbedPane" icon="/com/intellij/uiDesigner/icons/tabbedPane.png" removable="false">
        <default-constraints vsize-policy="3" hsize-policy="3" anchor="0" fill="3">
          <preferred-size width="200" height="200" />
        </default-constraints>
      </item>
      <item class="javax.swing.JSplitPane" icon="/com/intellij/uiDesigner/icons/splitPane.png" removable="false">
        <default-constraints vsize-policy="3" hsize-policy="3" anchor="0" fill="3">
          <preferred-size width="200" height="200" />
        </default-constraints>
      </item>
      <item class="javax.swing.JSpinner" icon="/com/intellij/uiDesigner/icons/spinner.png" removable="false">
        <default-constraints vsize-policy="0" hsize-policy="6" anchor="8" fill="1" />
      </item>
      <item class="javax.swing.JSlider" icon="/com/intellij/uiDesigner/icons/slider.png" removable="false">
        <default-constraints vsize-policy="0" hsize-policy="6" anchor="8" fill="1" />
      </item>
    </group>
  </component>
  <component name="ProjectModuleManager">
    <modules>
      <module fileurl="file://$PROJECT_DIR$/component/component.iml" filepath="$PROJECT_DIR$/component/component.iml" />
      <module fileurl="file://$PROJECT_DIR$/example/example.iml" filepath="$PROJECT_DIR$/example/example.iml" />
      <module fileurl="file://$PROJECT_DIR$/forrestdocs/forrestdocs.iml" filepath="$PROJECT_DIR$/forrestdocs/forrestdocs.iml" />
      <module fileurl="file://$PROJECT_DIR$/root.iml" filepath="$PROJECT_DIR$/root.iml" />
    </modules>
  </component>
  <component name="ProjectRootManager" version="2" assert-keyword="false" jdk-15="false" project-jdk-name="java version &quot;1.4.2_03&quot;" />
  <component name="Regex">
    <option name="pos1" value="218" />
    <option name="pos2" value="218" />
    <option name="pos3" value="162" />
    <option name="pos4" value="444" />
    <option name="pos5" value="162" />
    <option name="autoUpdate" value="true" />
    <option name="referenceOn" value="false" />
    <option name="referencePos" value="0" />
  </component>
  <component name="RmicSettings">
    <option name="IS_EANABLED" value="false" />
    <option name="DEBUGGING_INFO" value="true" />
    <option name="GENERATE_NO_WARNINGS" value="false" />
    <option name="GENERATE_IIOP_STUBS" value="false" />
    <option name="ADDITIONAL_OPTIONS_STRING" value="" />
  </component>
  <component name="TCPMON" />
  <component name="com.siyeh.metrics.MetricsReloaded">
    <option name="selectedProfile" value="Default" />
    <option name="autoscroll" value="false" />
  </component>
  <component name="libraryTable" />
  <component name="uidesigner-configuration">
    <option name="INSTRUMENT_CLASSES" value="true" />
    <option name="COPY_FORMS_RUNTIME_TO_OUTPUT" value="true" />
  </component>
</project>




-------------------------------------------------------
SF email is sponsored by - The IT Product Guide
Read honest & candid reviews on hundreds of IT Products from real users.
Discover which products truly live up to the hype. Start reading now. 
http://productguide.itmanagersjournal.com/