From 1c3533ef572db9b845f12040e3107ddfce00f676 Mon Sep 17 00:00:00 2001 From: wakingrufus Date: Thu, 23 Sep 2021 12:34:28 -0500 Subject: [PATCH] add link to my public artifactory (#14) --- build.gradle.kts | 2 +- .../kotlin/com/github/wakingrufus/website/MyFeed.kt | 10 ++++++++++ .../kotlin/com/github/wakingrufus/website/MyWebsite.kt | 5 +++++ 3 files changed, 16 insertions(+), 1 deletion(-) diff --git a/build.gradle.kts b/build.gradle.kts index 1e8e675..512092a 100644 --- a/build.gradle.kts +++ b/build.gradle.kts @@ -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" } diff --git a/personal-site/src/main/kotlin/com/github/wakingrufus/website/MyFeed.kt b/personal-site/src/main/kotlin/com/github/wakingrufus/website/MyFeed.kt index 67e5ea7..110df5d 100644 --- a/personal-site/src/main/kotlin/com/github/wakingrufus/website/MyFeed.kt +++ b/personal-site/src/main/kotlin/com/github/wakingrufus/website/MyFeed.kt @@ -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) { diff --git a/personal-site/src/main/kotlin/com/github/wakingrufus/website/MyWebsite.kt b/personal-site/src/main/kotlin/com/github/wakingrufus/website/MyWebsite.kt index de79a3e..121ab94 100644 --- a/personal-site/src/main/kotlin/com/github/wakingrufus/website/MyWebsite.kt +++ b/personal-site/src/main/kotlin/com/github/wakingrufus/website/MyWebsite.kt @@ -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() } }