1 Star 0 Fork 4

云算科技/WeCross-Java-SDK

forked from WeBank/WeCross-Java-SDK 
加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
build.gradle 5.99 KB
一键复制 编辑 原始数据 按行查看 历史
JimmyShi22 提交于 2021-03-29 14:46 +08:00 . Update version and add changelog
plugins {
id 'com.github.sherter.google-java-format' version '0.8'
id 'com.github.johnrengelman.shadow' version '5.2.0'
id 'maven-publish'
id 'org.ajoberstar.grgit' version '4.0.1'
}
apply plugin: 'maven'
apply plugin: 'maven-publish'
apply plugin: 'signing'
apply plugin: 'idea'
apply plugin: 'eclipse'
apply plugin: 'java'
apply plugin: 'jacoco'
group = 'com.webank'
sourceCompatibility = '1.8'
version = '1.1.1'
task sourcesJar(type: Jar) {
from sourceSets.main.allJava
classifier = 'sources'
}
task javadocJar(type: Jar) {
from javadoc
classifier = 'javadoc'
}
javadoc {
options {
encoding 'UTF-8'
charSet 'UTF-8'
}
}
repositories {
jcenter()
maven { url "https://oss.sonatype.org/content/repositories/snapshots" }
maven { url 'https://dl.bintray.com/ethereum/maven/' }
}
googleJavaFormat {
options style: 'AOSP'
source = sourceSets*.allJava
include '**/*.java'
exclude '**/temp/*.java'
}
verifyGoogleJavaFormat {
source = sourceSets*.allJava
include '**/*.java'
exclude '**/temp/*.java'
}
configurations.all {
exclude module: "spring-boot-starter-logging"
}
sourceSets {
main {
java {
srcDir 'src/main/java'
srcDir 'src/test/java'
}
resources {
srcDir 'src/test/resources'
}
}
}
dependencies {
compile 'com.moandjiezana.toml:toml4j:0.7.2'
compile 'org.springframework.boot:spring-boot-starter-web:2.3.9.RELEASE'
compile 'org.springframework.boot:spring-boot-starter-aop:2.3.9.RELEASE'
compile 'org.springframework.boot:spring-boot-starter-security:2.3.9.RELEASE'
compile 'org.springframework:spring-aspects:5.2.12.RELEASE'
compile 'org.springframework:spring-aop:5.2.12.RELEASE'
compile 'org.asynchttpclient:async-http-client:2.12.2'
compile 'io.netty:netty-buffer:4.1.52.Final'
compile 'io.netty:netty-handler:4.1.52.Final'
compile 'com.google.guava:guava:30.1-jre'
compile 'commons-codec:commons-codec:1.14'
compile 'org.bouncycastle:bcprov-jdk15on:1.60'
compile 'junit:junit:4.12'
compile 'org.aspectj:aspectjrt:1.9.2'
compile 'org.aspectj:aspectjweaver:1.9.2'
}
configurations.compile.exclude(group: 'ch.qos.logback')
jar {
destinationDir file('dist/apps')
archiveName project.name + "-" + project.version + '.jar'
exclude '**/*.xml'
exclude '**/*.toml'
exclude '**/*.properties'
exclude '**/*.yml'
exclude '**/*.crt'
exclude '**/*.key'
manifest {
attributes(
'Main-Class': 'com.webank.wecrosssdk.TestMain',
'version': project.version,
)
try {
def repo = grgit.open(dir: file('.').canonicalPath)
if (repo != null) {
def date = new Date().format("yyyy-MM-dd'T'HH:mm:ssZ")
def branch = repo.branch.getCurrent().getName()
def commit = repo.head().getAbbreviatedId(40)
attributes(["Implementation-Timestamp": date,
"Git-Branch" : branch,
"Git-Commit" : commit
])
logger.info(" Commit : ")
logger.info(" => date: {}", date)
logger.info(" => branch: {}", branch)
logger.info(" => commit: {}", commit)
}
} catch (Exception e) {
// logger.warn(' .git not exist, cannot found commit info')
}
}
doLast {
copy {
from file('src/main/resources/')
into 'dist/conf'
}
copy {
from configurations.runtime
into 'dist/lib'
}
copy {
from file('.').listFiles().findAll { File f -> (f.name.endsWith('.sh') || f.name.endsWith('.env')) }
into 'dist'
}
}
}
ext {
if (!project.hasProperty("NEXUS_USERNAME")) {
NEXUS_USERNAME="xxx"
}
if (!project.hasProperty("NEXUS_PASSWORD")) {
NEXUS_PASSWORD="xxx"
}
}
publishing {
publications {
mavenJava(MavenPublication) {
groupId = 'com.webank'
artifactId = 'wecross-java-sdk'
from components.java
artifact sourcesJar
artifact javadocJar
// https://docs.gradle.org/current/dsl/org.gradle.api.publish.maven.MavenPublication.html
pom {
name = "WeCross-Java-SDK"
description = "Java SDK for WeCross"
url = "https://github.com/WeBankBlockchain/WeCross-Java-SDK"
licenses {
license {
name = "The Apache License, Version 2.0"
url = "http://www.apache.org/licenses/LICENSE-2.0.txt"
}
}
developers {
developer {
id = "Shareong"
name = "Shareong"
email = "740310627@qq.com"
}
}
scm {
connection = "scm:git:git://github.com/WeBankBlockchain/WeCross-Java-SDK.git"
developerConnection = "scm:git:ssh://github.com/WeBankBlockchain/WeCross-Java-SDK.git"
url = "https://github.com/WeBankBlockchain/WeCross-Java-SDK"
}
}
}
}
repositories {
maven {
def releasesRepoUrl = "https://oss.sonatype.org/service/local/staging/deploy/maven2"
def snapshotsRepoUrl = "https://oss.sonatype.org/content/repositories/snapshots"
url = version.endsWith('SNAPSHOT') ? snapshotsRepoUrl : releasesRepoUrl
credentials {
username = NEXUS_USERNAME
password = NEXUS_PASSWORD
}
}
}
signing {
sign publishing.publications.mavenJava
}
}
test {
testLogging.showStandardStreams = true
}
jacocoTestReport {
reports {
xml.enabled true
html.enabled false
}
}
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
Java
1
https://gitee.com/juyunsuankeji/WeCross-Java-SDK.git
git@gitee.com:juyunsuankeji/WeCross-Java-SDK.git
juyunsuankeji
WeCross-Java-SDK
WeCross-Java-SDK
master

搜索帮助