forked from kropp/jsonld-metadata
-
Notifications
You must be signed in to change notification settings - Fork 1
/
build.gradle
131 lines (115 loc) · 3.36 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
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
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.8'
targetCompatibility = '1.8'
repositories {
mavenCentral()
}
sourceSets {
main {
java {
srcDir "src/main/java"
srcDir "src/generated/java"
}
}
test {
java {
srcDir "src/test/java"
srcDir "src/generated-test/java"
}
resources {
srcDir "src/test/resources"
}
}
}
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'
}
test {
//testLogging.showStandardStreams = true
//testLogging.exceptionFormat = 'full'
}
//task wrapper(type: Wrapper) {
// gradleVersion = '5.1.1'
//}