Rebuild requires CWM
Status: Beta
Brought to you by:
nwalsh
Recompiling the jar file provided with the distribution
requires generating RDF/XML versions of the RDF/N3
descriptor files. This requires CWM, and fails silently (until
you try to actually use JpegRDF) at build time. A
workaround is to copy the RDF/XML files from the archive
to the rdf directory in the distribution, and then replace the
current "rdf" Ant build target with the following:
<target name="rdf" depends="init" description="Copy
prebuilt RDF/XML files">
<mkdir dir="${build.rdf.dir}"/>
<copy todir="${build.rdf.dir}">
<fileset dir="rdf" includes="*"/>
</copy>
</target>
Logged In: YES
user_id=168177
I don't fully understand this, but don't see why using
RDF/N3 requires CWM... Jena has an N3 parser built in, so I
would expect JpegRDF to be able to use this directly in
place of the RDF/XML parser.