Skip to content

Commit

Permalink
add link to my public artifactory (#14)
Browse files Browse the repository at this point in the history
  • Loading branch information
wakingrufus authored Sep 23, 2021
1 parent e0ffd6e commit 1c3533e
Show file tree
Hide file tree
Showing 3 changed files with 16 additions and 1 deletion.
2 changes: 1 addition & 1 deletion build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ plugins {

allprojects {
version = if (System.getenv("res_website_release_isGitTag") == "true")
System.getenv("res_website_release_gitTagName") else "0.5.1-SNAPSHOT"
System.getenv("res_website_release_gitTagName") else "0.5.2-SNAPSHOT"
group = "com.github.wakingrufus"
}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -133,6 +133,16 @@ val allEntries = entries {
LocalDate.of(2020, Month.APRIL, 20),
LocalTime.of(15, 30, 0),
ZoneOffset.ofHours(-5)).toInstant())
entry {
title = "My Public Artifactory"
author = "wakingrufus"
categories = listOf(siteUpdates)
link = "https://wakingrufus.jfrog.io/artifactory/public/"
publishedDate = Date.from(ZonedDateTime.of(LocalDate.of(2021, Month.SEPTEMBER, 23),
LocalTime.of(12, 30, 0),
ZoneOffset.ofHours(-5)).toInstant())
content("I now have a public artifactory where I will publish all libraries going forward.")
}
}

fun Entries.article(articlePage: HtmlPage, date: Instant) {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -144,6 +144,11 @@ val myDashboard: DIV.() -> Unit = {
li { a(href = libElo.path) { +"lib-elo" } }
li { a(href = filedb.path) { +"filedb" } }
}
p {
a(href = "https://wakingrufus.jfrog.io/artifactory/public/") {
+"My Public Artifactory"
}
}
}
panel("Software Development") {
h3 { a(href = failAgile.path) { +failAgile.getTitle() } }
Expand Down

0 comments on commit 1c3533e

Please # to comment.