Skip to content

Commit

Permalink
Version up and README updated
Browse files Browse the repository at this point in the history
  • Loading branch information
mendhak committed May 3, 2017
1 parent 1890923 commit a6dfbee
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 5 deletions.
10 changes: 6 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ This Gradle plugin adds tasks to upload and download translation files from crow
Add this to your build.gradle:

plugins {
id "com.mendhak.gradlecrowdin" version "0.0.9"
id "com.mendhak.gradlecrowdin" version "0.1.0"
}

For pre-Gradle-2.1, follow the [instructions here](https://plugins.gradle.org/plugin/com.mendhak.gradlecrowdin)
Expand Down Expand Up @@ -158,9 +158,9 @@ In IDEA, the task should appear under the category crowdin as shown here

## Building

To build, run the uploadArchives task under upload. This doesn't actually upload it anywhere, it just copies it to the 'repo' folder.
To build, run the `uploadArchives` task under upload. This doesn't actually upload it anywhere, it just copies it to the 'repo' folder.

To reference it in another project locally, modify the gradle file to look like so:
You can then reference it in another project locally, modify the gradle file to look like so:

buildscript {
repositories {
Expand All @@ -170,8 +170,10 @@ To reference it in another project locally, modify the gradle file to look like
}
}
dependencies {
classpath 'com.mendhak.gradlecrowdin:crowdin-plugin:0.0.9'
classpath 'com.mendhak.gradlecrowdin:crowdin-plugin:0.1.0'
}
}

apply plugin: 'com.mendhak.gradlecrowdin'

A maintainer can then publish to Maven using the `bintrayUpload` task, and to the Gradle using `publishPlugins`
2 changes: 1 addition & 1 deletion plugin/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ dependencies {
}

group = 'com.mendhak.gradlecrowdin'
version = '0.0.9'
version = '0.1.0'
project.archivesBaseName='crowdin-plugin'
project.ext.set("version", version)
project.description='Gradle plugin for Crowdin.com, download and upload translation files'
Expand Down

0 comments on commit a6dfbee

Please sign in to comment.