constrain
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency>
<groupId>io.github.drewctaylor</groupId>
<artifactId>constrain</artifactId>
<version>0.0.2</version>
</dependency><?xml version="1.0" encoding="UTF-8"?>
<project>
<modelVersion>4.0.0</modelVersion>
<parent>
<groupId>io.github.drewctaylor</groupId>
<artifactId>maven</artifactId>
<version>0.0.2</version>
</parent>
<artifactId>constrain</artifactId>
<version>0.0.2</version>
<packaging>jar</packaging>
<name>${project.groupId}:${project.artifactId}</name>
<description>Constrain values to be less than a maximum, greater than a minimum, or both, and to encode those constraints into the type of the value.</description>
<url>https://github.com/drewctaylor/constrain</url>
<inceptionYear>2020</inceptionYear>
<organization>
<name>Drew Taylor</name>
<url>https://github.com/drewctaylor</url>
</organization>
<licenses>
<license>
<name>MIT</name>
<url>https://opensource.org/licenses/MIT</url>
</license>
</licenses>
<developers>
<developer>
<name>Drew Taylor</name>
<email>3899848+drewctaylor@users.noreply.github.com</email>
<organization>Drew Taylor</organization>
<organizationUrl>https://github.com/drewctaylor</organizationUrl>
</developer>
</developers>
<scm>
<connection>https://github.com/drewctaylor/constrain</connection>
<developerConnection>https://github.com/drewctaylor/constrain</developerConnection>
<url>https://github.com/drewctaylor/constrain</url>
</scm>
<dependencies>
<dependency>
<groupId>io.github.drewctaylor</groupId>
<artifactId>require</artifactId>
<version>0.0.2</version>
</dependency>
<dependency>
<groupId>io.github.drewctaylor</groupId>
<artifactId>type-encoded</artifactId>
<version>0.0.2</version>
</dependency>
<dependency>
<groupId>org.junit.jupiter</groupId>
<artifactId>junit-jupiter</artifactId>
<version>5.8.2</version>
<scope>test</scope>
</dependency>
</dependencies>
<repositories>
<repository>
<releases>
<enabled>true</enabled>
</releases>
<snapshots>
<enabled>false</enabled>
</snapshots>
<id>ossrh</id>
<url>https://oss.sonatype.org/service/local/staging/deploy/maven2</url>
</repository>
<repository>
<releases>
<enabled>false</enabled>
</releases>
<snapshots>
<enabled>true</enabled>
</snapshots>
<id>ossrh-snapshot</id>
<url>https://oss.sonatype.org/content/repositories/snapshots</url>
</repository>
</repositories>
</project>