pods4k
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>com.danrusu.pods4k</groupId> <artifactId>pods4k</artifactId> <version>0.7.0</version> </dependency>
<?xml version="1.0" encoding="UTF-8"?> <project xmlns="http://maven.apache.org/POM/4.0.0" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"> <!-- This module was also published with a richer model, Gradle metadata, --> <!-- which should be used instead. Do not delete the following line which --> <!-- is to indicate to Gradle or any Gradle module metadata file consumer --> <!-- that they should prefer consuming it instead. --> <!-- do_not_remove: published-with-gradle-metadata --> <modelVersion>4.0.0</modelVersion> <groupId>com.danrusu.pods4k</groupId> <artifactId>pods4k</artifactId> <version>0.7.0</version> <packaging>pom</packaging> <name>Performance-oriented data structures for Kotlin</name> <description>A collection of performance-oriented data structures providing performance and efficiency that might appear to be impossible at first glance</description> <url>https://github.com/daniel-rusu/pods4k</url> <inceptionYear>2024</inceptionYear> <licenses> <license> <name>The Apache Software License, Version 2.0</name> <url>https://www.apache.org/licenses/LICENSE-2.0.txt</url> <distribution>repo</distribution> </license> </licenses> <developers> <developer> <id>daniel-rusu</id> <name>Dan Rusu</name> <url>https://github.com/daniel-rusu</url> </developer> </developers> <scm> <connection>scm:git:git://github.com/daniel-rusu/pods4k.git</connection> <developerConnection>scm:git:ssh://git@github.com/daniel-rusu/pods4k.git</developerConnection> <url>https://github.com/daniel-rusu/pods4k</url> </scm> <dependencies> <dependency> <groupId>com.danrusu.pods4k.immutable-arrays</groupId> <artifactId>core</artifactId> <version>0.7.0</version> <scope>compile</scope> </dependency> <dependency> <groupId>com.danrusu.pods4k.immutable-arrays</groupId> <artifactId>transformations-to-standard-collections</artifactId> <version>0.7.0</version> <scope>compile</scope> </dependency> <dependency> <groupId>org.jetbrains.kotlin</groupId> <artifactId>kotlin-stdlib</artifactId> <version>1.9.25</version> <scope>compile</scope> </dependency> </dependencies> </project>