dsalib-utils
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>io.github.manoj-0207</groupId> <artifactId>dsalib-utils</artifactId> <version>1.0.0</version> </dependency>
<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> <groupId>io.github.manoj-0207</groupId> <artifactId>dsalib-utils</artifactId> <version>1.0.0</version> <packaging>jar</packaging> <name>dsalib-utils</name> <description>Data structures and algorithms utility library for Java</description> <url>https://github.com/MANOJ-0207/dsalib-utils</url> <licenses> <license> <name>The Apache License, Version 2.0</name> <url>http://www.apache.org/licenses/LICENSE-2.0.txt</url> <distribution>repo</distribution> </license> </licenses> <scm> <url>https://github.com/MANOJ-0207/dsalib-utils</url> <connection>scm:git:https://github.com/MANOJ-0207/dsalib-utils.git</connection> <developerConnection>scm:git:https://github.com/MANOJ-0207/dsalib-utils.git</developerConnection> </scm> <developers> <developer> <id>MANOJ-0207</id> <name>Manoj Kumar G</name> <url>https://github.com/MANOJ-0207</url> </developer> </developers> <properties> <maven.compiler.source>16</maven.compiler.source> <maven.compiler.target>16</maven.compiler.target> <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> </properties> <dependencies> <dependency> <groupId>org.junit.jupiter</groupId> <artifactId>junit-jupiter</artifactId> <version>5.10.0</version> <scope>test</scope> </dependency> </dependencies> <distributionManagement> <!-- Release/staging repository via Central Publisher Staging API --> <repository> <id>ossrh</id> <url>https://ossrh-staging-api.central.sonatype.com/service/local/staging/deploy/maven2/</url> </repository> <!-- Snapshot repository --> <snapshotRepository> <id>ossrh</id> <url>https://ossrh-staging-api.central.sonatype.com/content/repositories/snapshots/</url> </snapshotRepository> </distributionManagement> <build> <plugins> <!-- Java compiler --> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-compiler-plugin</artifactId> <version>3.11.0</version> </plugin> <!-- Attach sources JAR --> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-source-plugin</artifactId> <version>3.2.1</version> <executions> <execution> <id>attach-sources</id> <phase>verify</phase> <goals> <goal>jar</goal> </goals> </execution> </executions> </plugin> <!-- Custom Javadoc JAR from your doc-javadoc directory --> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-jar-plugin</artifactId> <version>3.3.0</version> <executions> <execution> <id>custom-javadoc-jar</id> <phase>package</phase> <goals> <goal>jar</goal> </goals> <configuration> <classesDirectory>doc-javadoc</classesDirectory> <classifier>javadoc</classifier> </configuration> </execution> </executions> </plugin> <!-- GPG signing of all artifacts --> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-gpg-plugin</artifactId> <version>3.1.0</version> <executions> <execution> <id>sign-artifacts</id> <phase>verify</phase> <goals> <goal>sign</goal> </goals> </execution> </executions> </plugin> <!-- Nexus Staging plugin pointing at new staging API --> <plugin> <groupId>org.sonatype.plugins</groupId> <artifactId>nexus-staging-maven-plugin</artifactId> <version>1.6.13</version> <extensions>true</extensions> <configuration> <serverId>ossrh</serverId> <nexusUrl>https://ossrh-staging-api.central.sonatype.com/</nexusUrl> <autoReleaseAfterClose>true</autoReleaseAfterClose> </configuration> </plugin> </plugins> </build> </project>