sync4j
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>com.goeuro</groupId> <artifactId>sync4j</artifactId> <version>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>com.goeuro</groupId> <artifactId>sync4j</artifactId> <name>sync4j</name> <version>0.2</version> <url>https://github.com/goeuro/sync4j</url> <description>Library to sync easily and safe files to/from different kind of file systems.</description> <licenses> <license> <name>MIT</name> </license> </licenses> <organization> <url>https://goeuro.com</url> <name>GoEuro Travel GmbH</name> </organization> <developers> <developer> <id>gregor.noczinski</id> <name>Gregor Noczinski</name> <email>gregor.noczsinki@goeuro.com</email> </developer> </developers> <properties> <versions.java>1.8</versions.java> <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> <maven.build.timestamp.format>yyyy-MM-dd'T'HH:mm:ssX</maven.build.timestamp.format> <project.build.timestamp>${maven.build.timestamp}</project.build.timestamp> <versions.google-api>1.22.0</versions.google-api> <versions.google-api-storage>v1-rev100-1.22.0</versions.google-api-storage> </properties> <dependencies> <!-- Common --> <dependency> <groupId>com.google.code.findbugs</groupId> <artifactId>jsr305</artifactId> <version>3.0.1</version> </dependency> <!-- Google Cloud --> <dependency> <groupId>com.google.api-client</groupId> <artifactId>google-api-client-java6</artifactId> <version>${versions.google-api}</version> <scope>provided</scope> </dependency> <dependency> <groupId>com.google.http-client</groupId> <artifactId>google-http-client-jackson2</artifactId> <version>${versions.google-api}</version> <scope>provided</scope> </dependency> <dependency> <groupId>com.google.apis</groupId> <artifactId>google-api-services-storage</artifactId> <version>${versions.google-api-storage}</version> <scope>provided</scope> </dependency> <!-- Testing --> <dependency> <groupId>junit</groupId> <artifactId>junit</artifactId> <version>4.12</version> <scope>test</scope> </dependency> <dependency> <groupId>org.echocat</groupId> <artifactId>java-unit-test-utils</artifactId> <version>0.6</version> <scope>test</scope> </dependency> <dependency> <groupId>org.mockito</groupId> <artifactId>mockito-core</artifactId> <version>2.7.18</version> <scope>test</scope> </dependency> </dependencies> <build> <resources> <resource> <directory>${basedir}/src/main/resources</directory> <filtering>true</filtering> </resource> </resources> <plugins> <plugin> <groupId>org.jacoco</groupId> <artifactId>jacoco-maven-plugin</artifactId> <configuration> <excludes> <exclude>javax/annotation/**/*</exclude> </excludes> </configuration> <executions> <execution> <id>default-prepare-agent</id> <goals> <goal>prepare-agent</goal> </goals> </execution> <execution> <phase>test</phase> <goals> <goal>report</goal> </goals> </execution> </executions> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-javadoc-plugin</artifactId> <executions> <execution> <goals> <goal>jar</goal> </goals> </execution> </executions> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-source-plugin</artifactId> <executions> <execution> <goals> <goal>jar</goal> </goals> </execution> </executions> </plugin> </plugins> <pluginManagement> <plugins> <plugin> <groupId>org.jacoco</groupId> <artifactId>jacoco-maven-plugin</artifactId> <version>0.7.9</version> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-surefire-plugin</artifactId> <version>2.19.1</version> <configuration> <environmentVariables> <GC_BUCKET_NAME>com-github-goeuro-rsync4j-integration-testing</GC_BUCKET_NAME> <SERVICE_ACCOUNT_CREDENTIAL_PROVIDER_TEST_CONTENT>abc</SERVICE_ACCOUNT_CREDENTIAL_PROVIDER_TEST_CONTENT> </environmentVariables> </configuration> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-gpg-plugin</artifactId> <version>1.6</version> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-javadoc-plugin</artifactId> <!--suppress MavenModelInspection --> <version>2.10.4</version> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-jar-plugin</artifactId> <version>3.0.2</version> <configuration> <archive> <manifest> <addDefaultImplementationEntries>true</addDefaultImplementationEntries> <addDefaultSpecificationEntries>true</addDefaultSpecificationEntries> </manifest> </archive> </configuration> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-source-plugin</artifactId> <version>3.0.1</version> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-compiler-plugin</artifactId> <version>3.6.1</version> <configuration> <source>${versions.java}</source> <target>${versions.java}</target> </configuration> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-deploy-plugin</artifactId> <version>2.8.2</version> <dependencies> <dependency> <groupId>org.apache.maven.wagon</groupId> <artifactId>wagon-webdav-jackrabbit</artifactId> <version>2.3</version> </dependency> </dependencies> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-release-plugin</artifactId> <version>2.5.3</version> <configuration> <tagNameFormat>version-@{project.version}</tagNameFormat> <!--suppress MavenModelInspection --> <arguments>-DskipTests -Psign -Dgpg.passphrase=${passphrase} ${arguments}</arguments> <scmCommentPrefix>* [RELEASE]</scmCommentPrefix> <autoVersionSubmodules>true</autoVersionSubmodules> </configuration> </plugin> </plugins> </pluginManagement> </build> <profiles> <profile> <id>sign</id> <build> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <!--suppress MavenModelInspection --> <artifactId>maven-gpg-plugin</artifactId> <executions> <execution> <id>sign-artifacts</id> <phase>verify</phase> <goals> <goal>sign</goal> </goals> <configuration> <keyname>com.github.goeuro</keyname> </configuration> </execution> </executions> </plugin> </plugins> </build> </profile> </profiles> <issueManagement> <system>GitHub</system> <url>https://github.com/goeuro/sync4j/issues</url> </issueManagement> <distributionManagement> <repository> <id>oss-sonartype-releases</id> <url>dav:https://oss.sonatype.org/service/local/staging/deploy/maven2</url> </repository> </distributionManagement> <scm> <connection>scm:git://github.com/goeuro/sync4j.git</connection> <developerConnection>scm:git:git@github.com:goeuro/sync4j.git</developerConnection> <url>https://github.com/goeuro/sync4j</url> <tag>version-0.2</tag> </scm> </project>