Discussion:
Maven repository for pellet
Stefan Nesbigall
2010-07-15 13:38:42 UTC
Permalink
Hi everyone
 
we use Maven for our development. Is there a public maven repository for pellet?
 
 
regards
Stefan
 
**********************************************************
M.Sc. Stefan Nesbigall

Forschungsbereich Agenten und Simulierte Realitaet
Campus D 3 2, Zimmer +1.30
66123 Saarbruecken

Tel:  0681 - 857 75 4823
Fax: 0681 - 857 75  2235
http://www.dfki.de

***********************************************************
Deutsches Forschungszentrum fuer
Kuenstliche Intelligenz GmbH

Firmensitz: Trippstadter Strasse 122
D-67663 Kaiserslautern

Geschaeftsfuehrung:
Prof. Dr. Dr. h.c. mult. Wolfgang Wahlster (Vorsitzender) Dr. Walter Olthoff

Vorsitzender des Aufsichtsrats:
Prof. Dr. h.c. Hans A. Aukes
Amtsgericht Kaiserslautern, HRB 2313
***********************************************************
_______________________________________________
Pellet-users mailing list
Pellet-***@lists.owldl.com
http://lists.owldl.com/mailman/listinfo/pellet-users
_______________________________________________

Sponsore
Alex Tucker
2010-07-15 13:49:02 UTC
Permalink
Hi Stefan,
Post by Stefan Nesbigall
we use Maven for our development. Is there a public maven repository for pellet?
Funny you should mention it...

The Pellet build is Ant based, so there are no direct Maven artifacts
from Clark and Parsia. However, a few of the external developers using
Pellet have created their own Maven repositories and hand-written the
POM files, including myself. A Google for pellet and maven shows quite
a number of repositories.

I'm just in the process of updating some POM files for Pellet 2.2.0 for
my repository and can drop you a line when it's done. In the meantime,
there's a 2.1.0 version you can get with the following details in your
pom.xml:

<project>
...
<repositories>
<repository>
<id>floop</id>
<name>floop.org.uk Repository</name>
<url>http://maven.floop.org.uk</url>
</repository>
...
</repositories>
...
<dependencies>
<dependency>
<groupId>com.owldl</groupId>
<artifactId>pellet</artifactId>
<version>2.1.0</version>
</dependency>

Cheers,
Alex.
_______________________________________________
Pellet-users mailing list
Pellet-***@lists.owldl.com
http://lists.owldl.com/mailman/listinfo/pellet-users
_______________________________________________

Sponsored by Clark & Parsia, LLC http://clarkparsia.com/
Thorsten Möller
2010-07-15 14:33:25 UTC
Permalink
On Thursday, July 15, 2010 3:38 PM [GMT+1=CET],
Post by Stefan Nesbigall
Hi everyone
we use Maven for our development. Is there a public maven repository for pellet?
Yepp (includes binary and source JAR as well as dependencies).

<repository>
<id>on.cs.unibas.ch</id>
<name>DBIS Maven Releases Repository</name>
<url>http://on.cs.unibas.ch/maven/repository</url>
</repository>

<dependency>
<groupId>com.owldl</groupId>
<artifactId>pellet</artifactId>
<!-- latest version is 2.2.0, or earlier 2.1.1, ... -->
<version>2.2.0</version>
</dependency>



Cheers,
Thorsten

_______________________________________________
Pellet-users mailing list
Pellet-***@lists.owldl.com
http://lists.owldl.com/mailman/listinfo/pellet-users
_______________________________________________

Sponsored by Clark & Parsia, LLC http://clarkparsia.com/

Loading...