blob: b9f4247de18349d1a456b77ee5157e56bae84612 [file] [log] [blame]
/*
* Licensed to the Apache Software Foundation (ASF) under one
* or more contributor license agreements. See the NOTICE file
* distributed with this work for additional information
* regarding copyright ownership. The ASF licenses this file
* to you under the Apache License, Version 2.0 (the
* "License"); you may not use this file except in compliance
* with the License. You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing,
* software distributed under the License is distributed on an
* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
* KIND, either express or implied. See the License for the
* specific language governing permissions and limitations
* under the License.
*/
def userSiteBase = 'http://groovy-lang.org/'
def devSiteBase = '/'
changelogs = false
releaseNotes = false
menu {
group('Groovy') {
item 'Learn', "${userSiteBase}learn.html"
item 'Documentation', "${userSiteBase}documentation.html"
item 'Download', "${devSiteBase}download.html"
item 'Support', "${userSiteBase}support.html"
item 'Contribute', "${devSiteBase}"
item 'Ecosystem', "${userSiteBase}ecosystem.html"
}
group('About') {
item 'Source code', 'https://github.com/apache/groovy'
item 'Security', "${userSiteBase}security.html"
item 'Books', "${userSiteBase}learn.html#books"
item 'Thanks', "${userSiteBase}thanks.html"
item 'Sponsorship', 'http://www.apache.org/foundation/sponsorship.html'
item 'FAQ', "${userSiteBase}faq.html"
item 'Search', "${userSiteBase}search.html"
}
group('Socialize') {
item 'Discuss on the mailing-list', "${userSiteBase}mailing-lists.html", 'fa-envelope'
item 'Groovy newsletter', "${userSiteBase}groovy-weekly.html", 'fa-envelope-o'
item 'Groovy on Twitter', 'https://twitter.com/ApacheGroovy', 'fa-twitter'
item 'Events and conferences', "${userSiteBase}events.html", 'fa-calendar'
item 'Source code on GitHub', 'https://github.com/apache/groovy', 'fa-github'
item 'Report issues in Jira', "${userSiteBase}reporting-issues.html", 'fa-bug'
item 'Stack Overflow questions', 'http://stackoverflow.com/questions/tagged/groovy', 'fa-stack-overflow'
item 'Slack Community', 'http://groovycommunity.com/', 'fa-slack'
}
}
pages {
// page 'index', 'index', [:]
page 'search', 'search', [category: 'Search']
page 'download', 'download', [category: 'Download', distributions: distributions]
page 'versioning', 'versioning', [category: 'Download']
page 'snapshots', 'snapshots', [category: 'Develop']
page 'contribute', 'index', [category: 'Develop']
page 'guidelines', 'guidelines', [category: 'Develop']
page 'buildstatus', 'buildstatus', [category: 'Develop']
page 'faq', 'faq', [category: 'Documentation']
page '404','404', [:]
}
documentation {
section('Getting started','fa-graduation-cap') {
// NAME TARGET HTML DOCPAGE HTML GENERATE
item 'Download Groovy', 'download', 'download', false
}
}
downloads {
distribution('Groovy 5.0') {
description {
a(href: "${userSiteBase}releasenotes/groovy-5.0.html", 'Groovy 5.0')
yield ' is the next major '
a(href: 'versioning.html', 'version')
yield ' of Groovy. We expect to have alpha releases soon.'
}
}
distribution('Groovy 4.0') {
description {
a(href: "${userSiteBase}releasenotes/groovy-4.0.html", 'Groovy 4.0')
yield ' is the latest stable '
a(href: 'versioning.html', 'version')
yield ' of Groovy designed for JDK8+ with much improved JPMS support.'
}
version('4.0.3') {
stable true
windowsInstaller 'https://groovy.jfrog.io/artifactory/dist-release-local/groovy-windows-installer/groovy-4.0.3/'
}
}
distribution('Groovy 3.0') {
description {
a(href: "${userSiteBase}releasenotes/groovy-3.0.html", 'Groovy 3.0')
yield ' is the previous stable '
a(href: 'versioning.html', 'version')
yield ' of Groovy designed for JDK8+ with a new more flexible parser (aka Parrot parser).'
}
version('3.0.12') {
stable true
// windowsInstaller 'https://groovy.jfrog.io/artifactory/dist-release-local/groovy-windows-installer/groovy-3.0.12/'
}
version('3.0.11') {
stable true
windowsInstaller 'https://groovy.jfrog.io/artifactory/dist-release-local/groovy-windows-installer/groovy-3.0.11/'
}
}
distribution('Groovy 2.5') {
description {
a(href: "${userSiteBase}releasenotes/groovy-2.5.html", 'Groovy 2.5')
yield ' is an earlier '
a(href: 'versioning.html', 'version')
yield ' of Groovy still in widespread use.'
}
version('2.5.18') {
stable true
// windowsInstaller 'https://groovy.jfrog.io/artifactory/dist-release-local/groovy-windows-installer/groovy-2.5.18/'
}
version('2.5.17') {
stable true
windowsInstaller 'https://groovy.jfrog.io/artifactory/dist-release-local/groovy-windows-installer/groovy-2.5.17/'
}
}
distribution('Groovy 2.4') {
description {
a(href: "${userSiteBase}releasenotes/groovy-2.4.html", 'Groovy 2.4')
yield ' is an earlier '
a(href: 'versioning.html', 'version')
yield ' of Groovy still in widespread use.'
yield ' We encourage users to upgrade from this version as we no longer support this version actively.'
yieldUnescaped ''' Important: Releases before 2.4.4 weren't done under the Apache Software Foundation and are provided as a convenience, without any warranty.'''
}
version('2.4.21') {
stable true
windowsInstaller 'https://groovy.jfrog.io/artifactory/dist-release-local/groovy-windows-installer/groovy-2.4.21/'
}
}
}