mirror of https://github.com/x64dbg/deps
270 lines
9.7 KiB
XML
270 lines
9.7 KiB
XML
<project name="Ceylon CLI module" default="publish" basedir=".">
|
|
|
|
<property file="../user-build.properties" />
|
|
<property file="../common-build.properties" />
|
|
<property file="../lib/build.properties"/>
|
|
<property file="build.properties" />
|
|
|
|
<property name="src" location="src" />
|
|
<property name="test.src" location="test/src" />
|
|
<property name="test.reports" location="${build.dir}/test-reports" />
|
|
|
|
<!-- Local repository -->
|
|
<property name="ceylon.cli.src" value="${ceylon.cli.dir}/org.eclipse.ceylon.cli-${module.org.eclipse.ceylon.cli.version}.src" />
|
|
<property name="ceylon.cli.repo" value="${ceylon.repo.dir}/${ceylon.cli.dir}" />
|
|
<property name="ceylon.cli.dist" value="${build.dist}/${ceylon.cli.dir}" />
|
|
|
|
<!-- Classpath for the build tools. -->
|
|
<path id="classpath">
|
|
<pathelement path="${markdownpapers.lib}" />
|
|
<pathelement path="${ceylon.common.lib}" />
|
|
<pathelement path="${ceylon.model.lib}" />
|
|
<pathelement path="${ceylon.module-resolver.lib}" />
|
|
</path>
|
|
|
|
<path id="test.run.classpath">
|
|
<path refid="classpath" />
|
|
<pathelement path="${build.classes}" />
|
|
<pathelement path="${hamcrest.lib}" />
|
|
<pathelement path="${junit.lib}" />
|
|
</path>
|
|
|
|
<!-- ################################################################## -->
|
|
|
|
<target name="clean">
|
|
<delete dir="${build.dir}" />
|
|
</target>
|
|
|
|
<!-- project compilation -->
|
|
<target name="compile" description="compile Ceylon cli">
|
|
<mkdir dir="${build.classes}" />
|
|
<javac
|
|
srcdir="${src}"
|
|
destdir="${build.classes}"
|
|
debug="true"
|
|
encoding="UTF8"
|
|
classpathref="classpath"
|
|
target="${compile.java.target}"
|
|
source="${compile.java.source}"
|
|
bootclasspath="${compile.java.bootclasspath}">
|
|
<include name="**/*.java" />
|
|
</javac>
|
|
<copy todir="${build.classes}">
|
|
<fileset dir="${src}">
|
|
<include name="**/*" />
|
|
<exclude name="**/*.java" />
|
|
</fileset>
|
|
</copy>
|
|
</target>
|
|
|
|
<target name="defcurrentcommit">
|
|
<if>
|
|
<available file="../.git" type="dir"/>
|
|
<then>
|
|
<exec executable="git" failonerror="yes" outputproperty="currentcommit">
|
|
<arg value="rev-parse"/>
|
|
<arg value="--short"/>
|
|
<arg value="HEAD"/>
|
|
</exec>
|
|
</then>
|
|
<else>
|
|
<property name="currentcommit" value="${buildid}" />
|
|
</else>
|
|
</if>
|
|
</target>
|
|
|
|
<target name="ceylon-cli.jar" depends="compile">
|
|
<mkdir dir="${build.dist.repo}/${ceylon.cli.dir}"/>
|
|
<mkdir dir="${build.bin}"/>
|
|
<tstamp>
|
|
<format property="qualifier" timezone="GMT" pattern="yyyyMMdd-HHmm"/>
|
|
</tstamp>
|
|
<jar destfile="${build.dist.repo}/${ceylon.cli.jar}">
|
|
<fileset dir="${build.classes}">
|
|
</fileset>
|
|
<manifest>
|
|
<attribute name="Bundle-SymbolicName" value="org.eclipse.ceylon.cli"/>
|
|
<attribute name="Bundle-Version" value="${module.org.eclipse.ceylon.cli.osgi.version}-${qualifier}"/>
|
|
</manifest>
|
|
</jar>
|
|
<antcall target="sha1sum">
|
|
<param name="file" value="${build.dist.repo}/${ceylon.cli.jar}" />
|
|
</antcall>
|
|
</target>
|
|
|
|
<target name="build" depends="ceylon-cli.jar">
|
|
<mkdir dir="${build.bin}" />
|
|
<copy todir="${build.bin}">
|
|
<fileset dir="${basedir}/bin">
|
|
</fileset>
|
|
<filterset>
|
|
<filter token="ceylon-version" value="${ceylon.version}"/>
|
|
</filterset>
|
|
</copy>
|
|
</target>
|
|
|
|
<!-- constant to declare a file binary for checksumsum -->
|
|
<property name="checksum.binary-prefix" value=" *" />
|
|
<!-- Helper target, used to create a sha1 checksum file -->
|
|
<!-- Requires 'file' as a parameter. -->
|
|
<target name="sha1sum">
|
|
<fail unless="file" />
|
|
<fail if="filename" />
|
|
<fail if="value" />
|
|
<basename file="${file}" property="filename" />
|
|
<checksum file="${file}" property="value" algorithm="sha1" />
|
|
<echo file="${file}.sha1" message="${value}" />
|
|
</target>
|
|
|
|
<!-- Repository targets -->
|
|
<target name="init.repo" description="Init local ceylon repository and add ceylon.cli">
|
|
<mkdir dir="${ceylon.cli.repo}" />
|
|
</target>
|
|
|
|
<target name="clean.repo" description="Clean local ceylon repository">
|
|
<delete file="${ceylon.cli.lib}" />
|
|
<delete file="${ceylon.cli.lib}.sha1" />
|
|
<delete file="${ceylon.repo.dir}/${ceylon.cli.src}" />
|
|
<delete file="${ceylon.repo.dir}/${ceylon.cli.src}.sha1" />
|
|
</target>
|
|
|
|
<target name="bundle-proxy">
|
|
<basename file="${archivePath}" property="archiveFileName"/>
|
|
<property name="proxy-project" value="${eclipse.project.path}/required-bundle-proxies/${archiveFileName}"/>
|
|
<mkdir dir="${proxy-project}"/>
|
|
<delete failonerror="false" dir="${proxy-project}/META-INF"/>
|
|
<copy toDir="${proxy-project}" overwrite="true">
|
|
<zipfileset src="${archivePath}" includes="META-INF/**"/>
|
|
<fileset file="${archivePath}"/>
|
|
</copy>
|
|
<manifest file="${proxy-project}/META-INF/MANIFEST.MF" mode="update">
|
|
<attribute name="Bundle-Classpath" value="${archiveFileName}"/>
|
|
</manifest>
|
|
<echo file="${proxy-project}/.project"><![CDATA[<projectDescription>
|
|
<name>${archiveFileName}</name>
|
|
<comment></comment>
|
|
<projects>
|
|
</projects>
|
|
<buildSpec>
|
|
<buildCommand>
|
|
<name>org.eclipse.jdt.core.javabuilder</name>
|
|
<arguments>
|
|
</arguments>
|
|
</buildCommand>
|
|
<buildCommand>
|
|
<name>org.eclipse.pde.ManifestBuilder</name>
|
|
<arguments>
|
|
</arguments>
|
|
</buildCommand>
|
|
<buildCommand>
|
|
<name>org.eclipse.pde.SchemaBuilder</name>
|
|
<arguments>
|
|
</arguments>
|
|
</buildCommand>
|
|
</buildSpec>
|
|
<natures>
|
|
<nature>org.eclipse.pde.PluginNature</nature>
|
|
<nature>org.eclipse.jdt.core.javanature</nature>
|
|
</natures>
|
|
<linkedResources>
|
|
<link>
|
|
<name>project</name>
|
|
<type>2</type>
|
|
<locationURI>PARENT-3-PROJECT_LOC/ceylon/cli</locationURI>
|
|
</link>
|
|
</linkedResources>
|
|
</projectDescription>]]></echo>
|
|
<echo file="${proxy-project}/.classpath"><![CDATA[<?xml version="1.0" encoding="UTF-8"?>
|
|
<classpath>
|
|
<classpathentry kind="con" path="org.eclipse.jdt.launching.JRE_CONTAINER"/>
|
|
<classpathentry kind="con" path="org.eclipse.pde.core.requiredPlugins"/>
|
|
<classpathentry exported="true" kind="lib" path="${archiveFileName}" sourcepath="project"/>
|
|
<classpathentry kind="output" path="bin"/>
|
|
</classpath>]]></echo>
|
|
<echo file="${proxy-project}/.gitignore"><![CDATA[/META-INF
|
|
/${archiveFileName}
|
|
/.classpath
|
|
/.project
|
|
/.gitignore
|
|
/bin/]]></echo>
|
|
</target>
|
|
|
|
<target name="ide-quick-internal">
|
|
<antcall target="bundle-proxy">
|
|
<param name="archivePath" value="${ceylon.cli.lib}"/>
|
|
</antcall>
|
|
</target>
|
|
|
|
<target name="dist" depends="build">
|
|
<zip destfile="${build.dist.repo}/${ceylon.cli.src}">
|
|
<fileset dir="${src}">
|
|
<include name="**/*.java"/>
|
|
</fileset>
|
|
</zip>
|
|
<antcall target="sha1sum">
|
|
<param name="file" value="${build.dist.repo}/${ceylon.cli.src}"/>
|
|
</antcall>
|
|
</target>
|
|
|
|
<target name="publish"
|
|
depends="clean.repo,init.repo,dist,publish-internal"
|
|
description="Publish both type checker and ceylon.language template module">
|
|
</target>
|
|
|
|
<target name="publish-internal" depends="init.repo">
|
|
<copy todir="${ceylon.repo.dir}" overwrite="true">
|
|
<fileset dir="${build.dist.repo}" />
|
|
</copy>
|
|
<copy todir="${ceylon.bin.dir}" overwrite="true">
|
|
<fileset dir="${build.bin}" />
|
|
</copy>
|
|
</target>
|
|
|
|
<target name="compile.tests">
|
|
<mkdir dir="${build.classes}" />
|
|
<javac
|
|
srcdir="${test.src}"
|
|
destdir="${build.classes}"
|
|
debug="true"
|
|
encoding="UTF8"
|
|
classpathref="test.run.classpath"
|
|
target="${compile.java.target}"
|
|
source="${compile.java.source}"
|
|
bootclasspath="${compile.java.bootclasspath}">
|
|
<include name="**/*.java" />
|
|
</javac>
|
|
<copy todir="${build.classes}">
|
|
<fileset dir="${test.src}">
|
|
<exclude name="**/*.java" />
|
|
</fileset>
|
|
</copy>
|
|
</target>
|
|
|
|
<target name="test"
|
|
depends="publish,compile.tests,test-quick">
|
|
</target>
|
|
|
|
<target name="test-quick" depends="compile.tests">
|
|
<mkdir dir="${test.reports}" />
|
|
<junit printsummary="yes" haltonfailure="no" failureproperty="test.failed" dir="${basedir}">
|
|
<classpath refid="test.run.classpath" />
|
|
<syspropertyset>
|
|
<propertyref prefix="ceylon.tests." />
|
|
</syspropertyset>
|
|
|
|
<formatter type="xml" />
|
|
<test
|
|
name="org.eclipse.ceylon.common.tool.AllCliTests"
|
|
fork="yes"
|
|
todir="${test.reports}" />
|
|
</junit>
|
|
<junitreport todir="${test.reports}">
|
|
<fileset dir="${test.reports}">
|
|
<include name="TEST-*.xml" />
|
|
</fileset>
|
|
<report format="frames" todir="${test.reports}" />
|
|
</junitreport>
|
|
<fail message="Test failure detected, check test results." if="test.failed" />
|
|
</target>
|
|
</project>
|