Skip to content

Commit 1c04aa4

Browse files
committed
bumped version to 0.0.11
1 parent f5170f3 commit 1c04aa4

File tree

6 files changed

+56
-13
lines changed

6 files changed

+56
-13
lines changed

README.md

Lines changed: 15 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
[![Maintainer Status](http://stillmaintained.com/akhikhl/unpuzzle.png)](http://stillmaintained.com/akhikhl/unpuzzle)
44
[![Build Status](https://travis-ci.org/akhikhl/unpuzzle.png?branch=master)](https://travis-ci.org/akhikhl/unpuzzle)
5-
[![Latest Version](http://img.shields.io/badge/latest_version-0.0.10-3f6498.svg)](https://github.com/akhikhl/unpuzzle/tree/v0.0.10)
5+
[![Latest Version](http://img.shields.io/badge/latest_version-0.0.11-3f6498.svg)](https://github.com/akhikhl/unpuzzle/tree/v0.0.11)
66
[![License](http://img.shields.io/badge/license-MIT-d63434.svg)](#copyright-and-license)
77

88
**Unpuzzle** is a set of tools for mavenizing OSGi-bundles. You can consume Unpuzzle in two forms:
@@ -17,8 +17,9 @@ All versions of Unpuzzle are available at jcenter and maven-central under the gr
1717
- [downloadEclipse](#downloadeclipse)
1818
- [installEclipse](#installeclipse)
1919
- [uninstallEclipse](#uninstalleclipse)
20+
- [uninstallAllEclipseVersions](#uninstallalleclipseversions)
2021
- [uploadEclipse](#uploadeclipse)
21-
- [cleanEclipse](#cleaneclipse)
22+
- [purgeEclipse](#purgeeclipse)
2223
4. [Configuration DSL](#configuration-dsl)
2324
5. [uploadEclipse configuration](#uploadeclipse-configuration)
2425
6. [Configuration hierarchy](#configuration-hierarchy)
@@ -65,7 +66,7 @@ from it's distribution site and install eclipse plugins to the local maven repos
6566
$HOME/.m2/repository, into maven group "eclipse-kepler".
6667

6768
Alternatively, you can download the script from https://raw.github.com/akhikhl/unpuzzle/master/pluginScripts/unpuzzle.plugin
68-
to the project folder and include it like this:
69+
to the project directory and include it like this:
6970

7071
```groovy
7172
apply from: 'unpuzzle.plugin'
@@ -77,18 +78,18 @@ or feel free copying (and modifying) the declarations from this script to your "
7778

7879
### downloadEclipse
7980

80-
**downloadEclipse** task downloads eclipse distribution from the official site,
81-
then unpacks it to the $HOME/.unpuzzle folder.
81+
**downloadEclipse** task downloads and unpacks distribution of the selected Eclipse version
82+
from the official site into directory $HOME/.unpuzzle.
8283

8384
By default Unpuzzle downloads eclipse kepler SR1, delta-pack and eclipse-SDK. You can fine-tune, which version of eclipse is downloaded and with which add-ons by providing your own [configuration](#gradle-plugin-extension).
8485

8586
Before downloading a distribution package this task compares file size to the one returned by HTTP HEAD request. If file size did not change, no download is performed.
8687

87-
**Hint**: you can force re-download of eclipse distribution simply by deleting *.zip and *.tar.gz files in the folder $HOME/.unpuzzle/downloaded.
88+
**Hint**: you can force re-download of eclipse distribution simply by deleting *.zip and *.tar.gz files in the directory $HOME/.unpuzzle/downloaded.
8889

8990
### installEclipse
9091

91-
**installEclipse** task mavenizes all OSGi-bundles of the downloaded eclipse distribution
92+
**installEclipse** task mavenizes all OSGi-bundles of selected Eclipse version
9293
and installs the generated maven artifacts to local maven repository ($HOME/.m2/repository).
9394

9495
By default all OSGi-bundles are installed into "eclipse-kepler" maven group.
@@ -98,7 +99,11 @@ installEclipse task depends on [downloadEclipse](#downloadeclipse] task.
9899

99100
### uninstallEclipse
100101

101-
**uninstallEclipse** task uninstalls installed OSGi-bundles of the downloaded eclipse distribution from the local maven repository ($HOME/.m2/repository).
102+
**uninstallEclipse** task uninstalls installed OSGi-bundles of the selected Eclipse version from the local maven repository ($HOME/.m2/repository).
103+
104+
### uninstallAllEclipseVersions
105+
106+
**uninstallAllEclipseVersions** task uninstalls installed OSGi-bundles of all Eclipse versions from the local maven repository ($HOME/.m2/repository).
102107

103108
### uploadEclipse
104109

@@ -111,9 +116,9 @@ You can define other maven group by providing your own [configuration](#gradle-p
111116

112117
uploadEclipse task depends on [downloadEclipse](#downloadeclipse] task.
113118

114-
### cleanEclipse
119+
### purgeEclipse
115120

116-
**cleanEclipse** task cleans everything specific to Unpuzzle plugin. Particularly, it uninstalls installed maven artifacts and deletes directory $HOME/.unpuzzle.
121+
**purgeEclipse** task cleans everything specific to Unpuzzle plugin. Particularly, it uninstalls installed maven artifacts and deletes directory $HOME/.unpuzzle.
117122

118123
## Configuration DSL
119124

build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ buildscript {
1212

1313
ext {
1414
group = 'org.akhikhl.unpuzzle'
15-
version = '0.0.10'
15+
version = '0.0.11'
1616
groovy_version = '1.8.6'
1717
spock_version = '0.7-groovy-1.8'
1818
}

examples/deployEclipseKepler/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ buildscript {
88
}
99

1010
dependencies {
11-
classpath 'org.akhikhl.unpuzzle:unpuzzle-eclipse2maven:0.0.10'
11+
classpath 'org.akhikhl.unpuzzle:unpuzzle-eclipse2maven:+'
1212
}
1313
}
1414

examples/deployEclipseKeplerViaPlugin/unpuzzle.plugin

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ buildscript {
88
}
99

1010
dependencies {
11-
classpath 'org.akhikhl.unpuzzle:unpuzzle-plugin:0.0.7'
11+
classpath 'org.akhikhl.unpuzzle:unpuzzle-plugin:+'
1212
}
1313
}
1414

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
buildscript {
2+
repositories {
3+
mavenLocal()
4+
jcenter()
5+
mavenCentral()
6+
}
7+
8+
dependencies {
9+
classpath 'org.akhikhl.unpuzzle:unpuzzle-plugin:0.0.10'
10+
}
11+
}
12+
13+
// apply plugin: 'unpuzzle-plugin'
14+
15+
import org.akhikhl.unpuzzle.UnpuzzlePlugin
16+
17+
if (!project.plugins.findPlugin(UnpuzzlePlugin))
18+
project.apply(plugin: UnpuzzlePlugin)
19+
Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
buildscript {
2+
repositories {
3+
mavenLocal()
4+
jcenter()
5+
mavenCentral()
6+
}
7+
8+
dependencies {
9+
classpath 'org.akhikhl.unpuzzle:unpuzzle-plugin:0.0.11'
10+
}
11+
}
12+
13+
// apply plugin: 'unpuzzle-plugin'
14+
15+
import org.akhikhl.unpuzzle.UnpuzzlePlugin
16+
17+
if (!project.plugins.findPlugin(UnpuzzlePlugin))
18+
project.apply(plugin: UnpuzzlePlugin)
19+

0 commit comments

Comments
 (0)