vampire-squid-java-sdk
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>org.mbari.vars</groupId> <artifactId>vampire-squid-java-sdk</artifactId> <version>0.0.5</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>org.mbari.vars</groupId> <artifactId>vampire-squid-java-sdk</artifactId> <version>0.0.5</version> <name>${project.groupId}:${project.artifactId}</name> <description>Java SDK for the vampire-squid microservice</description> <url>https://github.com/mbari-org/vampire-squid-java-sdk</url> <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>Brian Schlining</name> <email>brian@mbari.org</email> <organization>MBARI</organization> <organizationUrl>https://www.mbari.org</organizationUrl> </developer> </developers> <scm> <connection>scm:git:git@github.com:mbari-org/vampire-squid-java-sdk.git</connection> <developerConnection>scm:git:ssh://github.com:mbari-org/vampire-squid-java-sdk.git</developerConnection> <url>https://github.com/mbari-org/vampire-squid-java-sdk/tree/main</url> </scm> <properties> <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> <maven.compiler.release>21</maven.compiler.release> <auth0.version>4.5.0</auth0.version> <kiota.version>1.8.4</kiota.version> <methanol.version>1.8.2</methanol.version> <okhttp3.version>4.12.0</okhttp3.version> </properties> <dependencyManagement> <dependencies> <dependency> <groupId>org.junit</groupId> <artifactId>junit-bom</artifactId> <version>5.12.0</version> <type>pom</type> <scope>import</scope> </dependency> </dependencies> </dependencyManagement> <dependencies> <dependency> <groupId>com.github.mizosoft.methanol</groupId> <artifactId>methanol</artifactId> <version>${methanol.version}</version> </dependency> <dependency> <groupId>com.auth0</groupId> <artifactId>java-jwt</artifactId> <version>${auth0.version}</version> </dependency> <dependency> <groupId>com.microsoft.kiota</groupId> <artifactId>microsoft-kiota-abstractions</artifactId> <version>${kiota.version}</version> </dependency> <dependency> <groupId>com.microsoft.kiota</groupId> <artifactId>microsoft-kiota-http-okHttp</artifactId> <version>${kiota.version}</version> </dependency> <dependency> <groupId>com.microsoft.kiota</groupId> <artifactId>microsoft-kiota-authentication-azure</artifactId> <version>${kiota.version}</version> </dependency> <dependency> <groupId>com.microsoft.kiota</groupId> <artifactId>microsoft-kiota-bundle</artifactId> <version>${kiota.version}</version> </dependency> <dependency> <groupId>com.microsoft.kiota</groupId> <artifactId>microsoft-kiota-serialization-json</artifactId> <version>${kiota.version}</version> </dependency> <dependency> <groupId>com.microsoft.kiota</groupId> <artifactId>microsoft-kiota-serialization-text</artifactId> <version>${kiota.version}</version> </dependency> <dependency> <groupId>com.microsoft.kiota</groupId> <artifactId>microsoft-kiota-serialization-form</artifactId> <version>${kiota.version}</version> </dependency> <dependency> <groupId>com.microsoft.kiota</groupId> <artifactId>microsoft-kiota-serialization-multipart</artifactId> <version>${kiota.version}</version> </dependency> <dependency> <groupId>com.squareup.okhttp3</groupId> <artifactId>logging-interceptor</artifactId> <version>${okhttp3.version}</version> </dependency> <dependency> <groupId>jakarta.annotation</groupId> <artifactId>jakarta.annotation-api</artifactId> <version>3.0.0</version> </dependency> <dependency> <groupId>org.junit.jupiter</groupId> <artifactId>junit-jupiter-api</artifactId> <scope>test</scope> </dependency> <!-- Optionally: parameterized tests support --> <dependency> <groupId>org.junit.jupiter</groupId> <artifactId>junit-jupiter-params</artifactId> <scope>test</scope> </dependency> <dependency> <groupId>org.slf4j</groupId> <artifactId>slf4j-jdk-platform-logging</artifactId> <version>2.0.15</version> <scope>test</scope> </dependency> <dependency> <groupId>ch.qos.logback</groupId> <artifactId>logback-classic</artifactId> <version>1.5.17</version> <scope>test</scope> </dependency> </dependencies> <build> <pluginManagement><!-- lock down plugins versions to avoid using Maven defaults (may be moved to parent pom) --> <plugins> <!-- clean lifecycle, see https://maven.apache.org/ref/current/maven-core/lifecycles.html#clean_Lifecycle --> <plugin> <artifactId>maven-clean-plugin</artifactId> <version>3.4.0</version> </plugin> <!-- default lifecycle, jar packaging: see https://maven.apache.org/ref/current/maven-core/default-bindings.html#Plugin_bindings_for_jar_packaging --> <plugin> <artifactId>maven-resources-plugin</artifactId> <version>3.3.1</version> </plugin> <plugin> <artifactId>maven-compiler-plugin</artifactId> <version>3.13.0</version> </plugin> <plugin> <artifactId>maven-surefire-plugin</artifactId> <version>3.3.0</version> </plugin> <plugin> <artifactId>maven-jar-plugin</artifactId> <version>3.4.2</version> </plugin> <plugin> <artifactId>maven-install-plugin</artifactId> <version>3.1.2</version> </plugin> <plugin> <artifactId>maven-deploy-plugin</artifactId> <version>3.1.2</version> </plugin> <!-- site lifecycle, see https://maven.apache.org/ref/current/maven-core/lifecycles.html#site_Lifecycle --> <plugin> <artifactId>maven-site-plugin</artifactId> <version>3.12.1</version> </plugin> <plugin> <artifactId>maven-project-info-reports-plugin</artifactId> <version>3.6.1</version> </plugin> <plugin> <artifactId>maven-release-plugin</artifactId> <version>3.1.1</version> </plugin> <plugin> <artifactId>maven-javadoc-plugin</artifactId> <version>3.11.1</version> </plugin> <plugin> <artifactId>maven-source-plugin</artifactId> <version>3.3.1</version> </plugin> <plugin> <artifactId>maven-gpg-plugin</artifactId> <version>3.2.7</version> </plugin> <plugin> <artifactId>maven-failsafe-plugin</artifactId> <version>3.5.2</version> </plugin> <plugin> <groupId>org.sonatype.central</groupId> <artifactId>central-publishing-maven-plugin</artifactId> <version>0.6.0</version> </plugin> </plugins> </pluginManagement> <plugins> <plugin> <groupId>org.sonatype.central</groupId> <artifactId>central-publishing-maven-plugin</artifactId> <extensions>true</extensions> <configuration> <publishingServerId>central</publishingServerId> </configuration> </plugin> <plugin> <artifactId>maven-release-plugin</artifactId> <configuration> <useReleaseProfile>false</useReleaseProfile> <releaseProfiles>release</releaseProfiles> <autoVersionSubmodules>true</autoVersionSubmodules> </configuration> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-javadoc-plugin</artifactId> <configuration> <!-- Default configuration for all reports --> </configuration> <executions> <execution> <id>attach-javadocs</id> <goals> <goal>jar</goal> </goals> </execution> <execution> <id>aggregate</id> <goals> <goal>aggregate</goal> </goals> <phase>site</phase> <configuration> <!-- Specific configuration for the aggregate report --> </configuration> </execution> </executions> </plugin> <plugin> <artifactId>maven-source-plugin</artifactId> <executions> <execution> <id>attach-sources</id> <goals> <goal>jar-no-fork</goal> </goals> </execution> </executions> </plugin> <plugin> <artifactId>maven-gpg-plugin</artifactId> <executions> <execution> <id>sign-artifacts</id> <phase>verify</phase> <goals> <goal>sign</goal> </goals> </execution> </executions> </plugin> <plugin> <artifactId>maven-failsafe-plugin</artifactId> <executions> <execution> <id>integration-tests</id> <goals> <goal>integration-test</goal> <goal>verify</goal> </goals> </execution> </executions> </plugin> </plugins> </build> <reporting> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-javadoc-plugin</artifactId> <version>3.6.2</version> <!-- Use the latest version --> <reportSets> <reportSet> <id>default</id> <reports> <report>javadoc</report> </reports> </reportSet> </reportSets> </plugin> </plugins> </reporting> </project>