-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.gradle
53 lines (44 loc) · 1.35 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
plugins {
id 'java-library'
id 'maven-publish'
}
group = 'com.thewaterfall.fluent-request'
version = '1.3.1'
java {
sourceCompatibility = JavaVersion.VERSION_1_8
targetCompatibility = JavaVersion.VERSION_1_8
withSourcesJar()
}
compileJava {
sourceCompatibility = JavaVersion.VERSION_1_8
targetCompatibility = JavaVersion.VERSION_1_8
}
publishing {
publications {
maven(MavenPublication) {
groupId = 'com.thewaterfall'
artifactId = 'fluent-request'
version = '1.3.1'
from components.java
pom {
name = 'Fluent Request'
description = 'Fluent Request is a Java library designed to simplify and streamline ' +
'the process of making HTTP requests. It follows a fluent builder pattern, allowing users to ' +
'construct complex HTTP requests in a readable and expressive manner.'
licenses {
license {
name = 'MIT License'
url = 'http://www.opensource.org/licenses/mit-license.php'
}
}
}
}
}
}
repositories {
mavenCentral()
}
dependencies {
api 'com.squareup.okhttp3:okhttp:4.12.0'
api 'com.fasterxml.jackson.core:jackson-databind:2.15.2'
}