https://github.com/coin-or/jMarkov
Revision e588cf895692c7e70a5977f515a48ea08ec5b786 authored by Julio Goez on 02 April 2016, 15:44:43 UTC, committed by Julio Goez on 02 April 2016, 15:44:43 UTC
1 parent b2bd6c4
Raw File
Tip revision: e588cf895692c7e70a5977f515a48ea08ec5b786 authored by Julio Goez on 02 April 2016, 15:44:43 UTC
Brocke the code snippets for example 1
Tip revision: e588cf8
build.xml
<?xml version="1.0" ?>
<!-- Configuration of the Ant build system to generate a Jar file --> 
<project name="jMarkov" default="CreateJar">
  <target name="CreateJar" description="Create Jar file">
        <jar jarfile="lib/jMarkov.jar" basedir="./bin" />
  </target>
</project>
back to top