-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathbuild.gradle
36 lines (31 loc) · 840 Bytes
/
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
plugins {
id 'java'
id 'maven-publish'
}
group 'tecknobit.com'
version '1.1.5'
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(group: 'commons-codec', name: 'commons-codec', version: '1.13')
implementation 'commons-validator:commons-validator:1.7'
implementation 'com.github.N7ghtm4r3:APIManager:2.1.5'
implementation 'org.json:json:20230227'
}
publishing {
publications {
maven(MavenPublication) {
groupId = 'com.tecknobit.coinbasemanager'
artifactId = 'CoinbaseManager'
version = '1.1.5'
from components.java
}
}
}
test {
useJUnitPlatform()
}