kessel-sdk
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>org.project-kessel</groupId> <artifactId>kessel-sdk</artifactId> <version>1.0.0</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> <parent> <groupId>org.project-kessel</groupId> <artifactId>kessel-sdk-parent</artifactId> <version>1.0-SNAPSHOT</version> </parent> <groupId>org.project-kessel</groupId> <version>1.0.0</version> <artifactId>kessel-sdk</artifactId> <name>Kessel SDK</name> <description>Java SDK for Project Kessel</description> <url>https://github.com/project-kessel/kessel-sdk-java</url> <licenses> <license> <name>Apache License, Version 2.0</name> <url>https://www.apache.org/licenses/LICENSE-2.0.txt</url> <distribution>repo</distribution> </license> </licenses> <developers> <developer> <id>project-kessel</id> <name>Project Kessel</name> <url>https://github.com/project-kessel</url> </developer> </developers> <scm> <url>https://github.com/project-kessel/kessel-sdk-java</url> <connection>scm:git:https://github.com/project-kessel/kessel-sdk-java.git</connection> <developerConnection>scm:git:ssh://git@github.com/project-kessel/kessel-sdk-java.git</developerConnection> <tag>main</tag> </scm> <dependencies> <dependency> <groupId>io.grpc</groupId> <artifactId>grpc-core</artifactId> <version>${grpc.version}</version> </dependency> <dependency> <groupId>io.grpc</groupId> <artifactId>grpc-protobuf</artifactId> <version>${grpc.version}</version> </dependency> <dependency> <groupId>io.grpc</groupId> <artifactId>grpc-stub</artifactId> <version>${grpc.version}</version> </dependency> <dependency> <groupId>com.google.protobuf</groupId> <artifactId>protobuf-java</artifactId> <version>${protobuf.version}</version> </dependency> <dependency> <groupId>com.nimbusds</groupId> <artifactId>oauth2-oidc-sdk</artifactId> <version>${nimbus-oauth.version}</version> <optional>true</optional> </dependency> <!-- Test dependencies --> <dependency> <groupId>org.junit.jupiter</groupId> <artifactId>junit-jupiter</artifactId> <version>5.10.1</version> <scope>test</scope> </dependency> <dependency> <groupId>org.mockito</groupId> <artifactId>mockito-core</artifactId> <version>5.8.0</version> <scope>test</scope> </dependency> <dependency> <groupId>org.mockito</groupId> <artifactId>mockito-junit-jupiter</artifactId> <version>5.8.0</version> <scope>test</scope> </dependency> <dependency> <groupId>io.grpc</groupId> <artifactId>grpc-testing</artifactId> <version>${grpc.version}</version> <scope>test</scope> </dependency> <dependency> <groupId>io.grpc</groupId> <artifactId>grpc-netty-shaded</artifactId> <version>${grpc.version}</version> <scope>test</scope> </dependency> </dependencies> <profiles> <profile> <id>sign</id> <build> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-gpg-plugin</artifactId> <version>3.2.8</version> <executions> <execution> <id>sign-artifacts</id> <phase>verify</phase> <goals> <goal>sign</goal> </goals> </execution> </executions> </plugin> </plugins> </build> </profile> </profiles> <build> <plugins> <plugin> <groupId>org.sonatype.central</groupId> <artifactId>central-publishing-maven-plugin</artifactId> <version>0.9.0</version> <extensions>true</extensions> <configuration> <publishingServerId>central</publishingServerId> </configuration> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-source-plugin</artifactId> <version>3.3.1</version> <executions> <execution> <id>attach-sources</id> <goals> <goal>jar</goal> </goals> </execution> </executions> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-javadoc-plugin</artifactId> <version>3.12.0</version> <configuration> <source>21</source> <doclint>none</doclint> <failOnError>false</failOnError> </configuration> <executions> <execution> <id>attach-javadocs</id> <goals> <goal>jar</goal> </goals> </execution> </executions> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-surefire-plugin</artifactId> <version>3.2.3</version> <configuration> <includes> <include>**/*Test.java</include> <include>**/*Tests.java</include> </includes> <excludes> <!-- Exclude autogenerated protobuf classes --> <exclude>**/com/google/api/**</exclude> <exclude>**/org/project_kessel/api/inventory/v1/**</exclude> <exclude>**/org/project_kessel/api/inventory/v1beta1/**</exclude> <exclude>**/org/project_kessel/api/inventory/v1beta2/*Proto.java</exclude> <exclude>**/org/project_kessel/api/inventory/v1beta2/*OrBuilder.java</exclude> <exclude>**/org/project_kessel/api/inventory/v1beta2/*OuterClass.java</exclude> <exclude>**/org/project_kessel/api/inventory/v1beta2/KesselInventoryServiceGrpc.java</exclude> </excludes> </configuration> </plugin> </plugins> </build> </project>