-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathinstall.gradle
39 lines (34 loc) · 1.26 KB
/
install.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
apply plugin: 'maven'
group = 'net.andreinc.ansiscape'
install {
repositories.mavenInstaller {
pom {
project {
packaging 'jar'
groupId 'net.andreinc.ansiscape'
artifactId 'ansiscape'
name 'ansiscape' // YOUR LIBRARY NAME
description 'Color your output using Ansi Escape codes'
url 'https://github.com/nomemory/ansiscape'
licenses {
license {
name 'The Apache Software License, Version 2.0'
url 'http://www.apache.org/licenses/LICENSE-2.0.txt'
}
}
developers {
developer {
id 'nomemory' //YOUR ID
name 'Andrei N. Ciobanu' //YOUR NAME
email 'n@n.com' //YOUR EMAIL
}
}
scm {
connection 'https://github.com/nomemory/ansiscape' // YOUR GIT REPO
developerConnection 'https://github.com/nomemory/ansiscape' // YOUR GIT REPO
url 'https://github.com/nomemory/ansiscape' // YOUR SITE
}
}
}
}
}