rsync4j-all
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency>
<groupId>com.github.fracpete</groupId>
<artifactId>rsync4j-all</artifactId>
<version>3.3.0-4</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>
<parent>
<groupId>com.github.fracpete</groupId>
<artifactId>rsync4j-pom</artifactId>
<version>3.3.0-4</version>
</parent>
<artifactId>rsync4j-all</artifactId>
<packaging>jar</packaging>
<name>rsync4j-all</name>
<description>Combines all rsync4j modules.</description>
<organization>
<name>University of Waikato, Hamilton, NZ</name>
<url>http://www.waikato.ac.nz/</url>
</organization>
<licenses>
<license>
<name>GNU General Public License 3</name>
<url>http://www.gnu.org/licenses/gpl-3.0.txt</url>
</license>
</licenses>
<developers>
<developer>
<id>fracpete</id>
<name>Peter Reutemann</name>
<email>fracpete@waikato.ac.nz</email>
<url>http://www.cms.waikato.ac.nz/~fracpete/</url>
<organization>University of Waikato, CS department</organization>
<organizationUrl>http://www.cs.waikato.ac.nz/</organizationUrl>
<roles>
<role>developer</role>
</roles>
<timezone>+12</timezone>
</developer>
</developers>
<dependencies>
<dependency>
<groupId>com.github.fracpete</groupId>
<artifactId>rsync4j-core</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>com.github.fracpete</groupId>
<artifactId>rsync4j-windows64</artifactId>
<version>${project.version}</version>
</dependency>
</dependencies>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-jar-plugin</artifactId>
<configuration>
<archive>
<manifestEntries>
<Automatic-Module-Name>rsync4j.all</Automatic-Module-Name>
</manifestEntries>
</archive>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-source-plugin</artifactId>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-assembly-plugin</artifactId>
</plugin>
<plugin>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-maven-plugin</artifactId>
</plugin>
</plugins>
</build>
</project>