avaje-sigma
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>io.avaje</groupId> <artifactId>avaje-sigma</artifactId> <version>1.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 https://maven.apache.org/xsd/maven-4.0.0.xsd"> <modelVersion>4.0.0</modelVersion> <parent> <groupId>io.avaje</groupId> <artifactId>avaje-sigma-parent</artifactId> <version>1.0</version> </parent> <packaging>jar</packaging> <artifactId>avaje-sigma</artifactId> <scm> <developerConnection>scm:git:git@github.com:avaje/avaje-sigma.git</developerConnection> </scm> <properties> <maven.compiler.release>17</maven.compiler.release> <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> </properties> <dependencies> <dependency> <groupId>com.amazonaws</groupId> <artifactId>aws-lambda-java-core</artifactId> <version>1.2.3</version> </dependency> <dependency> <groupId>com.fasterxml.jackson.core</groupId> <artifactId>jackson-databind</artifactId> <version>2.18.2</version> <optional>true</optional> </dependency> <dependency> <groupId>io.avaje</groupId> <artifactId>avaje-jsonb</artifactId> <version>3.0</version> <optional>true</optional> </dependency> <dependency> <groupId>io.avaje</groupId> <artifactId>avaje-record-builder</artifactId> <version>1.2</version> </dependency> <dependency> <groupId>io.avaje</groupId> <artifactId>avaje-jsonb-generator</artifactId> <version>3.0</version> <scope>test</scope> </dependency> <dependency> <groupId>io.avaje</groupId> <artifactId>junit</artifactId> <version>1.5</version> <scope>test</scope> </dependency> </dependencies> <build> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-surefire-plugin</artifactId> <configuration> <forkCount>0</forkCount> </configuration> </plugin> </plugins> </build> </project>