data-error-detection
Used in
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>me.araopj</groupId> <artifactId>data-error-detection</artifactId> <version>0.0.2</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/xsd/maven-4.0.0.xsd"> <modelVersion>4.0.0</modelVersion> <groupId>me.araopj</groupId> <artifactId>data-error-detection</artifactId> <version>0.0.2</version> <packaging>jar</packaging> <name>${project.groupId}:${project.artifactId}</name> <description>CLI for data error detection that focuses on ParityCheck, Two Dimensional Parity, and Arithmetic Checksum.</description> <url>https://github.com/pitzzahh/data-error-detection</url> <properties> <maven.compiler.source>11</maven.compiler.source> <maven.compiler.target>11</maven.compiler.target> <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> </properties> <dependencies> <dependency> <groupId>me.araopj</groupId> <artifactId>cscreen</artifactId> <version>3.3.4</version> </dependency> <dependency> <groupId>org.junit.jupiter</groupId> <artifactId>junit-jupiter</artifactId> <version>5.10.1</version> <scope>test</scope> <exclusions> <exclusion> <artifactId>junit-jupiter</artifactId> <groupId>org.junit.jupiter</groupId> </exclusion> </exclusions> </dependency> </dependencies> <licenses> <license> <name>MIT License</name> <url>https://www.opensource.org/licenses/mit-license.php</url> </license> </licenses> <scm> <connection>scm:git:git://github.com/pitzzahh/data-error-detection.git</connection> <developerConnection>scm:git:ssh://github.com:pitzzahh/data-error-detection.git</developerConnection> <url>https://github.com/pitzzahh/data-error-detection</url> </scm> <developers> <developer> <name>Peter John Arao</name> <email>pitzzahh@gmail.com</email> <organizationUrl>https://github.com/pitzzahh</organizationUrl> </developer> </developers> <build> <plugins> <plugin> <groupId>org.sonatype.central</groupId> <artifactId>central-publishing-maven-plugin</artifactId> <version>0.1.2</version> <extensions>true</extensions> <configuration> <publishingServerId>central</publishingServerId> <tokenEnabled>true</tokenEnabled> </configuration> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-source-plugin</artifactId> <version>3.3.0</version> <executions> <execution> <id>attach-sources</id> <goals> <goal>jar-no-fork</goal> </goals> </execution> </executions> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-javadoc-plugin</artifactId> <version>3.6.3</version> <executions> <execution> <id>attach-javadocs</id> <goals> <goal>jar</goal> </goals> </execution> </executions> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-gpg-plugin</artifactId> <version>1.5</version> <executions> <execution> <id>sign-artifacts</id> <phase>verify</phase> <goals> <goal>sign</goal> </goals> </execution> </executions> </plugin> </plugins> </build> </project>