简体   繁体   中英

How to use Jena with Maven

I want to develop a web application which makes it possible to browse an ontology.

Can somebody give me a hint or an example how to use jena in maven?

All jena releases are mirrored by central repo, so to use jena you need to add it to dependencies in your pom.xml.

Here are the artifacts from maven central .

See also:

This is, for example, how to add a dependency on Apache Jena's TDB storage layer (ie jena-tdb) (which depends on jena-core and jena-arq):

<dependency>
    <groupId>org.apache.jena</groupId>
    <artifactId>jena-tdb</artifactId>
    <version>0.9.0-incubating</version>
</dependency>

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM