gemini-interactions-api-sdk
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency>
<groupId>io.github.glaforge</groupId>
<artifactId>gemini-interactions-api-sdk</artifactId>
<version>1.2.3</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>io.github.glaforge</groupId>
<artifactId>gemini-interactions-parent</artifactId>
<version>1.2.3</version>
<relativePath>../pom.xml</relativePath>
</parent>
<artifactId>gemini-interactions-api-sdk</artifactId>
<name>Gemini Interactions API SDK</name>
<description>Google Gemini Interactions API SDK</description>
<url>https://github.com/glaforge/gemini-interactions-api-sdk</url>
<scm>
<connection>scm:git:git://github.com/glaforge/gemini-interactions-api-sdk.git</connection>
<developerConnection>scm:git:git@github.com:glaforge/gemini-interactions-api-sdk.git</developerConnection>
<url>https://github.com/glaforge/gemini-interactions-api-sdk/tree/main</url>
<tag>v1.2.3</tag>
</scm>
<properties>
<jreleaser.skip>true</jreleaser.skip>
</properties>
<dependencies>
<!-- JSON Processing -->
<dependency>
<groupId>tools.jackson.core</groupId>
<artifactId>jackson-databind</artifactId>
</dependency>
<!-- Google Cloud Auth -->
<dependency>
<groupId>com.google.auth</groupId>
<artifactId>google-auth-library-oauth2-http</artifactId>
<optional>true</optional>
</dependency>
<!-- Testing -->
<dependency>
<groupId>org.junit.jupiter</groupId>
<artifactId>junit-jupiter</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>com.squareup.okhttp3</groupId>
<artifactId>mockwebserver</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>io.javelit</groupId>
<artifactId>javelit</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<artifactId>ansiren</artifactId>
<groupId>io.github.glaforge</groupId>
<scope>test</scope>
</dependency>
</dependencies>
<profiles>
<profile>
<id>deploy-frontend</id>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-assembly-plugin</artifactId>
<version>3.6.0</version>
<configuration>
<archive>
<manifest>
<mainClass>io.github.glaforge.gemini.interactions.ResearchFrontend</mainClass>
</manifest>
</archive>
<descriptors>
<descriptor>src/assembly/frontend-deployment.xml</descriptor>
</descriptors>
</configuration>
<executions>
<execution>
<id>make-assembly</id>
<phase>package</phase>
<goals>
<goal>single</goal>
</goals>
</execution>
</executions>
</plugin>
</plugins>
</build>
</profile>
</profiles>
</project>