-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild.gradle
141 lines (119 loc) · 4.4 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
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
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
/*
* Copyright 2019 Akashic Foundation
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
apply plugin: 'java'
apply plugin: 'idea'
import java.security.MessageDigest
repositories {
mavenCentral()
}
ext {
importPackage =
"io.yggdrash.common.contract" +
",io.yggdrash.common.contract.method" +
",io.yggdrash.common.contract.standard" +
",io.yggdrash.common.rlp" +
",com.google.common.base" +
",com.google.common.primitives" +
",io.yggdrash.common.contract.vo" +
",io.yggdrash.common.contract.vo.dpoa" +
",io.yggdrash.common.contract.vo.dpoa.tx" +
",io.yggdrash.common.crypto" +
",io.yggdrash.common.crypto.jce" +
",io.yggdrash.common.exception" +
",io.yggdrash.common.store" +
",io.yggdrash.common.store.datasource" +
",io.yggdrash.common.utils" +
",org.osgi.framework" +
",org.osgi.util.tracker" +
",com.google.gson" +
",org.w3c.dom" +
",org.slf4j" +
",java.math" +
",io.yggdrash.contract.core" +
",io.yggdrash.contract.core.annotation" +
",io.yggdrash.contract.core.store" +
",io.yggdrash.contract.core.channel"
excludeList = ["META-INF/LICENSE", "META-INF/NOTICE", "META-INF/*.SF", "META-INF/*.DSA", "META-INF/*.RSA", "META-INF/NOTICE"]
}
// project directory setup
def rootPath = file('.').absolutePath
def buildContract = rootPath + '/build/contract'
def projectContractPath = rootPath + '/../../resources/contract'
task contractsPackage(type: Jar) {
//Add current module source
from(sourceSets.main.output) {
include "**"
exclude(["system-contracts"])
}
manifest {
attributes(
'Bundle-ManifestVersion': '2',
'Bundle-Name': 'YEED',
'Bundle-Description': 'Yggdrash YEED Contract',
'Bundle-Vendor': 'YGGDRASH',
'Bundle-SymbolicName': 'io.yggdrash.contract.yeed.YeedContract',
'Bundle-Version': '0.8.0',
'Bundle-Activator': 'io.yggdrash.contract.yeed.YeedContract',
'Import-Package': "${importPackage}"
)
}
preserveFileTimestamps = false
exclude(excludeList)
project.archivesBaseName = manifest.attributes.get('Bundle-Name')
project.version = manifest.attributes.get('Bundle-Version')
}
def generateSha1(File file) {
MessageDigest md = MessageDigest.getInstance("SHA-1");
file.eachByte 4096, {bytes, size ->
md.update(bytes, 0, size);
}
return md.digest().collect {String.format "%02x", it}.join();
}
task deleteOutputContract(type: Delete) {
delete buildContract
}
task copyContractToResource(type: Copy) {
dependsOn deleteOutputContract
dependsOn contractsPackage
file("${buildContract}").mkdirs()
// Copy Contract File
from file('build/libs')
into file("${buildContract}")
exclude "${project.name}*"
doLast {
def libFiles = file("${buildContract}").listFiles()
libFiles.each {
def sha1Name = generateSha1(it)+'.jar'
def sha1File = file("${buildContract}/"+sha1Name)
if (it.getName().endsWith('.jar') && it.getName() != sha1Name) {
println it.getName() + ' -> ' + sha1Name
it.renameTo(sha1File)
}
}
}
}
task copyContractToProject(type: Copy) {
dependsOn copyContractToResource
from file("${buildContract}")
into file("${projectContractPath}")
}
jar {
preserveFileTimestamps = false
dependsOn copyContractToProject
}
dependencies {
compile "io.yggdrash:yggdrash-common:0.10.1-beta"
}