Skip to content

Commit d445275

Browse files
committed
Merge pull request #254 from brunobowden/version
New Version: 0.3.0-alpha
2 parents 89f6fa7 + fcd32dd commit d445275

File tree

1 file changed

+10
-5
lines changed

1 file changed

+10
-5
lines changed

build.gradle

Lines changed: 10 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,6 @@
1616

1717
// Based on https://plugins.gradle.org/docs/publish-plugin
1818

19-
// First, apply the publishing plugin
2019
plugins {
2120
id "com.gradle.plugin-publish" version "0.9.0"
2221
}
@@ -33,18 +32,24 @@ task wrapper(type: Wrapper) {
3332
}
3433

3534
group = 'com.github.j2objccontrib.j2objcgradle'
36-
version = '0.2.2-alpha'
35+
version = '0.3.0-alpha'
3736

3837
pluginBundle {
3938
website = 'https://www.github.com/j2objc-contrib/j2objc-gradle/'
4039
vcsUrl = 'https://github.com/j2objc-contrib/j2objc-gradle'
41-
description = 'J2ObjC Gradle Build Plugin'
42-
tags = ['j2objc']
40+
description = 'Gradle Plugin for J2ObjC, which is an open-source tool from Google that translates ' +
41+
'Java source code to Objective-C for the iOS (iPhone/iPad) platform. The plugin is ' +
42+
'not affiliated with Google but was developed by former Google Engineers and others. ' +
43+
'J2ObjC enables Java source to be part of an iOS application\'s build, as no editing ' +
44+
'of the generated files is necessary. The goal is to write an app\'s non-UI code ' +
45+
'(such as application logic and data models) in Java, which is then shared by web ' +
46+
'apps (using GWT), Android apps, and iOS apps.'
47+
tags = ['android', 'java', 'j2objc', 'ios', 'iphone', 'objective-c', 'xcode']
4348

4449
plugins {
4550
j2objcPlugin {
4651
id = 'com.github.j2objccontrib.j2objcgradle'
47-
displayName = 'J2ObjC Gradle Build Plugin'
52+
displayName = 'J2ObjC Gradle Plugin'
4853
}
4954
}
5055
}

0 commit comments

Comments
 (0)