xymodem
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>net.digger</groupId> <artifactId>xymodem</artifactId> <version>1.1.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>net.digger</groupId> <artifactId>xymodem</artifactId> <version>1.1.0</version> <name>${project.groupId}:${project.artifactId}</name> <description>Java implementation of XModem and YModem protocols, for downloading files.</description> <url>https://github.com/diggernet/XYModem</url> <licenses> <license> <name>GNU Lesser General Public License (LGPL), Version 3.0</name> <url>https://www.gnu.org/licenses/lgpl-3.0.html</url> </license> </licenses> <developers> <developer> <name>Dave Walton</name> <email>dwalton@digger.net</email> <url>https://github.com/diggernet</url> </developer> </developers> <scm> <connection>scm:git:git://github.com/diggernet/XYModem.git</connection> <developerConnection>scm:git:ssh://github.com:diggernet/XYModem.git</developerConnection> <url>https://github.com/diggernet/XYModem/tree/develop</url> </scm> <issueManagement> <url>https://github.com/diggernet/XYModem/issues</url> <system>GitHub Issues</system> </issueManagement> <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> <dependencies> <!-- https://mvnrepository.com/artifact/net.digger/crc-util --> <dependency> <groupId>net.digger</groupId> <artifactId>crc-util</artifactId> <version>1.0.0</version> </dependency> </dependencies> <build> <plugins> <plugin> <!-- https://mvnrepository.com/artifact/org.sonatype.plugins/nexus-staging-maven-plugin --> <groupId>org.sonatype.plugins</groupId> <artifactId>nexus-staging-maven-plugin</artifactId> <version>1.6.8</version> <extensions>true</extensions> <configuration> <serverId>ossrh</serverId> <nexusUrl>https://oss.sonatype.org/</nexusUrl> <autoReleaseAfterClose>false</autoReleaseAfterClose> </configuration> </plugin> </plugins> </build> <profiles> <profile> <id>release</id> <build> <plugins> <plugin> <!-- https://mvnrepository.com/artifact/org.apache.maven.plugins/maven-source-plugin --> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-source-plugin</artifactId> <version>2.4</version> <executions> <execution> <id>attach-sources</id> <goals> <goal>jar-no-fork</goal> </goals> </execution> </executions> </plugin> <plugin> <!-- https://mvnrepository.com/artifact/org.apache.maven.plugins/maven-javadoc-plugin --> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-javadoc-plugin</artifactId> <version>2.10.4</version> <executions> <execution> <id>attach-javadocs</id> <goals> <goal>jar</goal> </goals> </execution> </executions> </plugin> <plugin> <!-- https://mvnrepository.com/artifact/org.apache.maven.plugins/maven-gpg-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> </plugins> </build> </profile> </profiles> </project>