mirror of
https://gitee.com/BDWare/contract-java-example.git
synced 2026-02-15 00:59:31 +00:00
update readme.md
This commit is contained in:
22
build.gradle
Normal file
22
build.gradle
Normal file
@@ -0,0 +1,22 @@
|
||||
plugins {
|
||||
id 'java'
|
||||
id 'idea'
|
||||
}
|
||||
def currVersion = "1.0.0"
|
||||
ext.projectIds = ['group': 'org.bdware.sc.contractexample', 'version': currVersion]
|
||||
|
||||
tasks.withType(JavaCompile) {
|
||||
options.compilerArgs << '-Xlint:none'
|
||||
options.compilerArgs << '-Xlint:deprecation' << "-Werror"
|
||||
}
|
||||
|
||||
repositories {
|
||||
mavenCentral()
|
||||
}
|
||||
project(':backend') {
|
||||
group = "org.bdware.sc.example"
|
||||
version = projectIds.version
|
||||
repositories {
|
||||
maven { url 'https://maven.aliyun.com/repository/public' }
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user