vocab-builder
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>com.github.tkurz.sesame</groupId> <artifactId>vocab-builder</artifactId> <version>1.4</version> </dependency>
<?xml version="1.0" encoding="UTF-8"?> <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> <modelVersion>4.0.0</modelVersion> <groupId>com.github.tkurz.sesame</groupId> <artifactId>vocab-builder</artifactId> <version>1.4</version> <packaging>pom</packaging> <parent> <groupId>org.sonatype.oss</groupId> <artifactId>oss-parent</artifactId> <version>7</version> </parent> <name>Sesame Vocabulary Builder</name> <url>https://github.com/tkurz/sesame-vocab-builder</url> <licenses> <license> <name>The Apache Software License, Version 2.0</name> <url>http://www.apache.org/licenses/LICENSE-2.0.txt</url> <distribution>repo</distribution> </license> </licenses> <developers> <developer> <id>tkurz</id> <name>Thomas Kurz</name> <email>tkurs@apache.org</email> </developer> <developer> <id>ansell</id> <name>Peter Ansell</name> </developer> <developer> <id>ja-fra</id> <name>Jakob Frank</name> <email>jakob@apache.org</email> </developer> </developers> <scm> <url>https://github.com/tkurz/sesame-vocab-builder.git</url> <connection>scm:git:git@github.com:tkurz/sesame-vocab-builder.git</connection> <developerConnection>scm:git:git@github.com:tkurz/sesame-vocab-builder.git</developerConnection> <tag>vocabulary-builder-1.4</tag> </scm> <properties> <jackson.version>2.3.3</jackson.version> <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> <project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding> <sesame.version>2.7.11</sesame.version> <slf4j.version>1.7.7</slf4j.version> </properties> <prerequisites> <maven>3.0.4</maven> </prerequisites> <build> <pluginManagement> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-compiler-plugin</artifactId> <version>3.1</version> <configuration> <source>1.7</source> <target>1.7</target> </configuration> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-jar-plugin</artifactId> <version>2.4</version> <configuration> <archive> <index>true</index> <manifestEntries> <mode>development</mode> <url>${project.url}</url> </manifestEntries> </archive> </configuration> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-shade-plugin</artifactId> <version>2.2</version> <configuration> <createDependencyReducedPom>false</createDependencyReducedPom> </configuration> </plugin> <plugin> <groupId>org.codehaus.mojo</groupId> <artifactId>appassembler-maven-plugin</artifactId> <version>1.8</version> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-release-plugin</artifactId> <version>2.5</version> <configuration> <autoVersionSubmodules>true</autoVersionSubmodules> <pushChanges>false</pushChanges> <tagNameFormat>vocabulary-builder-@{project.version}</tagNameFormat> </configuration> </plugin> </plugins> </pluginManagement> </build> <dependencyManagement> <dependencies> <dependency> <groupId>org.openrdf.sesame</groupId> <artifactId>sesame-model</artifactId> <version>${sesame.version}</version> </dependency> <dependency> <groupId>org.openrdf.sesame</groupId> <artifactId>sesame-rio-api</artifactId> <version>${sesame.version}</version> </dependency> <dependency> <groupId>commons-cli</groupId> <artifactId>commons-cli</artifactId> <version>1.2</version> </dependency> <dependency> <groupId>org.apache.commons</groupId> <artifactId>commons-lang3</artifactId> <version>3.3.2</version> </dependency> <dependency> <groupId>commons-io</groupId> <artifactId>commons-io</artifactId> <version>2.4</version> </dependency> <dependency> <groupId>org.apache.httpcomponents</groupId> <artifactId>httpclient</artifactId> <version>4.3.3</version> </dependency> <dependency> <groupId>org.apache.httpcomponents</groupId> <artifactId>httpclient-cache</artifactId> <version>4.3.3</version> </dependency> <dependency> <groupId>org.openrdf.sesame</groupId> <artifactId>sesame-rio-rdfxml</artifactId> <version>${sesame.version}</version> <scope>runtime</scope> </dependency> <dependency> <groupId>org.openrdf.sesame</groupId> <artifactId>sesame-rio-ntriples</artifactId> <version>${sesame.version}</version> <scope>runtime</scope> </dependency> <dependency> <groupId>org.openrdf.sesame</groupId> <artifactId>sesame-rio-nquads</artifactId> <version>${sesame.version}</version> <scope>runtime</scope> </dependency> <dependency> <groupId>org.openrdf.sesame</groupId> <artifactId>sesame-rio-turtle</artifactId> <version>${sesame.version}</version> <scope>runtime</scope> </dependency> <dependency> <groupId>org.openrdf.sesame</groupId> <artifactId>sesame-rio-trig</artifactId> <version>${sesame.version}</version> <scope>runtime</scope> </dependency> <dependency> <groupId>org.openrdf.sesame</groupId> <artifactId>sesame-rio-rdfjson</artifactId> <version>${sesame.version}</version> <scope>runtime</scope> </dependency> <dependency> <groupId>com.github.jsonld-java</groupId> <artifactId>jsonld-java-sesame</artifactId> <version>0.3</version> <scope>runtime</scope> </dependency> <dependency> <groupId>org.semarglproject</groupId> <artifactId>semargl-sesame</artifactId> <version>0.6.1</version> <scope>runtime</scope> </dependency> <dependency> <groupId>com.fasterxml.jackson.core</groupId> <artifactId>jackson-core</artifactId> <version>${jackson.version}</version> </dependency> <dependency> <groupId>com.fasterxml.jackson.core</groupId> <artifactId>jackson-databind</artifactId> <version>${jackson.version}</version> </dependency> <dependency> <groupId>com.fasterxml.jackson.core</groupId> <artifactId>jackson-annotations</artifactId> <version>${jackson.version}</version> </dependency> <dependency> <groupId>org.slf4j</groupId> <artifactId>slf4j-api</artifactId> <version>${slf4j.version}</version> </dependency> <dependency> <groupId>org.slf4j</groupId> <artifactId>slf4j-simple</artifactId> <version>${slf4j.version}</version> <scope>runtime</scope> </dependency> <dependency> <groupId>junit</groupId> <artifactId>junit</artifactId> <version>4.11</version> <scope>test</scope> </dependency> <dependency> <groupId>com.google.guava</groupId> <artifactId>guava</artifactId> <version>16.0.1</version> </dependency> </dependencies> </dependencyManagement> <modules> <module>vocab-builder-core</module> <module>vocab-builder-cli</module> <module>vocab-builder-maven-plugin</module> </modules> </project>