-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathbuild.gradle
More file actions
20 lines (18 loc) · 758 Bytes
/
Copy pathbuild.gradle
File metadata and controls
20 lines (18 loc) · 758 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
import io.micronaut.gradle.WebsitePlugin
apply plugin: WebsitePlugin
website {
email = 'sergio.delamo@softamo.com'
authorName = 'Sergio del Amo'
authorUrl = 'https://sergiodelamo.com/me.html'
authorAvatar = 'https://images.sergiodelamo.com/smallavatar.jpg'
assets = file("assets")
posts = file("posts")
pages = file("pages")
template = file("templates/document.html")
output = project.buildDir
title = 'Sergio del Amo Blog'
url = System.getenv('GITHUB_RUN_ID') != null ? 'https://sergiodelamo.com' : 'http://localhost:8000'
summary = 'Personal blog of Sergio del Amo'
keywords = ['gradle', 'spock', 'geb', 'grails', 'groovy','java', 'wordpress', 'woocommerce', 'micronaut']
robots = 'index, follow'
}