1 Star 0 Fork 0

isyscore/csesdk

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
克隆/下载
build.gradle 2.31 KB
一键复制 编辑 原始数据 按行查看 历史
指令集私有库 提交于 2021-11-02 20:16 . add: new project
buildscript {
repositories {
mavenCentral()
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version"
}
}
apply plugin: "org.jetbrains.kotlin.jvm"
apply plugin: 'maven'
apply plugin: 'signing'
group 'com.github.isyscore'
version '0.3.1'
repositories {
mavenCentral()
maven { url 'https://kotlin.bintray.com/ktor' }
}
dependencies {
implementation "com.github.isyscore:common-jvm:1.6.1"
testImplementation "junit:junit:4.12"
}
compileKotlin {
kotlinOptions.jvmTarget = "1.8"
}
compileTestKotlin {
kotlinOptions.jvmTarget = "1.8"
}
task javadocJar(type: Jar) {
from javadoc
classifier "javadoc"
}
task sourcesJar(type: Jar) {
from sourceSets.main.allSource
classifier "sources"
}
artifacts {
archives javadocJar, sourcesJar
}
signing {
sign configurations.archives
}
uploadArchives {
repositories {
mavenDeployer {
beforeDeployment { MavenDeployment deployment ->
signing.signPom(deployment)
}
repository(url: ossrhNexusUrl) {
authentication(userName: ossrhUsername, password: ossrhPassword)
}
snapshotRepository(url: ossrhNexusSnapshot) {
authentication(userName: ossrhUsername, password: ossrhPassword)
}
pom.project {
name "csesdk"
packaging 'jar'
description 'iSysCore Cross Script JVM SDK'
url 'https://github.com/isyscore/csesdk'
scm {
connection 'https://github.com/isyscore/csesdk'
developerConnection 'https://github.com/isyscore/csesdk'
url 'https://github.com/isyscore/csesdk'
}
licenses {
license {
name 'MIT License'
url 'https://github.com/isyscore/csesdk/blob/main/LICENSE'
}
}
developers {
developer {
id 'isyscore'
name 'isyscore'
}
}
}
}
}
}
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
Kotlin
1
https://gitee.com/isyscore_admin/csesdk.git
[email protected]:isyscore_admin/csesdk.git
isyscore_admin
csesdk
csesdk
master

搜索帮助