inrupt-client-solid
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>com.inrupt</groupId> <artifactId>inrupt-client-solid</artifactId> <version>1.0.0.Beta1</version> </dependency>
<?xml version="1.0"?> <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 https://maven.apache.org/xsd/maven-4.0.0.xsd"> <modelVersion>4.0.0</modelVersion> <parent> <groupId>com.inrupt</groupId> <artifactId>inrupt-client</artifactId> <version>1.0.0.Beta1</version> </parent> <artifactId>inrupt-client-solid</artifactId> <name>Inrupt Java Client Libraries - Solid</name> <description> Solid resource body handlers for the Inrupt Java Client Libraries. </description> <properties> <maven.compiler.target>1.8</maven.compiler.target> <maven.compiler.source>1.8</maven.compiler.source> </properties> <dependencies> <dependency> <groupId>com.inrupt</groupId> <artifactId>inrupt-client-api</artifactId> <version>${project.version}</version> </dependency> <dependency> <groupId>com.inrupt</groupId> <artifactId>inrupt-client-vocabulary</artifactId> <version>${project.version}</version> </dependency> <!-- test dependencies --> <dependency> <groupId>org.junit.jupiter</groupId> <artifactId>junit-jupiter-engine</artifactId> <version>${junit.version}</version> <scope>test</scope> </dependency> <dependency> <groupId>org.junit.jupiter</groupId> <artifactId>junit-jupiter-params</artifactId> <version>${junit.version}</version> <scope>test</scope> </dependency> <dependency> <groupId>com.github.tomakehurst</groupId> <artifactId>wiremock-jre8</artifactId> <version>${wiremock.version}</version> <scope>test</scope> </dependency> <dependency> <groupId>com.inrupt</groupId> <artifactId>inrupt-client-core</artifactId> <version>${project.version}</version> <scope>test</scope> </dependency> <dependency> <groupId>com.inrupt</groupId> <artifactId>inrupt-client-httpclient</artifactId> <version>${project.version}</version> <scope>test</scope> </dependency> <dependency> <groupId>com.inrupt</groupId> <artifactId>inrupt-client-rdf4j</artifactId> <version>${project.version}</version> <scope>test</scope> </dependency> <dependency> <groupId>org.slf4j</groupId> <artifactId>slf4j-simple</artifactId> <version>${slf4j.version}</version> <scope>test</scope> </dependency> </dependencies> <build> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-surefire-plugin</artifactId> <configuration> <systemPropertyVariables /> </configuration> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-failsafe-plugin</artifactId> <configuration> <systemPropertyVariables /> </configuration> </plugin> <plugin> <groupId>org.codehaus.mojo</groupId> <artifactId>build-helper-maven-plugin</artifactId> </plugin> <plugin> <groupId>org.jacoco</groupId> <artifactId>jacoco-maven-plugin</artifactId> </plugin> </plugins> </build> </project>