Moved from Gradle to bld
This commit is contained in:
parent
1cd7c5a79e
commit
c68c25aa95
240 changed files with 11508 additions and 1650 deletions
27
release_info.txt
Normal file
27
release_info.txt
Normal file
|
@ -0,0 +1,27 @@
|
|||
/*
|
||||
* This file is automatically generated
|
||||
* Do not modify! -- ALL CHANGES WILL BE ERASED!
|
||||
*/
|
||||
|
||||
package {{v packageName/}}
|
||||
|
||||
import java.time.Instant
|
||||
import java.time.LocalDateTime
|
||||
import java.time.ZoneId
|
||||
|
||||
/**
|
||||
* Provides release information.
|
||||
*/
|
||||
object {{v className/}} {
|
||||
const val PROJECT = "{{v project/}}"
|
||||
const val VERSION = "{{v version/}}"
|
||||
|
||||
@JvmField
|
||||
val BUILD_DATE: LocalDateTime = LocalDateTime.ofInstant(
|
||||
Instant.ofEpochMilli({{v epoch/}}L), ZoneId.systemDefault()
|
||||
)
|
||||
|
||||
const val WEBSITE = "https://www.mobitopia.org/mobibot/"
|
||||
const val AUTHOR = "Erik C. Thauvin"
|
||||
const val AUTHOR_URL = "https://erik.thauvin.net/"
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue