-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.gradle
39 lines (34 loc) · 1.02 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
plugins {
id 'java'
id 'maven-publish'
}
group 'com.tecknobit'
version '1.0.3'
repositories {
mavenCentral()
maven { url 'https://jitpack.io' }
}
dependencies {
testImplementation 'org.junit.jupiter:junit-jupiter-api:5.9.0'
testRuntimeOnly 'org.junit.jupiter:junit-jupiter-engine:5.9.0'
implementation 'com.google.apis:google-api-services-gmail:v1-rev20220404-2.0.0'
implementation 'com.google.oauth-client:google-oauth-client-jetty:1.34.1'
implementation 'com.google.auth:google-auth-library-oauth2-http:1.12.1'
implementation 'com.google.api-client:google-api-client:2.0.1'
implementation 'com.github.N7ghtm4r3:APIManager:2.1.4'
implementation 'org.json:json:20220924'
implementation 'javax.mail:mail:1.4.7'
}
publishing {
publications {
maven(MavenPublication) {
groupId = 'com.tecknobit.googlemanager'
artifactId = 'GoogleManager'
version = '1.0.3'
from components.java
}
}
}
test {
useJUnitPlatform()
}