Update readme

This commit is contained in:
Alexander Nozik 2022-06-26 13:14:57 +03:00
parent 4066712014
commit 4024eed50f
No known key found for this signature in database
GPG Key ID: F7FCF2DD25C71357
2 changed files with 16 additions and 2 deletions

View File

@ -19,4 +19,4 @@ The idea is the following:
## References
Currently we use two different designs from https://html5up.net/
Currently, we use two different designs from https://html5up.net/

View File

@ -12,7 +12,7 @@ repositories {
}
group = "ru.mipt.npm"
version = "0.1.0-SNAPSHOT"
version = "0.1.0"
application {
mainClass.set("io.ktor.server.netty.EngineMain")
@ -58,6 +58,20 @@ sourceSets {
}
}
readme {
maturity = ru.mipt.npm.gradle.Maturity.EXPERIMENTAL
feature("data") { "Data-based processing. Instead of traditional layout-based" }
feature("layouts") { "Use custom layouts to represent a data tree" }
feature("parsers") { "Add custom file formats and parsers using DataForge dependency injection" }
feature("preprocessor") { "Preprocessing text files using templates" }
feature("metadata") { "Trademark DataForge metadata layering and transformations" }
feature("dynamic") { "Generating dynamic site using KTor server" }
feature("static") { "Generating static site" }
}
/**
* This task updates the site build date in resource automatically
*/
val writeBuildDate: Task by tasks.creating {
doLast {
val deployDate = LocalDateTime.now()