Sha256: 4a81b2a48f72cd57ee11c08f9d3e6aa118bbabb4108b1c0178c7a049c038c77d

Contents?: true

Size: 932 Bytes

Versions: 50

Compression:

Stored size: 932 Bytes

Contents

<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<project name="jruby-prof" default="dist" basedir=".">
  <!-- set global properties for this build -->
  <property name="src" location="src"/>
  <property name="build" location="build"/>
  <property name="dist"  location="dist"/>
  <property environment="env" />
  
  <target name="init">
    <tstamp/>
    <mkdir dir="${build}"/>
  </target>

  <target name="compile" depends="init" description="compile the source " >
    <javac srcdir="${src}" destdir="${build}">
      <classpath location="${env.JRUBY_HOME}/lib/jruby.jar"/>
    </javac>
  </target>

  <target name="dist" depends="compile" description="generate the distribution" >
    <mkdir dir="${dist}"/>

    <jar jarfile="${dist}/jruby-prof.jar" basedir="${build}"/>
  </target>

  <target name="clean"
        description="clean up" >
    <delete dir="${build}"/>
    <delete dir="${dist}"/>
  </target>
</project>

Version data entries

50 entries across 50 versions & 2 rubygems

Version Path
redcar-dev-0.12.16dev-java plugins/redcar_debug/vendor/jruby-prof/build.xml
redcar-dev-0.12.15dev-java plugins/redcar_debug/vendor/jruby-prof/build.xml
redcar-dev-0.12.14dev-java plugins/redcar_debug/vendor/jruby-prof/build.xml
redcar-dev-0.12.13dev-java plugins/redcar_debug/vendor/jruby-prof/build.xml
redcar-dev-0.12.12dev-java plugins/redcar_debug/vendor/jruby-prof/build.xml
redcar-dev-0.12.11dev-java plugins/redcar_debug/vendor/jruby-prof/build.xml
redcar-dev-0.12.10dev-java plugins/redcar_debug/vendor/jruby-prof/build.xml
redcar-dev-0.12.9dev-java plugins/redcar_debug/vendor/jruby-prof/build.xml
redcar-dev-0.12.8dev-java plugins/redcar_debug/vendor/jruby-prof/build.xml
redcar-dev-0.12.7dev-java plugins/redcar_debug/vendor/jruby-prof/build.xml
redcar-dev-0.12.6dev-java plugins/redcar_debug/vendor/jruby-prof/build.xml
redcar-dev-0.12.4dev-java plugins/redcar_debug/vendor/jruby-prof/build.xml
redcar-dev-0.12.3dev-java plugins/redcar_debug/vendor/jruby-prof/build.xml
redcar-dev-0.12.1dev-java plugins/redcar_debug/vendor/jruby-prof/build.xml
redcar-dev-0.12.0dev-java plugins/redcar_debug/vendor/jruby-prof/build.xml
redcar-0.11 plugins/redcar_debug/vendor/jruby-prof/build.xml
redcar-0.11.0dev plugins/redcar_debug/vendor/jruby-prof/build.xml
redcar-0.10 plugins/redcar_debug/vendor/jruby-prof/build.xml
redcar-0.9.2 plugins/redcar_debug/vendor/jruby-prof/build.xml
redcar-0.9.1 plugins/redcar_debug/vendor/jruby-prof/build.xml