hash-deque
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>dev.lucasmdjl</groupId> <artifactId>hash-deque</artifactId> <version>0.2.0</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>dev.lucasmdjl</groupId> <artifactId>hash-deque-parent</artifactId> <version>0.1.0</version> </parent> <artifactId>hash-deque</artifactId> <version>0.2.0</version> <packaging>jar</packaging> <name>Hash Deque</name> <description>A library providing Deque-like collections with Set and Map properties.</description> <url>https://github.com/lucasmdjl/hash-deque</url> <licenses> <license> <name>Mozilla Public License, v. 2.0</name> <url>https://www.mozilla.org/en-US/MPL/2.0/</url> </license> </licenses> <developers> <developer> <name>Lucas M. de Jong Larrarte</name> <url>https://github.com/lucasmdjl</url> </developer> </developers> <scm> <connection>scm:git:git://github.com/lucasmdjl/hash-deque.git</connection> <developerConnection>scm:git:ssh://git@github.com:lucasmdjl/hash-deque.git</developerConnection> <url>https://github.com/lucasmdjl/hash-deque</url> </scm> <properties> <java.version>11</java.version> <!-- Dependency Versions --> <jetbrains.annotations.version>26.0.2</jetbrains.annotations.version> <junit.version>5.13.3</junit.version> </properties> <dependencies> <dependency> <groupId>org.jetbrains</groupId> <artifactId>annotations</artifactId> <version>${jetbrains.annotations.version}</version> <scope>provided</scope> </dependency> <!-- JUnit 5 Testing Dependencies --> <dependency> <groupId>org.junit.jupiter</groupId> <artifactId>junit-jupiter-api</artifactId> <version>${junit.version}</version> <scope>test</scope> </dependency> <dependency> <groupId>org.junit.jupiter</groupId> <artifactId>junit-jupiter-engine</artifactId> <version>${junit.version}</version> <scope>test</scope> </dependency> <dependency> <groupId>org.junit.jupiter</groupId> <artifactId>junit-jupiter-params</artifactId> <version>${junit.version}</version> <scope>test</scope> </dependency> </dependencies> <build> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-surefire-plugin</artifactId> <version>${maven.surefire.plugin.version}</version> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-source-plugin</artifactId> <version>${maven.source.plugin.version}</version> <executions> <execution> <id>attach-sources</id> <phase>package</phase> <goals> <goal>jar-no-fork</goal> </goals> </execution> </executions> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-javadoc-plugin</artifactId> <version>${maven.javadoc.plugin.version}</version> <executions> <execution> <id>attach-javadocs</id> <goals> <goal>jar</goal> </goals> </execution> </executions> </plugin> <plugin> <groupId>org.sonatype.central</groupId> <artifactId>central-publishing-maven-plugin</artifactId> <version>${central.publishing.plugin.version}</version> <extensions>true</extensions> <configuration> <publishingServerId>${central.server.id}</publishingServerId> <waitUntil>published</waitUntil> </configuration> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-gpg-plugin</artifactId> <version>${maven.gpg.plugin.version}</version> <executions> <execution> <id>sign-artifacts</id> <phase>verify</phase> <goals> <goal>sign</goal> </goals> <configuration> <keyname>${gpg.keyname}</keyname> </configuration> </execution> </executions> </plugin> </plugins> </build> </project>