show/hide this revision's text 3 deleted 346 characters in body

Note: The following applies only to Netbeans 6.7 or higher:

Here is a hint, how you might use Netbeans' capabilities to
1) Create
create custom ant tasks
2) Mark files as "generated" (to exclude them from versioning)

How is it done? which would generate scm-version.txt:

Open your build.xml file, and add following code right after
<import file="nbproject/build-impl.xml"/>

<!-- STORE SUBVERSION BUILD STRING -->
<target name="-pre-compile">
  <mkdir dir="${build.generated.sources.dir}/info/YOUR/PACKAGE/NAME"/>
  <exec executable="svnversion"
    output="${build.generated.sources.dir}/info/YOUR/PACKAGE/NAME/scm-version.txt"output="${src.dir}/YOUR/PACKAGE/NAME/scm-version.txt"/>
</target>

Now, Netbeans generates a special directory and strores the Subversion version string to scm-version.txt everytime you make clean/build.

The good thing is: this directory is known to netbeans as "generated". This means: the contents are exported to your .jar, but are not versioned.

You can read the file during runtime by doing:

getClass().getResourceAsStream("scm-version.txt"); // ...

Don't forget to mark the file scm-version.txt as svn:ignore.

show/hide this revision's text 2 added 15 characters in body

Note: The following applies only to Netbeans 6.7 or higher:

Here is a hint, how you might use Netbeans' capabilities to
1) Create custom ant tasks
2) Mark files as "generated" (to exclude them from versioning)

How is it done?

Open your build.xml file, and add following code right after
<import file="nbproject/build-impl.xml"/>

<!-- STORE SUBVERSION BUILD STRING -->
<target name="-pre-compile">
  <mkdir dir="${build.generated.sources.dir}/info/YOUR/PACKAGE/NAME"/>
  <exec executable="svnversion"
    output="${build.generated.sources.dir}/info/YOUR/PACKAGE/NAME/scm-version.txt"/>
</target>

Now, Netbeans generates a special directory and strores the Subversion version string to scm-version.txt everytime you make clean/build.

The good thing is: this directory is known to netbeans as "generated". This means: the contents are exported to your .jar, but are not versioned.

You can read the file during runtime by doing:

getClass().getResourceAsStream("scm-version.txt"); // ...
show/hide this revision's text 1

Note: The following applies only to Netbeans 6.7 or higher:

Here is a hint, how you might use Netbeans' capabilities to
1) Create custom ant tasks
2) Mark files as "generated" (to exclude them from versioning)

How is it done?

Open your build.xml file, and add following code right after
<import file="nbproject/build-impl.xml"/>

<!-- STORE SUBVERSION BUILD STRING -->
<target name="-pre-compile">
  <mkdir dir="${build.generated.sources.dir}/info/YOUR/PACKAGE/NAME"/>
  <exec executable="svnversion"
    output="${build.generated.sources.dir}/info/YOUR/PACKAGE/NAME/scm-version.txt"/>
</target>

Now, Netbeans generates a special directory and strores the Subversion version string to scm-version.txt everytime you make clean/build.

The good thing is: this directory is known to netbeans as "generated". This means: the contents are exported to your .jar, but are not versioned.

You can read the file by doing:

getClass().getResourceAsStream("scm-version.txt"); // ...