| Group ID: |
io.github.joe-mcverry |
| Artifact ID: |
scrollingarray |
| Version: |
1.0.8 |
| Last modified: |
31.05.2026 21:07 |
| Packaging: |
jar |
| Name: |
ScrollingArray |
| Description: |
A utility library for accessing arrays using different combinatorial scrolling patterns. |
| URL: |
https://github.com/joe-mcverry/scrollingarray |
|
|
| Size: |
11.0 KB |
| Download: |
https://repo.maven.apache.org/maven2/io/github/joe-mcverry/scrollingarray/1.0.8/scrollingarray-1.0.8.jar |
| POM: |
Show
hide
<?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 https://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<groupId>io.github.joe-mcverry</groupId>
<artifactId>scrollingarray</artifactId>
<version>1.0.8</version>
<packaging>jar</packaging>
<name>ScrollingArray</name>
<description>A utility library for accessing arrays using different combinatorial scrolling patterns.</description>
<url>https://github.com/joe-mcverry/scrollingarray</url>
<licenses>
<license>
<name>Apache License, Version 2.0</name>
<url>https://www.apache.org/licenses/LICENSE-2.0.txt</url>
<distribution>repo</distribution>
</license>
</licenses>
<developers>
<developer>
<id>joe-mcverry</id>
<name>Joe McVerry</name>
<url>https://github.com/joe-mcverry</url>
</developer>
</developers>
<scm>
<connection>scm:git:git://github.com/joe-mcverry/scrollingarray.git</connection>
<developerConnection>scm:git:git@github.com:joe-mcverry/scrollingarray.git</developerConnection>
<url>https://github.com/joe-mcverry/scrollingarray</url>
</scm>
<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<maven.compiler.release>21</maven.compiler.release>
</properties>
<dependencies>
<dependency>
<groupId>org.junit.jupiter</groupId>
<artifactId>junit-jupiter</artifactId>
<version>5.14.4</version>
<scope>test</scope>
</dependency>
</dependencies>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<version>3.13.0</version>
</plugin>
<!-- Sources JAR -->
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-source-plugin</artifactId>
<version>3.4.0</version>
<executions>
<execution>
<id>attach-sources</id>
<goals><goal>jar-no-fork</goal></goals>
</execution>
</executions>
</plugin>
<!-- Javadoc JAR -->
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-javadoc-plugin</artifactId>
<version>3.12.0</version>
<executions>
<execution>
<id>attach-javadocs</id>
<goals><goal>jar</goal></goals>
</execution>
</executions>
</plugin>
<!-- GPG Signing - Force the correct key -->
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-gpg-plugin</artifactId>
<version>3.2.8</version>
<executions>
<execution>
<id>sign-artifacts</id>
<phase>verify</phase>
<goals><goal>sign</goal></goals>
</execution>
</executions>
<configuration>
<gpgKeyname>DC72184636E7AC8D</gpgKeyname>
<gpgArguments>
<arg>--pinentry-mode</arg>
<arg>loopback</arg>
</gpgArguments>
</configuration>
</plugin>
<!-- Maven Central Publishing -->
<plugin>
<groupId>org.sonatype.central</groupId>
<artifactId>central-publishing-maven-plugin</artifactId>
<version>0.10.0</version>
<extensions>true</extensions>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-surefire-plugin</artifactId>
<version>3.5.5</version>
</plugin>
</plugins>
</build>
</project>
|
| Maven: |
<dependency>
<groupId>io.github.joe-mcverry</groupId>
<artifactId>scrollingarray</artifactId>
<version>1.0.8</version>
</dependency>
|
| Gradle: |
io.github.joe-mcverry:scrollingarray:1.0.8 |
|
Contained classes:
|
Show all
|
|
Contained classes:
|
|
| Dependencies: |
-
[JAR]
junit-jupiter-5.14.4.jar
in org/junit/jupiter/junit-jupiter/5.14.4
|
| Dependency Graph: |
Show
Less
More
|