-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathbuild.gradle
64 lines (53 loc) · 1.46 KB
/
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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
buildscript {
repositories {
mavenCentral()
}
dependencies {
classpath 'com.bmuschko:gradle-nexus-plugin:2.3'
classpath "io.codearte.gradle.nexus:gradle-nexus-staging-plugin:0.5.3"
}
}
apply plugin: 'java'
apply plugin: 'com.bmuschko.nexus'
apply plugin: 'io.codearte.nexus-staging'
sourceCompatibility = "1.6"
targetCompatibility = "1.6"
group = 'hu.webhejj.gradle'
version = '1.0.0'
repositories {
mavenCentral()
}
dependencies {
compile gradleApi()
compile "org.apache.jena:jena-core:2.12.0"
}
nexusStaging {
packageGroup "hu.webhejj"
}
modifyPom {
project {
name 'Gradle Jena Plugin'
description 'A Gradle plugin that wraps some jena tools as gradle tasks.'
url 'https://github.com/gnagy/gradle-jena-plugin'
inceptionYear '2014'
scm {
url 'https://github.com/gnagy/gradle-jena-plugin'
connection 'scm:https://github.com/gnagy/gradle-jena-plugin.git'
developerConnection 'scm:git://github.com/gnagy/gradle-jena-plugin.git'
}
licenses {
license {
name 'The Apache Software License, Version 2.0'
url 'http://www.apache.org/licenses/LICENSE-2.0.txt'
distribution 'repo'
}
}
developers {
developer {
id 'gnagy'
name 'Gergely Nagy'
email '[email protected]'
}
}
}
}