-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbuild.gradle
More file actions
41 lines (37 loc) · 1012 Bytes
/
build.gradle
File metadata and controls
41 lines (37 loc) · 1012 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
// git tag -a 1.0.0 -m "New release"
// git push --tags
// in ~/.gradle/gradle.properties: gradle.publish.key= gradle.publish.secret=
// gradle clean build install publishPlugins
apply plugin: 'eclipse'
apply plugin: 'groovy'
apply plugin: 'maven'
apply plugin: 'com.cinnober.gradle.semver-git'
apply plugin: "com.gradle.plugin-publish"
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
mavenCentral()
}
dependencies {
classpath "com.cinnober.gradle:semver-git:2.2.2"
classpath "com.gradle.publish:plugin-publish-plugin:0.9.1"
}
}
dependencies {
compile gradleApi()
compile localGroovy()
}
pluginBundle {
website = 'https://github.com/amarcinkowski/gradle-eclipse-php-plugin'
vcsUrl = 'https://github.com/amarcinkowski/gradle-eclipse-php-plugin'
description = 'Generate project files for Eclipse PHP'
tags = ['eclipse', 'php']
plugins {
eclipsePHPPlugin {
id = 'io.github.amarcinkowski.eclipse-php'
displayName = 'Gradle Eclipse PHP plugin'
}
}
}