lama4j.1.1.1.source-code.build.xml Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of lama4j Show documentation
Show all versions of lama4j Show documentation
LaMa4J ("Lattice Manipulation for Java") is a set of Java classes that implement a number of lattices and lattice operations.
The newest version!
<project name="lama4j" default="jar" basedir="." xmlns:ivy="antlib:org.apache.ivy.ant" xmlns:artifact="antlib:org.apache.maven.artifact.ant"> <property name="build.sysclasspath" value="ignore"/> <property name="jars.dir" value="${basedir}/jars"/> <property file="build.properties"/> <property environment="env"/> <property name="ivy.pom.artifactId" value="lama4j" /> <property name="ivy.pom.version" value="${version}" /> <condition property="ivy.settings.file" value="${env.LOCAL_IVY_SETTINGS}"><isset property="env.LOCAL_IVY_SETTINGS"/></condition> <taskdef resource="org/apache/ivy/ant/antlib.xml" uri="antlib:org.apache.ivy.ant"/> <target name="ivy-setupjars" description="Downloads dependencies with ivy and generate report"> <ivy:retrieve symlink="true" sync="true" pattern="${jars.dir}/[conf]/[artifact].[ext]"/> <ivy:report todir="${dist}/ivy-report"/> </target> <target name="ivy-clean" description="Cleans ivy cache, jars dir and ivy installation"> <delete dir="${jars.dir}"/> </target> <target name="ivy-pom" description="Creates POM"> <ivy:resolve/> <ivy:deliver deliverpattern="${dist}/ivy.xml" pubrevision="${version}" status="release"/> <ivy:makepom ivyfile="${dist}/ivy.xml" templatefile="pom-model.xml" pomfile="pom.xml"> <dependency group="ch.qos.logback" artifact="logback-classic.jar" optional="true"/> </ivy:makepom> </target> <path id="compile.classpath"> <fileset dir="${jars.dir}/compile"/> </path> <path id="test.classpath"> <fileset dir="${jars.dir}/test"/> </path> <path id="project.classpath"> <fileset dir="${jars.dir}/runtime"/> </path> <!-- ************************************** WARNING: MAVEN SH*T ************************************** --> <!-- define Maven coordinates --> <property name="groupId" value="it.unimi.dsi" /> <property name="artifactId" value="lama4j" /> <property name="version" value="${version}" /> <!-- define artifacts' name, which follows the convention of Maven --> <property name="maven-jar" value="${dist}/lib/${artifactId}-${version}.jar" /> <property name="maven-javadoc-jar" value="${dist}/lib/${artifactId}-${version}-javadoc.jar" /> <property name="maven-sources-jar" value="${dist}/lib/${artifactId}-${version}-sources.jar" /> <!-- defined maven snapshots and staging repository id and url --> <property name="maven-snapshots-repository-id" value="sonatype-nexus-snapshots" /> <property name="maven-snapshots-repository-url" value="https://oss.sonatype.org/content/repositories/snapshots/" /> <property name="maven-staging-repository-id" value="sonatype-nexus-staging" /> <property name="maven-staging-repository-url" value="https://oss.sonatype.org/service/local/staging/deploy/maven2/" /> <target name="dist" depends="compile,javadoc" description="generate the distribution"> <!-- build the main artifact --> <jar jarfile="${maven-jar}" basedir="${build}" /> <!-- build the javadoc artifact (from symbolic link created in init) --> <jar jarfile="${maven-javadoc-jar}"> <fileset dir="${dist}/javadoc" /> </jar> <!-- build the sources artifact --> <jar jarfile="${maven-sources-jar}"> <fileset dir="." includes="COPYING,build.xml,build.properties,ivy.xml,${src}/it/**/*.java,${src}/**/*.html,${src}/**/*.png,${test}/it/**/*.java"/> </jar> </target> <target name="deploy" depends="dist,ivy-pom" description="deploy snapshot version to Maven snapshot repository"> <artifact:mvn> <arg value="org.apache.maven.plugins:maven-deploy-plugin:2.6:deploy-file" /> <arg value="-Durl=${maven-snapshots-repository-url}" /> <arg value="-DrepositoryId=${maven-snapshots-repository-id}" /> <arg value="-DpomFile=pom.xml" /> <arg value="-Dfile=${maven-jar}" /> </artifact:mvn> </target> <target name="stage" depends="dist,ivy-pom" description="deploy release version to Maven staging repository"> <!-- sign and deploy the main artifact --> <artifact:mvn> <arg value="org.apache.maven.plugins:maven-gpg-plugin:1.3:sign-and-deploy-file" /> <arg value="-Durl=${maven-staging-repository-url}" /> <arg value="-DrepositoryId=${maven-staging-repository-id}" /> <arg value="-DpomFile=pom.xml" /> <arg value="-Dfile=${maven-jar}" /> <arg value="-Pgpg" /> </artifact:mvn> <!-- sign and deploy the sources artifact --> <artifact:mvn> <arg value="org.apache.maven.plugins:maven-gpg-plugin:1.3:sign-and-deploy-file" /> <arg value="-Durl=${maven-staging-repository-url}" /> <arg value="-DrepositoryId=${maven-staging-repository-id}" /> <arg value="-DpomFile=pom.xml" /> <arg value="-Dfile=${maven-sources-jar}" /> <arg value="-Dclassifier=sources" /> <arg value="-Pgpg" /> </artifact:mvn> <!-- sign and deploy the javadoc artifact --> <artifact:mvn> <arg value="org.apache.maven.plugins:maven-gpg-plugin:1.3:sign-and-deploy-file" /> <arg value="-Durl=${maven-staging-repository-url}" /> <arg value="-DrepositoryId=${maven-staging-repository-id}" /> <arg value="-DpomFile=pom.xml" /> <arg value="-Dfile=${maven-javadoc-jar}" /> <arg value="-Dclassifier=javadoc" /> <arg value="-Pgpg" /> </artifact:mvn> </target> <!-- ************************************** END OF MAVEN SH*T ************************************** --> <!-- ************ SOURCE ********************* --> <target name="init"> <available property="ivy.set.up" file="${jars.dir}"/> <fail message="It appears that Ivy has not been set up properly. Please run "ant ivy-setupjars" and try again." unless="ivy.set.up"/> <mkdir dir="${dist}"/> <mkdir dir="${docs}"/> <mkdir dir="${build}"/> <mkdir dir="${reports}"/> <mkdir dir="${coverage}"/> <symlink link="${dist}/javadoc" resource="../${docs}" overwrite="true"/> </target> <target name="compile" depends="init" description="Compile standard sources (without tests)"> <javac srcdir="${src}" debug="on" optimize="on" destdir="${build}" encoding="UTF-8" source="1.7" target="1.7" classpathref="compile.classpath"/> </target> <target name="compile-tests" depends="init" description="Compile sources (with tests)"> <javac srcdir="${src}:${test}" debug="on" optimize="on" destdir="${build}" encoding="UTF-8" source="1.7" target="1.7" classpathref="test.classpath"/> </target> <target name="jar" depends="compile" description="Creates jar (without tests)"> <jar jarfile="lama4j-${version}.jar"> <fileset dir="${build}" includes="it/**"/> </jar> </target> <!-- ************ JAVADOC ********************* --> <target name="javadoc" description="Generates documentation"> <delete dir="${docs}"/> <mkdir dir="${docs}"/> <javadoc destdir="${docs}" encoding="UTF-8" sourcepath="${src}" packagenames="it.unimi.dsi.lama4j" private="off" overview="${src}/overview.html" source="1.5" windowtitle="LaMa4J ${version}"> <link href="${j2se.apiurl}"/> <link href="${fastutil.apiurl}"/> <link href="${dsiutils.apiurl}"/> <link href="${slf4j.apiurl}"/> <link href="${jsap.apiurl}"/> <link href="${junit.apiurl}"/> </javadoc> <copy file="${src}/F3.png" todir="${docs}"/> </target> <target name="junit" depends="instrument" description="Runs JUnit tests"> <junit printsummary="yes" fork="yes" haltonfailure="off" haltonerror="off"> <classpath location="${instrumented}/classes"/> <classpath location="${jar.base}/emma.jar"/> <jvmarg value="-Demma.coverage.out.file=${coverage}/coverage.emma" /> <jvmarg value="-Demma.coverage.out.merge=true" /> <formatter type="xml"/> <formatter type="plain"/> <batchtest fork="yes" todir="${reports}"> <fileset dir="${instrumented}/classes"> <include name="test/**/*Test.class"/> </fileset> </batchtest> </junit> <junitreport todir="reports"> <fileset dir="reports"> <include name="TEST-*.xml"/> </fileset> <report todir="reports/html"/> </junitreport> <emma> <report sourcepath="${src}" > <fileset file="${coverage}/*a"/> <txt outfile="coverage.txt" /> <html outfile="coverage.html" /> </report> </emma> </target> <target name="instrument" depends="compile" description="Generate instrumented classes"> <emma> <instr mode="fullcopy" outdir="${instrumented}" merge="no" metadatafile="${coverage}/metadata.emma" instrpath="${build}" > <filter excludes="*Test*"/> </instr> </emma> </target> <!-- ************ CLEAN ********************* --> <target name="clean"> <delete dir="${build}"/> <delete dir="${reports}"/> <delete dir="${coverage}"/> <delete dir="${instrumented}"/> <delete dir="${docs}"/> <delete> <fileset dir="." includes="*.jar"/> </delete> </target> </project>