engine
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency>
<groupId>ai.edgestore</groupId>
<artifactId>engine</artifactId>
<version>1.0.1-alpha03</version>
</dependency><?xml version="1.0" encoding="UTF-8"?>
<project xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd" xmlns="http://maven.apache.org/POM/4.0.0"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
<!-- This module was also published with a richer model, Gradle metadata, -->
<!-- which should be used instead. Do not delete the following line which -->
<!-- is to indicate to Gradle or any Gradle module metadata file consumer -->
<!-- that they should prefer consuming it instead. -->
<!-- do_not_remove: published-with-gradle-metadata -->
<modelVersion>4.0.0</modelVersion>
<groupId>ai.edgestore</groupId>
<artifactId>engine</artifactId>
<version>1.0.1-alpha03</version>
<packaging>aar</packaging>
<name>EdgeStore Engine</name>
<description>Runs edgestore.ai models in android devices.</description>
<url>https://www.edgestore.ai</url>
<licenses>
<license>
<name>End-User License Agreement (EULA) of Edge Store Engine</name>
<url>https://www.eulatemplate.com/live.php?token=RIhV5quN1ZtVTCBwBKwjxtFvnXU3ttJP</url>
</license>
</licenses>
<developers>
<developer>
<id>edgestoreai</id>
<name>Edge Store</name>
<email>edgestore.ai@gmail.com</email>
</developer>
</developers>
<scm>
<connection>scm:git:https://github.com/physxP/EdgeStoreAndroidSnapshotArtifacts.git</connection>
<developerConnection>scm:git:git@github.com:physxP/EdgeStoreAndroidSnapshotArtifacts.git</developerConnection>
<url>https://github.com/physxP/EdgeStoreAndroidSnapshotArtifacts</url>
</scm>
<dependencies>
<dependency>
<groupId>com.google.protobuf</groupId>
<artifactId>protobuf-javalite</artifactId>
<version>3.19.1</version>
<scope>runtime</scope>
</dependency>
</dependencies>
<distributionManagement>
<snapshotRepository>
<id>ossrh</id>
<url>https://s01.oss.sonatype.org/content/repositories/snapshots</url>
</snapshotRepository>
<repository>
<id>ossrh</id>
<url>https://s01.oss.sonatype.org/service/local/staging/deploy/maven2/</url>
</repository>
</distributionManagement>
<build>
<plugins>
<plugin>
<groupId>org.sonatype.plugins</groupId>
<artifactId>nexus-staging-maven-plugin</artifactId>
<version>1.6.7</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-gpg-plugin</artifactId>
<version>1.5</version>
<executions>
<execution>
<id>sign-artifacts</id>
<phase>verify</phase>
<goals>
<goal>sign</goal>
</goals>
<configuration>
<keyname>0x09F0626A</keyname>
<passphraseServerId>0x09F0626A</passphraseServerId>
</configuration>
</execution>
</executions>
</plugin>
</plugins>
</build>
</project>