Currently, Preon and its dependent libraries are not in the central Maven repository yet. That's a little inconvenient, but it will be fairly easy to work around it, by copying this snippet into your pom. Note that - if you intend to use the binding framework - you only need a reference on preon-binding, version 1.0.
<repositories>
<repository>
<id>limbo-repository</id>
<url>http://limbo.sourceforge.net/repository</url>
<snapshots>
<enabled>false</enabled>
</snapshots>
<releases>
<enabled>true</enabled>
</releases>
</repository>
<repository>
<id>pecia-repository</id>
<url>http://pecia.sourceforge.net/repository</url>
<snapshots>
<enabled>false</enabled>
</snapshots>
<releases>
<enabled>true</enabled>
</releases>
</repository>
<repository>
<id>preon-repository</id>
<url>http://preon.sourceforge.net/repository</url>
<snapshots>
<enabled>false</enabled>
</snapshots>
<releases>
<enabled>true</enabled>
</releases>
</repository>
</repositories>
3 comments:
Hi Wilfred,
check this out:
https://docs.sonatype.com/display/NX/OSS+Repository+Hosting
Great!
But what is Preon and what does it do?
Preon allows you to decode binary encoded data using annotations. Think JAXB, but then for binary encoded data.
Post a Comment