rclone-sync4j
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency>
<groupId>com.fathzer</groupId>
<artifactId>rclone-sync4j</artifactId>
<version>0.0.2</version>
</dependency><project xmlns="https://maven.apache.org/POM/4.0.0"
xmlns:xsi="https://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="https://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<parent>
<groupId>com.fathzer</groupId>
<artifactId>parent-pom</artifactId>
<version>1.1.0</version>
</parent>
<artifactId>rclone-sync4j</artifactId>
<version>0.0.2</version>
<name>rclone-sync4j</name>
<description>A Java wrapper for rclone sync.</description>
<url>https://github.com/fathzer/rclone-sync4j</url>
<scm>
<url>https://github.com/fathzer/rclone-sync4j.git</url>
<connection>https://github.com/fathzer/rclone-sync4j.git</connection>
</scm>
<properties>
<maven.compiler.source>17</maven.compiler.source>
<maven.compiler.target>17</maven.compiler.target>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<maven.compiler.release>17</maven.compiler.release>
</properties>
<dependencies>
<dependency>
<groupId>org.junit.jupiter</groupId>
<artifactId>junit-jupiter-api</artifactId>
<version>5.13.4</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.junit.jupiter</groupId>
<artifactId>junit-jupiter-params</artifactId>
<version>5.13.4</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.mockito</groupId>
<artifactId>mockito-core</artifactId>
<version>5.17.0</version>
<scope>test</scope>
</dependency>
</dependencies>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-javadoc-plugin</artifactId>
<version>3.11.3</version>
<configuration>
<source>1.8</source>
<docencoding>UTF-8</docencoding>
<header>${project.version}</header>
<bottom>${project.version}</bottom>
<sourceFileExcludes>
<exclude>**/demo/**</exclude>
</sourceFileExcludes>
</configuration>
<executions>
<execution>
<id>javadoc_generation</id>
<phase>package</phase>
<goals>
<goal>jar</goal>
</goals>
</execution>
</executions>
</plugin>
</plugins>
</build>
</project>