On 18/01/12 22:06, Robert Vesse wrote:
Yes I already have the repos in various POMs, I was looking for the download
specifically because I was after a pre-built package on this occasion
We have code we're using internally which is using snapshots via maven mainly
because we've needed one or two of the recent patches such as my streaming TSV
input patch and the improvements to output speed you guys made in response to
JENA-178
Rob
The snapshot download gets put in the same maven directory.
It's a "classified" maven artifact of the same project. It's
simple(ish) to just add the assembly to the build. [1]
Adding a separate artifact to build the distribution seems a bit heavy
just for Fuseki. "apache-jena" it is a separate module so it can set
the artifact name.
https://issues.apache.org/jira/browse/JENA-190
Andy
[1] after discovering you do not get a free choice of assembly name
despite be able to set any name and find that assembly in target/
You can build anything you like but on install/deployment, it gets
renamed !!!! and takes on the same name as the artifact, potentially
overwriting any other thing with the same classifier/extension.
Silently. Without warning :-(
On Jan 18, 2012, at 2:02 PM, Andy Seaborne wrote:
On 18/01/12 20:59, Paolo Castagna wrote:
Hi Rob,
snapshots are not releases and there is going to be a release of Fuseki in
Apache.
Users should use releases.
Developers can help us testing stuff and snapshots are one way to do make that
easier. Developers should know where the snapshots are or the sources (and how
to compile/package stuff). The jena-dev mailing list is there also to help
developers wanting to contribute to Jena.
That is a bit black and white between users and developers. Using snapshots is
OK - currently while we're in migration, but also generally, to track the
evolution of a module.
I'm happy for people to use snapshots.
(and, yes, generally, I use Jena snapshots myself!)
The Jena website is aimed at users and Jena users are the main target audience.
Paolo
Robert Vesse wrote:
Thanks Paolo
Would it be possible to have pointers to snapshot downloads placed on the
incubator website or are these just on a page I didn't find?
http://incubator.apache.org/jena/download/maven.html#repositories
if you're mavneing, and not downloading the distribution, you'll need to add
the repo to your maven settings:
I use:
<profiles>
<profile>
<id>apache-repository-snapshots</id>
<repositories>
<repository>
<id>apache.snapshots</id>
<name>Apache Snapshot Repository</name>
<url>http://repository.apache.org/snapshots</url>
<releases>
<enabled>false</enabled>
</releases>
<snapshots>
<enabled>true</enabled>
</snapshots>
</repository>
</repositories>
</profile>
</profiles>
<activeProfiles>
<activeProfile>apache-repository-snapshots</activeProfile>
</activeProfiles>
Andy
Rob
On Jan 18, 2012, at 11:52 AM, Paolo Castagna wrote:
Hi Rob
Robert Vesse wrote:
Is there a download URL for up to date Fuseki snapshots, I thought there was
but I can no longer find a working download?
For example searching Fuseki 0.2.1 gives
http://openjena.org/repo-dev/org/openjena/fuseki/0.2.1-SNAPSHOT/ as the top
result but it now gives a 404
Here:
https://repository.apache.org/content/repositories/snapshots/org/apache/jena/jena-fuseki/
Paolo
Cheers,
Rob