-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbuild.gradle
More file actions
66 lines (61 loc) · 2.41 KB
/
build.gradle
File metadata and controls
66 lines (61 loc) · 2.41 KB
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
plugins {
id 'myproject.java-conventions'
}
group 'com.mridang'
version '3.0.9'
java {
sourceCompatibility "11"
targetCompatibility "11"
}
dependencies {
testImplementation group: 'junit', name: 'junit', version: '4.13.2'
testRuntimeOnly group: 'org.junit.jupiter', name: 'junit-jupiter-engine', version: '5.8.2'
testRuntimeOnly group: 'org.junit.vintage', name: 'junit-vintage-engine', version: '5.8.2'
compileOnly group: 'com.github.spotbugs', name: 'spotbugs-annotations', version: '4.6.0'
testCompileOnly group: 'com.github.spotbugs', name: 'spotbugs-annotations', version: '4.6.0'
errorprone group: 'com.uber.nullaway', name: 'nullaway', version: '0.9.6'
errorprone group: 'com.google.errorprone', name: 'error_prone_core', version: '2.12.1'
spotbugsPlugins group: 'com.h3xstream.findsecbugs', name: 'findsecbugs-plugin', version: '1.10.1'
}
publishing {
repositories {
maven {
name = "github"
url = uri("https://maven.pkg.github.com/mridang/jacksandra")
credentials(PasswordCredentials)
}
}
publications {
maven(MavenPublication) {
from components.java
pom {
name = 'Jacksandra'
description = 'Add-on module for Jackson (https://jackson.codehaus.org) to support Cassadra mapping generation.'
url = 'https://github.com/mridang/jacksandra'
licenses {
license {
name = 'The Apache Software License, Version 2.0'
url = 'https://www.apache.org/licenses/LICENSE-2.0.txt'
distribution = 'repo'
}
}
developers {
developer {
id = 'mridang'
name = 'Mridang Agarwalla'
email = 'mridang.agarwalla@gmail.com'
}
}
scm {
connection = 'scm:git:git://github.com/mridang/jacksandra.git'
developerConnection = 'scm:git:ssh://github.com/mridang/jacksandra.git'
url = 'https://github.com/mridang/jacksandra'
}
issueManagement {
system = "Github"
url = "https://github.com/mridang/jacksandra/issues"
}
}
}
}
}