java-collection-framework
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency>
<groupId>com.craterdog</groupId>
<artifactId>java-collection-framework</artifactId>
<version>3.18</version>
</dependency><!--
************************************************************************
* Copyright (c) Crater Dog Technologies(TM). All Rights Reserved. *
************************************************************************
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. *
* *
* This code is free software; you can redistribute it and/or modify it *
* under the terms of The MIT License (MIT), as published by the Open *
* Source Initiative. (See https://opensource.org/licenses/MIT) *
************************************************************************
-->
<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>com.craterdog.maven-parent-poms</groupId>
<artifactId>java-pojo</artifactId>
<version>3.22</version>
</parent>
<organization>
<name>Crater Dog Technologies(TM)</name>
<url>https://craterdog.com</url>
</organization>
<name>Crater Dog Java Collection Framework</name>
<description>A set of interfaces and classes that define a Java collection framework.</description>
<url>https://github.com/craterdog/java-collection-framework/wiki</url>
<groupId>com.craterdog</groupId>
<artifactId>java-collection-framework</artifactId>
<version>3.18</version>
<packaging>jar</packaging>
<licenses>
<license>
<name>The MIT License</name>
<url>https://opensource.org/licenses/MIT</url>
</license>
</licenses>
<developers>
<developer>
<name>Derk Norton</name>
<email>derk.norton@gmail.com</email>
<organization>Crater Dog Technologies(TM)</organization>
<organizationUrl>https://craterdog.com</organizationUrl>
</developer>
</developers>
<properties>
<java-smart-objects-version>3.18</java-smart-objects-version>
</properties>
<dependencies>
<dependency>
<groupId>com.craterdog</groupId>
<artifactId>java-smart-objects</artifactId>
<version>${java-smart-objects-version}</version>
</dependency>
</dependencies>
<profiles>
<!--
This profile should be used when doing final verification prior to releasing a maven
project. This profile can be activated by including "-P verify" on the commandline.
-->
<profile>
<id>verify</id>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-javadoc-plugin</artifactId>
<version>${maven-javadoc-plugin-version}</version>
<configuration>
<!-- disable java.lang.* and java.util.* links for this project only to highlight
the difference between Java collections and Crater Dog collections. -->
<detectJavaApiLink>false</detectJavaApiLink>
<links>
<link>https://craterdog.github.io/java-core-interfaces/latest/</link>
<link>https://craterdog.github.io/java-general-utilities/latest/</link>
<link>https://craterdog.github.io/java-smart-objects/latest/</link>
</links>
</configuration>
</plugin>
</plugins>
</build>
</profile>
</profiles>
<scm>
<connection>scm:git:git@github.com:craterdog/java-collection-framework.git</connection>
<developerConnection>scm:git:git@github.com:craterdog/java-collection-framework.git</developerConnection>
<url>git@github.com:craterdog/java-collection-framework.git</url>
<tag>java-collection-framework-3.18</tag>
</scm>
</project>