biscuit
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>org.biscuitsec</groupId> <artifactId>biscuit</artifactId> <version>4.0.1</version> </dependency>
<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/maven-v4_0_0.xsd"> <modelVersion>4.0.0</modelVersion> <groupId>org.biscuitsec</groupId> <artifactId>biscuit</artifactId> <packaging>jar</packaging> <version>4.0.1</version> <name>biscuit-java</name> <url>https://github.com/biscuit-auth/biscuit-java</url> <description>Java support for the biscuit auth token and policy language</description> <properties> <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> <maven.compiler.target>11</maven.compiler.target> <maven.compiler.source>11</maven.compiler.source> <!-- plugins --> <maven-gpg.version>1.6</maven-gpg.version> <maven-source.version>2.2.1</maven-source.version> <maven-javadoc.version>2.9.1</maven-javadoc.version> <maven-antrun.version>1.8</maven-antrun.version> <nexus-staging-maven.version>1.6.7</nexus-staging-maven.version> <build-helper-maven.version>3.0.0</build-helper-maven.version> <maven-compiler-plugin.version>3.10.0</maven-compiler-plugin.version> <!-- dependencies --> <protobuf.version>3.25.5</protobuf.version> <protobuf-maven-plugin.version>0.6.1</protobuf-maven-plugin.version> <os-maven-plugin.version>1.7.1</os-maven-plugin.version> <net.i2p.crypto.eddsa.version>0.3.0</net.i2p.crypto.eddsa.version> <vavr.version>0.10.3</vavr.version> <re2j.version>1.6</re2j.version> <gson.version>2.8.9</gson.version> <!-- test dependencies --> <junit.version>5.8.2</junit.version> </properties> <licenses> <license> <name>The Apache License, Version 2.0</name> <url>http://www.apache.org/licenses/LICENSE-2.0.txt</url> </license> </licenses> <developers> <developer> <name>Marc-Antoine PERENNOU</name> <email>marc-antoine@perennou.com</email> </developer> <developer> <name>Geoffroy COUPRIE</name> <email>contact@geoffroycouprie.com</email> <organization>Biscuit</organization> <organizationUrl>https://www.biscuitsec.org/</organizationUrl> </developer> <developer> <name>Alexandre DUVAL</name> <email>alexandre.duval@clever-cloud.com</email> <organization>Clever Cloud</organization> <organizationUrl>https://clever-cloud.com</organizationUrl> </developer> <developer> <name>Cédric CORBIÈRE</name> <email>corbic@gmail.com</email> </developer> </developers> <scm> <connection>scm:git:https://git@github.com/biscuit-auth/biscuit-java.git</connection> <developerConnection>scm:git:git@github.com:biscuit-auth/biscuit-java.git</developerConnection> <url>git@github.com:biscuit-auth/biscuit-java.git</url> </scm> <distributionManagement> <repository> <id>ossrh</id> <name>Central Repository OSSRH</name> <url>https://s01.oss.sonatype.org/service/local/staging/deploy/maven2/</url> </repository> </distributionManagement> <profiles> <profile> <id>deploy</id> <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> <configuration> <gpgArguments> <arg>--pinentry-mode</arg> <arg>loopback</arg> </gpgArguments> </configuration> </plugin> </plugins> </build> </profile> </profiles> <build> <extensions> <extension> <groupId>kr.motd.maven</groupId> <artifactId>os-maven-plugin</artifactId> <version>${os-maven-plugin.version}</version> </extension> </extensions> <pluginManagement> <plugins> <plugin> <groupId>org.xolstice.maven.plugins</groupId> <artifactId>protobuf-maven-plugin</artifactId> <version>${protobuf-maven-plugin.version}</version> <executions> <execution> <goals> <goal>compile</goal> </goals> </execution> </executions> <configuration> <protocArtifact>com.google.protobuf:protoc:${protobuf.version}:exe:${os.detected.classifier}</protocArtifact> </configuration> </plugin> </plugins> </pluginManagement> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-compiler-plugin</artifactId> <version>${maven-compiler-plugin.version}</version> <configuration> <compilerArgs> <arg>-verbose</arg> <arg>-Xlint:all,-options,-path</arg> </compilerArgs> </configuration> </plugin> <plugin> <groupId>org.sonatype.plugins</groupId> <artifactId>nexus-staging-maven-plugin</artifactId> <version>${nexus-staging-maven.version}</version> <extensions>true</extensions> <configuration> <serverId>ossrh</serverId> <nexusUrl>https://s01.oss.sonatype.org/</nexusUrl> <autoReleaseAfterClose>true</autoReleaseAfterClose> </configuration> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-source-plugin</artifactId> <version>${maven-source.version}</version> <executions> <execution> <id>attach-sources</id> <goals> <goal>jar-no-fork</goal> </goals> </execution> </executions> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-javadoc-plugin</artifactId> <version>${maven-javadoc.version}</version> <executions> <execution> <id>attach-javadocs</id> <goals> <goal>jar</goal> </goals> </execution> </executions> <configuration> <additionalparam>-Xdoclint:none</additionalparam> </configuration> </plugin> <plugin> <groupId>org.xolstice.maven.plugins</groupId> <artifactId>protobuf-maven-plugin</artifactId> </plugin> <plugin> <artifactId>maven-failsafe-plugin</artifactId> <version>2.22.2</version> </plugin> <plugin> <artifactId>maven-surefire-plugin</artifactId> <version>3.2.5</version> <dependencies> <dependency> <groupId>me.fabriciorby</groupId> <artifactId>maven-surefire-junit5-tree-reporter</artifactId> <version>1.2.1</version> </dependency> </dependencies> <configuration> <reportFormat>plain</reportFormat> <consoleOutputReporter> <disable>true</disable> </consoleOutputReporter> <statelessTestsetInfoReporter implementation="org.apache.maven.plugin.surefire.extensions.junit5.JUnit5StatelessTestsetInfoTreeReporter"> <printStacktraceOnError>true</printStacktraceOnError> <printStacktraceOnFailure>true</printStacktraceOnFailure> <printStdoutOnError>true</printStdoutOnError> <printStdoutOnFailure>true</printStdoutOnFailure> <printStdoutOnSuccess>false</printStdoutOnSuccess> <printStderrOnError>true</printStderrOnError> <printStderrOnFailure>true</printStderrOnFailure> <printStderrOnSuccess>false</printStderrOnSuccess> </statelessTestsetInfoReporter> </configuration> </plugin> </plugins> </build> <dependencies> <dependency> <groupId>com.google.protobuf</groupId> <artifactId>protobuf-java</artifactId> <version>${protobuf.version}</version> </dependency> <dependency> <groupId>net.i2p.crypto</groupId> <artifactId>eddsa</artifactId> <version>${net.i2p.crypto.eddsa.version}</version> </dependency> <dependency> <groupId>io.vavr</groupId> <artifactId>vavr</artifactId> <version>${vavr.version}</version> </dependency> <dependency> <groupId>com.google.re2j</groupId> <artifactId>re2j</artifactId> <version>${re2j.version}</version> </dependency> <dependency> <groupId>com.google.code.gson</groupId> <artifactId>gson</artifactId> <version>${gson.version}</version> </dependency> <dependency> <groupId>org.junit.jupiter</groupId> <artifactId>junit-jupiter</artifactId> <scope>test</scope> </dependency> </dependencies> <dependencyManagement> <dependencies> <dependency> <groupId>org.junit</groupId> <artifactId>junit-bom</artifactId> <version>${junit.version}</version> <type>pom</type> <scope>import</scope> </dependency> </dependencies> </dependencyManagement> </project>