All Downloads are FREE. Search and download functionalities are using the official Maven repository.

other.build.xml Maven / Gradle / Ivy

Go to download

The INGENIAS Meta-Editor core. It is a set of facilities to generate an editor from a detailed xml description

There is a newer version: 1.0.9
Show newest version
<?xml version="1.0" encoding="UTF-8"?>

<!-- ====================================================================== -->
<!-- Ant build file (http://ant.apache.org/) for Ant 1.6.2 or above.        -->
<!-- ====================================================================== -->

<project name="editor" default="runide" basedir="." xmlns:artifact="antlib:org.apache.maven.artifact.ant">

  <!-- ====================================================================== -->
  <!-- Import maven-build.xml into the current project                        -->
  <!-- ====================================================================== -->

  <import file="iaf-generated-build.xml"/>
  
  <!-- ====================================================================== -->
  <!-- Help target                                                            -->
  <!-- ====================================================================== -->
  <target name="help">
    <echo message="Please run: $ant -projecthelp"/>
  </target>
  
  <target name="runide" depends="compileproject">
		<java fork="true" failonerror="true" maxmemory="512m"
    classname="ingenias.editor.IDE">
			<jvmarg value="-Xmx1024m"/>
			<classpath>
				<pathelement path="${ingeniasmavenclasspath}" />
				<pathelement path="${mavenclasspath}" />
				<pathelement path="${maven.build.outputDir}" />
			</classpath>
		</java>
	</target>

	
	<target name="testgui" depends="compileproject">

        <java fork="true" failonerror="true" maxmemory="128m"
              classname="ingenias.editor.utils.XMLGUITester">
                <arg value="${specfile}"/>
		<classpath>			  
			<pathelement path="${ingeniasmavenclasspath}" />
				<pathelement path="${mavenclasspath}" />
				<pathelement path="${maven.build.outputDir}" />      
		</classpath>

        </java>

</target>


<target name="runidespec" depends="compileproject">

        <java fork="true" failonerror="true" maxmemory="300m"
              classname="ingenias.editor.IDE">
                <arg value="${specfile}"/>
		<classpath>			  
			<pathelement path="${maven.build.outputDir}" />     
			<path refid="build.classpath" />        
		</classpath>

        </java>

</target>


</project>




© 2015 - 2024 Weber Informatics LLC | Privacy Policy