jackson-jsonld
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>com.io-informatics.oss</groupId> <artifactId>jackson-jsonld</artifactId> <version>0.1.1</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.io-informatics.oss</groupId> <artifactId>jackson-jsonld</artifactId> <version>0.1.1</version> <name>jackson-jsonld</name> <description>JSON-LD Module for Jackson</description> <url>https://github.com/io-informatics/jackson-jsonld</url> <scm> <connection>scm:git:git@github.com:io-informatics/jackson-jsonld.git</connection> <developerConnection>scm:git:git@github.com:io-informatics/jackson-jsonld.git</developerConnection> <url>scm:git:git@github.com:io-informatics/jackson-jsonld.git</url> <tag>v0.1.1</tag> </scm> <developers> <developer> <name>Alexander De Leon</name> <email>adeleon@io-informatics.com</email> <timezone>Europe/Madrid</timezone> <roles> <role>committer</role> </roles> </developer> </developers> <properties> <version.jackson.annotations>2.4.4</version.jackson.annotations> <version.jackson.core>2.4.4</version.jackson.core> <version.jsonld.java>0.5.1</version.jsonld.java> </properties> <dependencies> <dependency> <groupId>com.fasterxml.jackson.core</groupId> <artifactId>jackson-annotations</artifactId> <version>${version.jackson.annotations}</version> </dependency> <dependency> <groupId>com.fasterxml.jackson.core</groupId> <artifactId>jackson-core</artifactId> <version>${version.jackson.core}</version> </dependency> <dependency> <groupId>com.fasterxml.jackson.core</groupId> <artifactId>jackson-databind</artifactId> <version>${version.jackson.core}</version> </dependency> <dependency> <groupId>com.github.jsonld-java</groupId> <artifactId>jsonld-java</artifactId> <version>${version.jsonld.java}</version> </dependency> <dependency> <groupId>org.apache.commons</groupId> <artifactId>commons-lang3</artifactId> <version>3.3.2</version> </dependency> <dependency> <groupId>io.github.lukehutch</groupId> <artifactId>fast-classpath-scanner</artifactId> <version>1.99.0</version> </dependency> <dependency> <groupId>junit</groupId> <artifactId>junit</artifactId> <version>4.11</version> <scope>test</scope> </dependency> <dependency> <groupId>org.hamcrest</groupId> <artifactId>hamcrest-junit</artifactId> <version>2.0.0.0</version> <scope>test</scope> </dependency> </dependencies> <build> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-compiler-plugin</artifactId> <version>3.1</version> <configuration> <source>1.8</source> <target>1.8</target> </configuration> </plugin> <plugin> <groupId>org.sonatype.plugins</groupId> <artifactId>nexus-staging-maven-plugin</artifactId> <version>1.6.5</version> <extensions>true</extensions> <configuration> <serverId>sonatype-releases</serverId> <nexusUrl>https://oss.sonatype.org/</nexusUrl> <autoReleaseAfterClose>true</autoReleaseAfterClose> </configuration> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-release-plugin</artifactId> <version>2.4.1</version> <dependencies> <dependency> <groupId>org.apache.maven.scm</groupId> <artifactId>maven-scm-provider-gitexe</artifactId> <version>1.9</version> </dependency> </dependencies> </plugin> </plugins> </build> <distributionManagement> <repository> <id>sonatype-releases</id> <name>Sonatype Nexus releases repository</name> <url>https://oss.sonatype.org/content/repositories/releases</url> </repository> <snapshotRepository> <id>sonatype</id> <name>Sonatype Nexus snapshot repository</name> <url>https://oss.sonatype.org/content/repositories/snapshots</url> </snapshotRepository> </distributionManagement> <repositories> <repository> <id>sonatype</id> <name>Sonatype Nexus snapshot repository</name> <url>https://oss.sonatype.org/content/repositories/snapshots</url> <snapshots><enabled>true</enabled></snapshots> </repository> <repository> <id>sonatype-releases</id> <name>Sonatype Nexus releases repository</name> <url>https://oss.sonatype.org/content/repositories/releases</url> <snapshots><enabled>false</enabled></snapshots> </repository> </repositories> <ciManagement> <system>Travis CI</system> <url>https://travis-ci.org/io-informatics/jackson-jsonld</url> </ciManagement> <issueManagement> <url>https://github.com/io-informatics/jackson-jsonld/issues</url> <system>GitHub Issues</system> </issueManagement> <licenses> <license> <name>MIT License</name> <url>http://www.opensource.org/licenses/mit-license.php</url> <distribution>repo</distribution> </license> </licenses> <profiles> <profile> <id>release-sign-artifacts</id> <activation> <property> <name>performRelease</name> <value>true</value> </property> </activation> <build> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-gpg-plugin</artifactId> <executions> <execution> <id>sign-artifacts</id> <phase>verify</phase> <goals> <goal>sign</goal> </goals> </execution> </executions> </plugin> </plugins> </build> </profile> </profiles> </project>