This repository was archived by the owner on Jan 2, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathbuild.gradle
More file actions
87 lines (74 loc) · 1.96 KB
/
Copy pathbuild.gradle
File metadata and controls
87 lines (74 loc) · 1.96 KB
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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
buildscript {
repositories {
jcenter()
}
dependencies {
classpath 'com.bmuschko:gradle-nexus-plugin:2.3.1'
}
}
plugins {
id "java"
id "jacoco"
id 'maven-publish'
id "com.bmuschko.nexus" version "2.3.1"
id 'io.franzbecker.gradle-lombok' version "1.14"
}
group 'com.rotilho.jnano'
version '1.5.0'
sourceCompatibility = 1.8
repositories {
mavenCentral()
}
dependencies {
compile 'com.rfksystems:blake2b:1.0.0' // migrate to alphazero/Blake2b
compile 'net.i2p.crypto:eddsa:0.3.0'
compileOnly 'org.projectlombok:lombok:1.18.2'
testCompile 'junit:junit:4.12'
}
jacocoTestReport {
reports {
xml.enabled true
html.enabled false
}
}
publishing {
publications {
mavenJava(MavenPublication) {
from components.java
}
}
repositories {
mavenLocal()
}
}
modifyPom {
project {
name 'JNano Commons'
description 'JNano provides a set of low level Nano operations that includes signing, seed generation, block hashing and account creation.'
url 'https://github.com/rotilho/jnano-commons'
packaging 'jar'
licenses {
license {
name 'MIT License'
url 'http://www.opensource.org/licenses/mit-license.php'
distribution 'repo'
}
}
scm {
url 'https://github.com/rotilho/jnano-commons'
connection 'scm:git:https://github.com/rotilho/jnano-commons.git'
developerConnection 'scm:git:https://github.com/rotilho/jnano-commons.git'
}
developers {
developer {
id 'rotilho'
name 'Felipe Rotilho'
email 'felipe@rotilho.com'
}
}
}
}
nexus {
repositoryUrl = 'https://oss.sonatype.org/service/local/staging/deploy/maven2'
snapshotRepositoryUrl = 'https://oss.sonatype.org/content/repositories/snapshots'
}