diff --git a/artifactory-client-java-examples/README.md b/artifactory-client-java-examples/README.md index c74e1798d..3b8f38979 100644 --- a/artifactory-client-java-examples/README.md +++ b/artifactory-client-java-examples/README.md @@ -1,5 +1,7 @@ # Artifactory Java Client Examples -##Overview -The Artifactory Java Client provides simple yet powerful Artifactory connection and management within your Java code. -The client allows managing Artifactory repositories, users, groups, permissions and system configuration. It also allows searches, upload and download artifacts to or from Artifactory and a lot more. -The client's documentation is available [here](https://github.com/JFrogDev/artifactory-client-java). \ No newline at end of file +## Overview +The Artifactory Java Client provides a set of java APIs which you use to work with JFrog Artifactory from your java code. +It Allows managing Artifactory repositories, users, groups, permissions and system configuration. It also allows searches, +upload and download artifacts to or from Artifactory and a lot more. +The client's documentation is available [here](https://github.com/JFrogDev/artifactory-client-java).
+We created a few project examples, to help you get started using the client. \ No newline at end of file diff --git a/artifactory-client-java-examples/gradle-example/README.md b/artifactory-client-java-examples/gradle-example/README.md index 7be7fa69b..0afc5de88 100644 --- a/artifactory-client-java-examples/gradle-example/README.md +++ b/artifactory-client-java-examples/gradle-example/README.md @@ -1,7 +1,7 @@ # Gradle Artifactory Java Client Example ## Introduction -The Gradle example provides a project structure for using the Artifactory Java Client in a gradle project. +This example provides a project structure for using the Artifactory Java Client in a gradle project. In this project you will find how to set up Artifactory, create new repositories, and perform basic operations - upload, download and search artifacts using the Java Client. diff --git a/artifactory-client-java-examples/gradle-example/src/main/java/org/jfrog/example/ClientExample.java b/artifactory-client-java-examples/gradle-example/src/main/java/org/jfrog/example/ClientExample.java index 94cb6fabd..ff9c268ab 100644 --- a/artifactory-client-java-examples/gradle-example/src/main/java/org/jfrog/example/ClientExample.java +++ b/artifactory-client-java-examples/gradle-example/src/main/java/org/jfrog/example/ClientExample.java @@ -1,4 +1,4 @@ -package org.jfrog.artifactory-java-client-examples.gradle-example; +package org.jfrog.example; import org.apache.commons.io.FileUtils; import org.apache.commons.lang.StringUtils; diff --git a/artifactory-client-java-examples/maven-example/README.md b/artifactory-client-java-examples/maven-example/README.md index 9ce81b78d..42120a0e8 100644 --- a/artifactory-client-java-examples/maven-example/README.md +++ b/artifactory-client-java-examples/maven-example/README.md @@ -1,7 +1,7 @@ # Maven Artifactory Java Client Example ## Introduction -The Maven example provides a project structure for using the Artifactory Java Client in a maven project. +This example provides a project structure for using the Artifactory Java Client in a maven project. In this project you will find how to set up Artifactory, create new repositories, and perform basic operations - upload, download and search artifacts using the Java Client. diff --git a/artifactory-client-java-examples/maven-example/src/main/java/org/jfrog/example/ClientExample.java b/artifactory-client-java-examples/maven-example/src/main/java/org/jfrog/example/ClientExample.java index b25bab1f7..eab1e6863 100644 --- a/artifactory-client-java-examples/maven-example/src/main/java/org/jfrog/example/ClientExample.java +++ b/artifactory-client-java-examples/maven-example/src/main/java/org/jfrog/example/ClientExample.java @@ -1,4 +1,4 @@ -package org.jfrog.artifactory-java-client-examples.maven-example; +package org.jfrog.example; import org.apache.commons.io.FileUtils; import org.apache.commons.lang.StringUtils;