<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
		>
<channel>
	<title>Comments on: How to make an executeable jar</title>
	<atom:link href="http://www.pakzilla.com/2007/04/08/how-to-make-an-executeable-jar/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.pakzilla.com/2007/04/08/how-to-make-an-executeable-jar/</link>
	<description>A blog on Programming, Web and Technology</description>
	<lastBuildDate>Thu, 09 Sep 2010 16:01:44 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.1</generator>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
		<item>
		<title>By: Eric Jablow</title>
		<link>http://www.pakzilla.com/2007/04/08/how-to-make-an-executeable-jar/comment-page-1/#comment-27</link>
		<dc:creator>Eric Jablow</dc:creator>
		<pubDate>Wed, 05 Sep 2007 13:58:58 +0000</pubDate>
		<guid isPermaLink="false">http://itoday.wordpress.com/2007/04/08/how-to-make-an-executeable-jar/#comment-27</guid>
		<description>People should consider using Ant to build their software.  The  task has a manifest attribute:

&lt;code&gt;
&lt;jar destfile=&quot;${dist}/lib/app.jar&quot;
       basedir=&quot;${build}/classes&quot;
       excludes=&quot;**/Test.class&quot;
       &lt;b&gt;manifest=&quot;${extras}/MANIFEST.MF&quot;&lt;/b&gt;
  /&gt;
&lt;/code&gt;

and a manifest subtask:

&lt;code&gt;
  &lt;jar destfile=&quot;test.jar&quot; basedir=&quot;.&quot;&gt;
    &lt;include name=&quot;build&quot;/&gt;
    &lt;manifest&gt;
      &lt;attribute name=&quot;Built-By&quot; value=&quot;${user.name}&quot;/&gt;
      &lt;b&gt;&lt;attribute name=&quot;Main-Class&quot; value=&quot;com.acme.widget.MailService&quot;/&gt;&lt;/b&gt;
      &lt;section name=&quot;common/class1.class&quot;&gt;
        &lt;attribute name=&quot;Sealed&quot; value=&quot;false&quot;/&gt;
      &lt;/section&gt;
    &lt;/manifest&gt;
  &lt;/jar&gt;
&lt;/code&gt;

In fact, people should always build Java applications withAnt (or Maven).</description>
		<content:encoded><![CDATA[<p>People should consider using Ant to build their software.  The  task has a manifest attribute:</p>
<p><code><br />
&lt;jar destfile="${dist}/lib/app.jar"<br />
       basedir="${build}/classes"<br />
       excludes="**/Test.class"<br />
       <b>manifest="${extras}/MANIFEST.MF"</b><br />
  /&gt;<br />
</code></p>
<p>and a manifest subtask:</p>
<p><code><br />
  &lt;jar destfile="test.jar" basedir="."&gt;<br />
    &lt;include name="build"/&gt;<br />
    &lt;manifest&gt;<br />
      &lt;attribute name="Built-By" value="${user.name}"/&gt;<br />
      <b>&lt;attribute name="Main-Class" value="com.acme.widget.MailService"/&gt;</b><br />
      &lt;section name="common/class1.class"&gt;<br />
        &lt;attribute name="Sealed" value="false"/&gt;<br />
      &lt;/section&gt;<br />
    &lt;/manifest&gt;<br />
  &lt;/jar&gt;<br />
</code></p>
<p>In fact, people should always build Java applications withAnt (or Maven).</p>
]]></content:encoded>
	</item>
</channel>
</rss>
