-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathbuild.gradle
116 lines (99 loc) · 2.93 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
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
plugins {
id 'java-library'
id 'maven'
id 'maven-publish'
id 'com.github.kropp.teamcity-gitversion' version '0.1.8'
id 'com.jfrog.bintray' version '1.7.3'
}
group 'com.github.kropp'
sourceCompatibility = 1.6
repositories {
mavenCentral()
}
sourceSets {
main {
java {
srcDir "src/main/java"
}
}
test {
java {
srcDir "test/main/java"
}
}
}
jar {}
if (System.getenv('BINTRAY_USER')) {
bintray {
user = System.getenv('BINTRAY_USER')
key = System.getenv('BINTRAY_KEY')
pkg {
repo = 'org.schema'
name = 'jsonld-metadata'
userOrg = 'kropp'
licenses = ['Apache-2.0']
vcsUrl = 'git@github.com:kropp/jsonld-metadata.git'
version {
name = project.version
desc = 'JSON-LD Metadata ' + project.version
vcsTag = project.version
}
}
publications = ['JsonLdMetadataPublication']
}
}
publishing {
publications {
JsonLdMetadataPublication(MavenPublication) {
from components.java
groupId 'org.schema'
artifactId 'jsonld-metadata'
version project.version
}
}
}
if (hasProperty('mavenPublishUrl')) {
uploadArchives {
repositories {
mavenDeployer {
repository(url: project.mavenPublishUrl) {
}
pom.project {
groupId 'org.schema'
name 'JSON-LD Metadata'
description 'JSON-LD Java serializer'
packaging 'jar'
url 'https://github.com/kropp/jsonld-metadata/'
scm {
url 'https://github.com/kropp/jsonld-metadata/'
connection 'scm:git:git@github.com:kropp/jsonld-metadata.git'
developerConnection 'scm:git:git@github.com:kropp/jsonld-metadata.git'
}
licenses {
license {
name 'The Apache Software License, Version 2.0'
url 'http://www.apache.org/license/LICENSE-2.0.txt'
distribution 'repo'
}
}
developers {
developer {
id 'JetBrains'
name 'JetBrains Team'
organization 'JetBrains s.r.o'
organizationUrl 'http://www.jetbrains.com'
}
}
}
}
}
}
}
dependencies {
compile 'com.fasterxml.jackson.core:jackson-databind:2.7.+'
compile 'org.jetbrains:annotations:13.0'
testCompile 'junit:junit:4.11'
}
task wrapper(type: Wrapper) {
gradleVersion = '4.0'
}