comp-prog
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>dev.sahasrad</groupId> <artifactId>comp-prog</artifactId> <version>1.0.1</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/maven-v4_0_0.xsd"> <modelVersion>4.0.0</modelVersion> <groupId>dev.sahasrad</groupId> <artifactId>comp-prog</artifactId> <version>1.0.1</version> <packaging>jar</packaging> <name>Competitive Programming Util</name> <description>Competitive programming library for Java with Data Structures, I/O, and Math operations optimized for both runtime and typing efficiency. Note: External libraries are not allowed in many competitions. This library is geared toward training efficiency.</description> <url>http://sahasrad.dev/comp-prog</url> <build> <plugins> <plugin> <groupId>org.sonatype.central</groupId> <artifactId>central-publishing-maven-plugin</artifactId> <version>0.6.0</version> <extensions>true</extensions> <configuration> <publishingServerId>central</publishingServerId> </configuration> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-gpg-plugin</artifactId> <version>1.6</version> <executions> <execution> <id>sign-artifacts</id> <phase>verify</phase> <goals> <goal>sign</goal> </goals> </execution> </executions> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-source-plugin</artifactId> <version>3.2.1</version> <executions> <execution> <id>attach-sources</id> <goals> <goal>jar</goal> </goals> </execution> </executions> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-javadoc-plugin</artifactId> <version>3.4.0</version> <executions> <execution> <id>attach-javadocs</id> <goals> <goal>jar</goal> </goals> </execution> </executions> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-compiler-plugin</artifactId> <version>3.8.1</version> <configuration> <source>1.8</source> <target>1.8</target> </configuration> </plugin> </plugins> </build> <licenses> <license> <name>Apache License, Version 2.0</name> <url>http://www.apache.org/licenses/LICENSE-2.0.txt</url> <distribution>repo</distribution> </license> </licenses> <properties> <maven.compiler.source>1.8</maven.compiler.source> <maven.compiler.target>1.8</maven.compiler.target> <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> </properties> <developers> <developer> <name>Sahasrad Chippa</name> <email>sahasrad@gatech.edu</email> <organization>sahasrad.dev</organization> <organizationUrl>sahasrad.dev</organizationUrl> </developer> </developers> <scm> <connection>scm:git:git://github.com/SahasradC/CompProg.git</connection> <developerConnection>scm:git:ssh://github.com/SahasradC/CompProg.git</developerConnection> <url>http://github.com/SahasradC/comp-prog</url> </scm> <distributionManagement> <repository> <id>central</id> <url>https://oss.sonatype.org/content/repositories/releases/</url> </repository> <snapshotRepository> <id>central</id> <url>https://oss.sonatype.org/content/repositories/snapshots/</url> </snapshotRepository> </distributionManagement> </project>