On 27/10/14 04:34, Yusniel Hidalgo Delgado wrote:
> Dear Jena community,
>
> I'm working on a project in Grails. Is there any way to include in
> my grails project a maven dependence for Jena and Jena TDB?
>
> Best regards.
>
> Yusniel Hidalgo Delgado Semantic Web Research Group University of
> Informatics Sciences http://gws-uci.blogspot.com/ Havana, Cuba
>
Not that I use gradle/grails but isn't it just a gradle dependency:
dependencies {
compile
group: 'org.apache.jena',
name: 'apache-jena-libs',
version: '2.12.1',
type: 'pom'
}
which is a translation of the maven-speak:
<dependency>
<groupId>org.apache.jena</groupId>
<artifactId>apache-jena-libs</artifactId>
<type>pom</type>
<version>2.12.1</version>
</dependency>
((NB type is 'pom'))
or you can depend on TDB directly if 'type' does not work:
dependencies {
runtime
group: 'org.apache.jena',
name: 'jena-tdb',
version: '1.1.1'
}
Andy