-
-
Notifications
You must be signed in to change notification settings - Fork 47
/
Copy pathinstall.gradle
39 lines (34 loc) · 1.34 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.mockneat'
install {
repositories.mavenInstaller {
pom {
project {
packaging 'jar'
groupId 'net.andreinc.mockneat'
artifactId 'mockneat'
name 'MockNeat' // YOUR LIBRARY NAME
description 'MockNeat is a Java 8+ library that facilitates the generation of arbitrary data for your applications.'
url 'https://github.com/nomemory/mockneat' // YOUR SITE
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://https://github.com/nomemory/mockneat.git' // YOUR GIT REPO
developerConnection 'https://github.com/nomemory/mockneat.git' // YOUR GIT REPO
url 'https://github.com/nomemory/mockneat.git' // YOUR SITE
}
}
}
}
}