-
Notifications
You must be signed in to change notification settings - Fork 1
/
build.gradle
48 lines (39 loc) · 987 Bytes
/
build.gradle
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
42
43
44
45
46
47
48
plugins {
id 'groovy'
id 'maven-publish'
id 'org.ajoberstar.grgit' version '1.5.1'
id 'org.ajoberstar.release-opinion' version '1.5.1'
id 'com.gradle.plugin-publish' version '0.9.5'
}
repositories {
mavenCentral()
}
dependencies {
compile gradleApi()
compile localGroovy()
compile 'org.avaje.ebean:ebean-agent:8.1.1'
compile 'org.ow2.asm:asm:5.1'
}
group = 'com.janitovff'
publishing {
publications {
mavenJava(MavenPublication) {
from components.java
}
}
repositories {
mavenLocal()
}
}
pluginBundle {
website = 'http://github.com/jvff/play-ebean-gradle-plugin'
vcsUrl = 'http://github.com/jvff/play-ebean-gradle-plugin'
description = 'Enhance Ebean entities for use with Play! framework'
tags = ['ebean', 'play']
plugins {
playEbeanPlugin {
id = 'com.janitovff.play-ebean'
displayName = 'Play Ebean Gradle plugin'
}
}
}