appencryption
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency>
<groupId>com.godaddy.asherah.encryption</groupId>
<artifactId>appencryption</artifactId>
<version>0.50.0</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/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<groupId>com.godaddy.asherah.encryption</groupId>
<artifactId>appencryption</artifactId>
<version>0.50.0</version>
<name>Asherah AppEncryption for Java</name>
<description>Application-layer envelope encryption for Java with automatic key rotation and integrated native runtime support from Asherah.</description>
<url>https://github.com/godaddy/asherah-ffi</url>
<packaging>jar</packaging>
<organization>
<name>GoDaddy</name>
<url>https://www.godaddy.com</url>
</organization>
<licenses>
<license>
<name>Apache-2.0</name>
<url>https://www.apache.org/licenses/LICENSE-2.0</url>
</license>
</licenses>
<scm>
<url>https://github.com/godaddy/asherah-ffi</url>
<connection>scm:git:https://github.com/godaddy/asherah-ffi.git</connection>
<developerConnection>scm:git:git@github.com:godaddy/asherah-ffi.git</developerConnection>
</scm>
<issueManagement>
<system>GitHub Issues</system>
<url>https://github.com/godaddy/asherah-ffi/issues</url>
</issueManagement>
<ciManagement>
<system>GitHub Actions</system>
<url>https://github.com/godaddy/asherah-ffi/actions</url>
</ciManagement>
<developers>
<developer>
<name>Jay Gowdy</name>
<organization>GoDaddy</organization>
<organizationUrl>https://github.com/godaddy</organizationUrl>
</developer>
<developer>
<name>Bo Thompson</name>
<organization>GoDaddy</organization>
</developer>
<developer>
<name>Michael Micco</name>
<organization>GoDaddy</organization>
</developer>
<developer>
<name>Dalibor Nasevic</name>
<organization>GoDaddy</organization>
</developer>
</developers>
<distributionManagement>
<repository>
<id>github</id>
<name>GitHub Packages</name>
<url>https://maven.pkg.github.com/godaddy/asherah-ffi</url>
</repository>
</distributionManagement>
<properties>
<maven.compiler.release>11</maven.compiler.release>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<junit.jupiter.version>5.14.4</junit.jupiter.version>
<asherah.java.nativeLibraryPath>${project.basedir}/../../target/debug</asherah.java.nativeLibraryPath>
</properties>
<dependencies>
<dependency>
<groupId>org.json</groupId>
<artifactId>json</artifactId>
<version>20240303</version>
</dependency>
<!-- Industry-standard logging facade. Lets callers register an
org.slf4j.Logger / ILoggerFactory directly via Asherah.setLogHook(...);
the binding bridges the LogEvent stream to whichever backend (Logback,
Log4j2, java.util.logging) the host has wired SLF4J to. -->
<dependency>
<groupId>org.slf4j</groupId>
<artifactId>slf4j-api</artifactId>
<version>2.0.17</version>
</dependency>
<!-- Industry-standard JVM metrics facade (Spring Boot, Micronaut, Quarkus
all consume from a Micrometer MeterRegistry). Optional dep — only the
AsherahMicrometer helper class references it, so callers without
Micrometer on classpath load the rest of the API normally. -->
<dependency>
<groupId>io.micrometer</groupId>
<artifactId>micrometer-core</artifactId>
<version>1.16.5</version>
<optional>true</optional>
</dependency>
<dependency>
<groupId>org.junit.jupiter</groupId>
<artifactId>junit-jupiter</artifactId>
<version>${junit.jupiter.version}</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.slf4j</groupId>
<artifactId>slf4j-simple</artifactId>
<version>2.0.17</version>
<scope>test</scope>
</dependency>
</dependencies>
<build>
<plugins>
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>exec-maven-plugin</artifactId>
<version>3.6.3</version>
<executions>
<execution>
<id>build-native</id>
<phase>generate-resources</phase>
<goals>
<goal>exec</goal>
</goals>
<configuration>
<skip>${native.build.skip}</skip>
<workingDirectory>${project.basedir}/../..</workingDirectory>
<executable>cargo</executable>
<arguments>
<argument>build</argument>
<argument>-p</argument>
<argument>asherah-java</argument>
</arguments>
</configuration>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-surefire-plugin</artifactId>
<version>3.5.5</version>
<configuration>
<useSystemClassLoader>true</useSystemClassLoader>
<systemPropertyVariables>
<asherah.java.nativeLibraryPath>${asherah.java.nativeLibraryPath}</asherah.java.nativeLibraryPath>
</systemPropertyVariables>
<environmentVariables>
<SERVICE_NAME>svc</SERVICE_NAME>
<PRODUCT_ID>prod</PRODUCT_ID>
<KMS>static</KMS>
<STATIC_MASTER_KEY_HEX>2222222222222222222222222222222222222222222222222222222222222222</STATIC_MASTER_KEY_HEX>
</environmentVariables>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<version>3.15.0</version>
<configuration>
<release>${maven.compiler.release}</release>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-source-plugin</artifactId>
<version>3.4.0</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>3.12.0</version>
<configuration>
<failOnError>false</failOnError>
</configuration>
<executions>
<execution>
<id>attach-javadocs</id>
<goals>
<goal>jar</goal>
</goals>
</execution>
</executions>
</plugin>
</plugins>
</build>
<profiles>
<profile>
<id>central</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>
<configuration>
<gpgArguments>
<arg>--pinentry-mode</arg>
<arg>loopback</arg>
</gpgArguments>
<passphrase>${gpg.passphrase}</passphrase>
</configuration>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.sonatype.central</groupId>
<artifactId>central-publishing-maven-plugin</artifactId>
<version>0.10.0</version>
<extensions>true</extensions>
<configuration>
<publishingServerId>central</publishingServerId>
<autoPublish>${central.autoPublish}</autoPublish>
</configuration>
</plugin>
</plugins>
</build>
<properties>
<central.autoPublish>false</central.autoPublish>
</properties>
</profile>
</profiles>
</project>