pastebin

About this pastebin

Welcome to the bulix.org / pastebin. Please don't use this pastebin for illegal purposes, defamation or kitten-squashing.

This pastebin is written using PHP and MySQL and relies on Alex Gorbatchev's syntax hhighlighter (JavaScript based). To avoid spam, you will be required to complete a small mathematical challenge when adding a new paste.

Private paste #67877: sample build.xml

<?xml version="1.0"?>
<!-- ant build file for Freenet -->

<project name="SiteToolPlugin" default="dist" basedir=".">
	<property name="freenet-cvs-snapshot.location" location="../Freenet 0.7/lib/freenet-cvs-snapshot.jar" />
	<property name="freenet-ext.location" location="../Freenet 0.7/lib/freenet-ext.jar" />
	<property name="source-version" value="1.4" />
	<property name="target-version" value="1.4" />
	<property name="build" location="build/" />
	<property name="dist" location="dist/" />

	<target name="mkdir">
		<mkdir dir="${build}" />
		<mkdir dir="${dist}" />
		<echo message="Using ${freenet-cvs-snapshot.location} as freenet-cvs-snapshot.jar" />
		<echo message="Using ${freenet-ext.location} as freenet-ext.jar" />
	</target>

	<!-- ================================================== -->
	<target name="compile" depends="mkdir">
		<!-- Create the time stamp -->
		<tstamp />
		<!-- Create the build directory structure used by compile -->

		<!-- FIXME: remove the debug and replace with optimize -->
		<javac srcdir="src" destdir="${build}" debug="on" optimize="on" source="${source-version}" target="${target-version}">
			<classpath>
				<pathelement location="${freenet-ext.location}" />
				<pathelement location="${freenet-cvs-snapshot.location}" />
				<!-- pathelement location="./bc-lib/bcprov-jdk14-138.jar"/ -->
				<!-- pathelement location="./bc-lib/bcpg-jdk14-138.jar"/ -->
			</classpath>
			<include name="**/*.java" />
		</javac>
	</target>


	<!-- ================================================== -->
	<target name="dist" depends="compile" description="generate the distribution">
		<jar jarfile="${dist}/SiteToolPlugin.jar">
			<fileset dir="${build}" />
			<fileset dir="src" />
			<manifest>
				<attribute name="Plugin-Main-Class" value="plugins.SiteToolPlugin.SiteToolPlugin" />
			</manifest>
		</jar>
	</target>

	<!-- ================================================== -->
	<target name="clean" description="Delete class files and docs dir.">
		<delete dir="${build}" />
		<delete dir="${dist}" />
	</target>
</project>

New paste

  Language:
Private   — Wrap long lines  —  4 + 1 =   —  

30 more recent public pastes


# Title Type Date
1 Untitled ASCII paste by 84.190.218.1 ASCII 04 Jul 2009, 07:25
2 Untitled XML/HTML paste by 71.235.178.72 XML/HTML 04 Jul 2009, 03:13
3 Untitled ASCII paste by 67.141.131.214 ASCII 03 Jul 2009, 17:40
4 Untitled ASCII paste by 67.141.131.214 ASCII 03 Jul 2009, 15:09
5 Untitled ASCII paste by 67.141.131.214 ASCII 03 Jul 2009, 15:08
6 Untitled ASCII paste by 67.141.131.214 ASCII 03 Jul 2009, 14:19
7 Untitled ASCII paste by 67.141.131.214 ASCII 03 Jul 2009, 14:13
8 Untitled ASCII paste by 67.141.131.214 ASCII 03 Jul 2009, 02:35
9 Untitled ASCII paste by 67.141.131.214 ASCII 03 Jul 2009, 02:22
10 Untitled ASCII paste by 67.141.131.214 ASCII 03 Jul 2009, 02:20
11 Untitled ASCII paste by 67.141.131.214 ASCII 03 Jul 2009, 02:17
12 Untitled ASCII paste by 67.141.131.214 ASCII 03 Jul 2009, 00:40
13 Untitled ASCII paste by 67.141.131.214 ASCII 03 Jul 2009, 00:23
14 Untitled ASCII paste by 67.141.131.214 ASCII 02 Jul 2009, 23:20
15 Untitled ASCII paste by 67.141.131.214 ASCII 02 Jul 2009, 23:19
16 Untitled Perl paste by 212.117.187.46 Perl 02 Jul 2009, 21:27
17 Untitled ASCII paste by 67.141.131.214 ASCII 02 Jul 2009, 20:42
18 Untitled ASCII paste by 67.141.131.214 ASCII 02 Jul 2009, 19:12
19 Untitled ASCII paste by 67.141.131.214 ASCII 02 Jul 2009, 19:10
20 Untitled ASCII paste by 67.141.131.214 ASCII 02 Jul 2009, 19:08
21 Untitled ASCII paste by 67.141.131.214 ASCII 02 Jul 2009, 19:01
22 Untitled ASCII paste by 67.141.131.214 ASCII 02 Jul 2009, 18:51
23 Untitled ASCII paste by 67.141.131.214 ASCII 02 Jul 2009, 11:19
24 Untitled ASCII paste by 82.247.183.72 ASCII 02 Jul 2009, 11:16
25 Untitled ASCII paste by 67.141.131.214 ASCII 02 Jul 2009, 11:12
26 Untitled ASCII paste by 67.141.131.214 ASCII 02 Jul 2009, 11:01
27 Untitled ASCII paste by 67.141.131.214 ASCII 02 Jul 2009, 10:56
28 Untitled ASCII paste by 67.141.131.214 ASCII 02 Jul 2009, 10:54
29 Untitled ASCII paste by 67.141.131.214 ASCII 02 Jul 2009, 10:36
30 Untitled ASCII paste by 67.141.131.214 ASCII 02 Jul 2009, 03:23

Powered by the Bulix.org Code Pastebin, by Maxime Petazzoni. View pastebin statistics.