├── .gitignore ├── MOVED_TO_GIT ├── README ├── maven-default-skin ├── MOVED_TO_GIT ├── pom.xml └── src │ ├── it │ ├── sample │ │ ├── pom.xml │ │ └── src │ │ │ └── site │ │ │ ├── apt │ │ │ └── index.apt.vm │ │ │ └── site.xml │ └── settings.xml │ ├── main │ └── resources │ │ ├── META-INF │ │ └── maven │ │ │ └── skin.xml │ │ ├── css │ │ └── maven-theme.css │ │ └── images │ │ ├── external.png │ │ ├── icon_error_sml.gif │ │ ├── icon_info_sml.gif │ │ ├── icon_success_sml.gif │ │ ├── icon_warning_sml.gif │ │ └── newwindow.png │ └── site │ ├── apt │ └── index.apt.vm │ ├── resources │ └── download.cgi │ ├── site.xml │ └── xdoc │ └── download.xml.vm ├── maven-fluido-skin ├── LICENSE ├── MOVED_TO_GIT ├── NOTICE ├── pom.xml └── src │ ├── it │ ├── mskins-10 │ │ ├── pom.xml │ │ ├── src │ │ │ └── site │ │ │ │ ├── apt │ │ │ │ ├── beer.apt.vm │ │ │ │ ├── beer1.apt.vm │ │ │ │ ├── wine.apt.vm │ │ │ │ └── wine1.apt.vm │ │ │ │ └── site.xml │ │ └── verify.groovy │ ├── mskins-13 │ │ ├── pom.xml │ │ ├── src │ │ │ └── site │ │ │ │ └── site.xml │ │ └── verify.groovy │ ├── mskins-14 │ │ ├── pom.xml │ │ └── src │ │ │ └── site │ │ │ └── site.xml │ ├── mskins-14_sitesearch │ │ ├── pom.xml │ │ └── src │ │ │ └── site │ │ │ └── site.xml │ ├── mskins-15 │ │ ├── pom.xml │ │ └── src │ │ │ └── site │ │ │ └── site.xml │ ├── mskins-16 │ │ ├── pom.xml │ │ └── src │ │ │ └── site │ │ │ └── site.xml │ ├── mskins-17 │ │ ├── pom.xml │ │ ├── src │ │ │ └── site │ │ │ │ ├── apt │ │ │ │ └── index.apt.vm │ │ │ │ └── site.xml │ │ └── verify.groovy │ ├── mskins-21 │ │ ├── invoker.properties │ │ ├── pom.xml │ │ └── src │ │ │ └── site │ │ │ └── site.xml │ ├── mskins-22 │ │ ├── pom.xml │ │ └── src │ │ │ └── site │ │ │ ├── apt │ │ │ └── index.apt.vm │ │ │ └── site.xml │ ├── mskins-22_default │ │ ├── pom.xml │ │ └── src │ │ │ └── site │ │ │ ├── apt │ │ │ └── index.apt.vm │ │ │ └── site.xml │ ├── mskins-22_topbar │ │ ├── pom.xml │ │ └── src │ │ │ └── site │ │ │ ├── apt │ │ │ └── index.apt.vm │ │ │ └── site.xml │ ├── mskins-23 │ │ ├── pom.xml │ │ └── src │ │ │ └── site │ │ │ ├── apt │ │ │ └── index.apt.vm │ │ │ └── site.xml │ ├── mskins-24 │ │ ├── pom.xml │ │ └── src │ │ │ └── site │ │ │ ├── apt │ │ │ └── index.apt.vm │ │ │ └── site.xml │ ├── mskins-24_topbar │ │ ├── pom.xml │ │ └── src │ │ │ └── site │ │ │ ├── apt │ │ │ └── index.apt.vm │ │ │ └── site.xml │ ├── mskins-25 │ │ ├── pom.xml │ │ └── src │ │ │ └── site │ │ │ ├── apt │ │ │ └── index.apt.vm │ │ │ └── site.xml │ ├── mskins-28 │ │ ├── pom.xml │ │ └── src │ │ │ └── site │ │ │ ├── apt │ │ │ └── index.apt.vm │ │ │ └── site.xml │ ├── mskins-31 │ │ ├── pom.xml │ │ └── src │ │ │ └── site │ │ │ ├── apt │ │ │ └── site.xml │ │ │ └── site.xml │ ├── mskins-33 │ │ ├── pom.xml │ │ └── src │ │ │ └── site │ │ │ ├── apt │ │ │ └── index.apt.vm │ │ │ └── site.xml │ ├── mskins-33_topbar │ │ ├── pom.xml │ │ └── src │ │ │ └── site │ │ │ ├── apt │ │ │ └── index.apt.vm │ │ │ └── site.xml │ ├── mskins-34 │ │ ├── pom.xml │ │ └── src │ │ │ └── site │ │ │ ├── apt │ │ │ └── index.apt.vm │ │ │ └── site.xml │ ├── mskins-34_topbar │ │ ├── pom.xml │ │ └── src │ │ │ └── site │ │ │ ├── apt │ │ │ └── index.apt.vm │ │ │ └── site.xml │ ├── mskins-41 │ │ ├── pom.xml │ │ └── src │ │ │ └── site │ │ │ ├── apt │ │ │ └── index.apt.vm │ │ │ └── site.xml │ ├── mskins-47 │ │ ├── pom.xml │ │ ├── src │ │ │ └── site │ │ │ │ ├── apt │ │ │ │ └── index.apt.vm │ │ │ │ └── site.xml │ │ └── verify.groovy │ ├── mskins-72 │ │ ├── pom.xml │ │ ├── src │ │ │ └── site │ │ │ │ ├── apt │ │ │ │ └── index.apt.vm │ │ │ │ └── site.xml │ │ └── verify.groovy │ ├── mskins-75 │ │ ├── pom.xml │ │ ├── src │ │ │ └── site │ │ │ │ ├── apt │ │ │ │ └── index.apt.vm │ │ │ │ └── site.xml │ │ └── verify.groovy │ ├── mskins-76 │ │ ├── pom.xml │ │ ├── src │ │ │ └── site │ │ │ │ ├── apt │ │ │ │ └── index.apt.vm │ │ │ │ └── site.xml │ │ └── verify.groovy │ ├── mskins-76_topbar │ │ ├── pom.xml │ │ ├── src │ │ │ └── site │ │ │ │ ├── apt │ │ │ │ └── index.apt.vm │ │ │ │ └── site.xml │ │ └── verify.groovy │ ├── mskins-85 │ │ ├── pom.xml │ │ └── src │ │ │ └── site │ │ │ ├── apt │ │ │ └── index.apt.vm │ │ │ └── site.xml │ ├── settings.xml │ ├── sidebar │ │ ├── pom.xml │ │ ├── src │ │ │ └── site │ │ │ │ ├── apt │ │ │ │ └── index.apt.vm │ │ │ │ └── site.xml │ │ └── verify.groovy │ ├── topbar-inverse │ │ ├── pom.xml │ │ └── src │ │ │ └── site │ │ │ ├── apt │ │ │ ├── bar.apt.vm │ │ │ ├── beer.apt.vm │ │ │ ├── foo.apt.vm │ │ │ ├── index.apt.vm │ │ │ └── wine.apt.vm │ │ │ ├── resources │ │ │ └── images │ │ │ │ └── topbar-logo.png │ │ │ └── site.xml │ └── topbar │ │ ├── pom.xml │ │ ├── src │ │ └── site │ │ │ ├── apt │ │ │ ├── bar.apt.vm │ │ │ ├── beer.apt.vm │ │ │ ├── foo.apt.vm │ │ │ ├── index.apt.vm │ │ │ └── wine.apt.vm │ │ │ ├── resources │ │ │ └── images │ │ │ │ └── topbar-logo.png │ │ │ └── site.xml │ │ └── verify.groovy │ ├── main │ └── resources │ │ ├── META-INF │ │ └── maven │ │ │ ├── site-macros.vm │ │ │ ├── site.vm │ │ │ └── skin.xml │ │ ├── css │ │ ├── bootstrap-2.3.2-responsive.css │ │ ├── bootstrap-2.3.2.css │ │ ├── maven-base.css │ │ ├── maven-theme.css │ │ ├── prettify.css │ │ └── print.css │ │ ├── fonts │ │ ├── glyphicons-halflings-regular.eot │ │ ├── glyphicons-halflings-regular.svg │ │ ├── glyphicons-halflings-regular.ttf │ │ └── glyphicons-halflings-regular.woff │ │ ├── images │ │ ├── accessories-text-editor.png │ │ ├── add.gif │ │ ├── apache-maven-project-2.png │ │ ├── application-certificate.png │ │ ├── contact-new.png │ │ ├── document-properties.png │ │ ├── drive-harddisk.png │ │ ├── fix.gif │ │ ├── icon_error_sml.gif │ │ ├── icon_help_sml.gif │ │ ├── icon_info_sml.gif │ │ ├── icon_success_sml.gif │ │ ├── icon_warning_sml.gif │ │ ├── image-x-generic.png │ │ ├── internet-web-browser.png │ │ ├── logos │ │ │ ├── build-by-maven-black.png │ │ │ ├── build-by-maven-white.png │ │ │ └── maven-feather.png │ │ ├── network-server.png │ │ ├── package-x-generic.png │ │ ├── profiles │ │ │ ├── pre-release.png │ │ │ ├── retired.png │ │ │ └── sandbox.png │ │ ├── remove.gif │ │ ├── rss.png │ │ ├── update.gif │ │ └── window-new.png │ │ ├── img │ │ ├── glyphicons-halflings-white.png │ │ └── glyphicons-halflings.png │ │ └── js │ │ ├── bootstrap-2.3.2.js │ │ ├── fluido.js │ │ ├── jquery-1.11.2.js │ │ └── prettify.js │ ├── media │ ├── pre-release.svg │ ├── retired.svg │ └── sandbox.svg │ ├── misc │ └── scripts │ │ ├── resize_icon.sh │ │ └── sprite.sh │ └── site │ ├── apt │ ├── index.apt.vm │ ├── poweredby.apt │ └── sample.apt │ ├── resources │ └── download.cgi │ ├── site.xml │ └── xdoc │ └── download.xml.vm ├── pom.xml └── src └── site └── site.xml /.gitignore: -------------------------------------------------------------------------------- 1 | *.iml 2 | .idea 3 | target 4 | .DS_Store 5 | -------------------------------------------------------------------------------- /MOVED_TO_GIT: -------------------------------------------------------------------------------- 1 | https://gitbox.apache.org/repos/asf/maven-default-skin.git 2 | https://gitbox.apache.org/repos/asf/maven-fluido-skin.git 3 | -------------------------------------------------------------------------------- /README: -------------------------------------------------------------------------------- 1 | Apache Maven Skins 2 | ================== 3 | 4 | http://maven.apache.org/skins/ 5 | 6 | Developers list: dev@maven.apache.org 7 | 8 | Moved to Git 9 | -------------------------------------------------------------------------------- /maven-default-skin/MOVED_TO_GIT: -------------------------------------------------------------------------------- 1 | https://gitbox.apache.org/repos/asf/maven-default-skin.git 2 | see https://gitbox.apache.org/repos/asf/maven-default-skin.git 3 | or https://github.com/apache/maven-default-skin 4 | -------------------------------------------------------------------------------- /maven-default-skin/src/it/sample/pom.xml: -------------------------------------------------------------------------------- 1 | 2 | 18 | 20 | 4.0.0 21 | 22 | org.apache.maven 23 | maven-parent 24 | @project.parent.version@ 25 | 26 | 27 | org.apache.maven.skins.its 28 | @project.artifactId@ 29 | 1.0-SNAPSHOT 30 | jar 31 | 32 | @project.artifactId@ IT 33 | http://maven.apache.org/skins/@project.artifactId@/sample/ 34 | 35 | 36 | @project.name@ 37 | @project.groupId@ 38 | @project.artifactId@ 39 | @project.version@ 40 | 41 | 42 | 43 | 44 | junit 45 | junit 46 | 3.8.2 47 | test 48 | 49 | 50 | 51 | 52 | 53 | 54 | org.apache.maven.plugins 55 | maven-site-plugin 56 | @sitePluginVersion@ 57 | 58 | 59 | 60 | 61 | 62 | 63 | 64 | org.apache.maven.plugins 65 | maven-project-info-reports-plugin 66 | 67 | false 68 | false 69 | 70 | 71 | 72 | 73 | 74 | 75 | -------------------------------------------------------------------------------- /maven-default-skin/src/it/sample/src/site/site.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 23 | 24 | 27 | 28 | 29 | ${skinGroupId} 30 | ${skinArtifactId} 31 | ${skinVersion} 32 | 33 | 34 | 35 | 36 | 37 | 38 | 39 | 40 | 41 | 42 | 43 | 44 | 45 | 46 | 47 | 48 | 49 | 50 | 51 | -------------------------------------------------------------------------------- /maven-default-skin/src/it/settings.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 21 | 22 | 23 | 24 | 25 | it-repo 26 | 27 | true 28 | 29 | 30 | 31 | local.central 32 | @localRepositoryUrl@ 33 | 34 | true 35 | 36 | 37 | true 38 | 39 | 40 | 41 | 42 | 43 | local.central 44 | @localRepositoryUrl@ 45 | 46 | true 47 | 48 | 49 | true 50 | 51 | 52 | 53 | 54 | 55 | 56 | -------------------------------------------------------------------------------- /maven-default-skin/src/main/resources/META-INF/maven/skin.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 21 | 22 | 24 | 25 | 1.7 26 | 27 | 28 | -------------------------------------------------------------------------------- /maven-default-skin/src/main/resources/images/external.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/maven-skins/eb1c0bf6023923def8b5fdd557fa8bc789d513f8/maven-default-skin/src/main/resources/images/external.png -------------------------------------------------------------------------------- /maven-default-skin/src/main/resources/images/icon_error_sml.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/maven-skins/eb1c0bf6023923def8b5fdd557fa8bc789d513f8/maven-default-skin/src/main/resources/images/icon_error_sml.gif -------------------------------------------------------------------------------- /maven-default-skin/src/main/resources/images/icon_info_sml.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/maven-skins/eb1c0bf6023923def8b5fdd557fa8bc789d513f8/maven-default-skin/src/main/resources/images/icon_info_sml.gif -------------------------------------------------------------------------------- /maven-default-skin/src/main/resources/images/icon_success_sml.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/maven-skins/eb1c0bf6023923def8b5fdd557fa8bc789d513f8/maven-default-skin/src/main/resources/images/icon_success_sml.gif -------------------------------------------------------------------------------- /maven-default-skin/src/main/resources/images/icon_warning_sml.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/maven-skins/eb1c0bf6023923def8b5fdd557fa8bc789d513f8/maven-default-skin/src/main/resources/images/icon_warning_sml.gif -------------------------------------------------------------------------------- /maven-default-skin/src/main/resources/images/newwindow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/maven-skins/eb1c0bf6023923def8b5fdd557fa8bc789d513f8/maven-default-skin/src/main/resources/images/newwindow.png -------------------------------------------------------------------------------- /maven-default-skin/src/site/apt/index.apt.vm: -------------------------------------------------------------------------------- 1 | ------ 2 | Introduction 3 | ------ 4 | Hervé Boutemy 5 | ------ 6 | 2011-10-11 7 | ------ 8 | 9 | ~~ Licensed to the Apache Software Foundation (ASF) under one 10 | ~~ or more contributor license agreements. See the NOTICE file 11 | ~~ distributed with this work for additional information 12 | ~~ regarding copyright ownership. The ASF licenses this file 13 | ~~ to you under the Apache License, Version 2.0 (the 14 | ~~ "License"); you may not use this file except in compliance 15 | ~~ with the License. You may obtain a copy of the License at 16 | ~~ 17 | ~~ http://www.apache.org/licenses/LICENSE-2.0 18 | ~~ 19 | ~~ Unless required by applicable law or agreed to in writing, 20 | ~~ software distributed under the License is distributed on an 21 | ~~ "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY 22 | ~~ KIND, either express or implied. See the License for the 23 | ~~ specific language governing permissions and limitations 24 | ~~ under the License. 25 | 26 | ~~ NOTE: For help with the syntax of this file, see: 27 | ~~ http://maven.apache.org/doxia/references/apt-format.html 28 | 29 | ${project.name} 30 | 31 | ${project.description} 32 | 33 | A {{{./sample/}sample site}} is provided to see the skin in action. 34 | 35 | * Usage 36 | 37 | To use this skin in your project, use the skin element of 38 | {{{/doxia/doxia-sitetools/doxia-decoration-model/decoration.html}the <<>> site descriptor}}: 39 | 40 | +-----+ 41 | 42 | ... 43 | 44 | ${project.groupId} 45 | ${project.artifactId} 46 | ${project.version} 47 | 48 | ... 49 | 50 | +-----+ 51 | -------------------------------------------------------------------------------- /maven-default-skin/src/site/resources/download.cgi: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | # 3 | # Licensed to the Apache Software Foundation (ASF) under one 4 | # or more contributor license agreements. See the NOTICE file 5 | # distributed with this work for additional information 6 | # regarding copyright ownership. The ASF licenses this file 7 | # to you under the Apache License, Version 2.0 (the 8 | # "License"); you may not use this file except in compliance 9 | # with the License. You may obtain a copy of the License at 10 | # 11 | # http://www.apache.org/licenses/LICENSE-2.0 12 | # 13 | # Unless required by applicable law or agreed to in writing, 14 | # software distributed under the License is distributed on an 15 | # "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY 16 | # KIND, either express or implied. See the License for the 17 | # specific language governing permissions and limitations 18 | # under the License. 19 | # 20 | # Just call the standard mirrors.cgi script. It will use download.html 21 | # as the input template. 22 | exec /www/www.apache.org/dyn/mirrors/mirrors.cgi $* -------------------------------------------------------------------------------- /maven-default-skin/src/site/site.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 21 | 22 | 24 | 25 | 26 | 27 | 28 | 29 | 30 | 31 | 32 | -------------------------------------------------------------------------------- /maven-fluido-skin/MOVED_TO_GIT: -------------------------------------------------------------------------------- 1 | https://gitbox.apache.org/repos/asf/maven-fluido-skin.git 2 | see https://gitbox.apache.org/repos/asf/maven-fluido-skin.git 3 | or https://github.com/apache/maven-fluido-skin 4 | -------------------------------------------------------------------------------- /maven-fluido-skin/NOTICE: -------------------------------------------------------------------------------- 1 | Apache Maven - Fluido Skin 2 | Copyright 2011 The Apache Software Foundation 3 | 4 | Twitter Bootstrap - licensed under the Apache License v2.0. 5 | This product includes software developed by 6 | Twitter (http://twitter.github.com/bootstrap/). 7 | 8 | JQuery - licensed under the MIT License 9 | This product includes software developed by 10 | JQuery (http://jquery.org/) 11 | 12 | Google code prettify - licensed under the Apache License v2.0. 13 | This product includes software developed by 14 | Google (http://code.google.com/p/google-code-prettify/) 15 | 16 | Tango! base icon theme - released to the Public Domain 17 | This product includes software developed by 18 | Tango! Desktop Project (http://tango.freedesktop.org/) 19 | 20 | Glyphicons Halflings (part of Bootstrap by Twitter) - licensed under the Creative Commons Attribution 3.0 Unported (CC BY 3.0) 21 | This product includes software developed by 22 | Jan Kovařík (http://glyphicons.com/) 23 | -------------------------------------------------------------------------------- /maven-fluido-skin/src/it/mskins-10/pom.xml: -------------------------------------------------------------------------------- 1 | 2 | 18 | 20 | 4.0.0 21 | 22 | org.apache.maven.skins.its 23 | mskins-10 24 | 1.0-SNAPSHOT 25 | 26 | 27 | @project.name@ 28 | @project.description@ 29 | @project.groupId@ 30 | @project.artifactId@ 31 | @project.version@ 32 | 33 | 34 | 35 | 36 | 37 | org.apache.maven.plugins 38 | maven-site-plugin 39 | @sitePluginVersion@ 40 | 41 | 42 | 43 | 44 | 45 | 46 | 47 | org.apache.maven.plugins 48 | maven-project-info-reports-plugin 49 | 2.4 50 | 51 | false 52 | false 53 | 54 | 55 | 56 | 57 | 58 | -------------------------------------------------------------------------------- /maven-fluido-skin/src/it/mskins-10/src/site/apt/beer.apt.vm: -------------------------------------------------------------------------------- 1 | ------ 2 | ${project.name} 3 | ------ 4 | ------ 5 | ------ 6 | 7 | ~~ Licensed to the Apache Software Foundation (ASF) under one 8 | ~~ or more contributor license agreements. See the NOTICE file 9 | ~~ distributed with this work for additional information 10 | ~~ regarding copyright ownership. The ASF licenses this file 11 | ~~ to you under the Apache License, Version 2.0 (the 12 | ~~ "License"); you may not use this file except in compliance 13 | ~~ with the License. You may obtain a copy of the License at 14 | ~~ 15 | ~~ http://www.apache.org/licenses/LICENSE-2.0 16 | ~~ 17 | ~~ Unless required by applicable law or agreed to in writing, 18 | ~~ software distributed under the License is distributed on an 19 | ~~ "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY 20 | ~~ KIND, either express or implied. See the License for the 21 | ~~ specific language governing permissions and limitations 22 | ~~ under the License. 23 | 24 | ~~ NOTE: For help with the syntax of this file, see: 25 | ~~ http://maven.apache.org/doxia/references/apt-format.html 26 | 27 | ${project.name} 28 | 29 | beer 30 | -------------------------------------------------------------------------------- /maven-fluido-skin/src/it/mskins-10/src/site/apt/beer1.apt.vm: -------------------------------------------------------------------------------- 1 | ------ 2 | ${project.name} 3 | ------ 4 | ------ 5 | ------ 6 | 7 | ~~ Licensed to the Apache Software Foundation (ASF) under one 8 | ~~ or more contributor license agreements. See the NOTICE file 9 | ~~ distributed with this work for additional information 10 | ~~ regarding copyright ownership. The ASF licenses this file 11 | ~~ to you under the Apache License, Version 2.0 (the 12 | ~~ "License"); you may not use this file except in compliance 13 | ~~ with the License. You may obtain a copy of the License at 14 | ~~ 15 | ~~ http://www.apache.org/licenses/LICENSE-2.0 16 | ~~ 17 | ~~ Unless required by applicable law or agreed to in writing, 18 | ~~ software distributed under the License is distributed on an 19 | ~~ "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY 20 | ~~ KIND, either express or implied. See the License for the 21 | ~~ specific language governing permissions and limitations 22 | ~~ under the License. 23 | 24 | ~~ NOTE: For help with the syntax of this file, see: 25 | ~~ http://maven.apache.org/doxia/references/apt-format.html 26 | 27 | ${project.name} 28 | 29 | beer1 30 | -------------------------------------------------------------------------------- /maven-fluido-skin/src/it/mskins-10/src/site/apt/wine.apt.vm: -------------------------------------------------------------------------------- 1 | ------ 2 | ${project.name} 3 | ------ 4 | ------ 5 | ------ 6 | 7 | ~~ Licensed to the Apache Software Foundation (ASF) under one 8 | ~~ or more contributor license agreements. See the NOTICE file 9 | ~~ distributed with this work for additional information 10 | ~~ regarding copyright ownership. The ASF licenses this file 11 | ~~ to you under the Apache License, Version 2.0 (the 12 | ~~ "License"); you may not use this file except in compliance 13 | ~~ with the License. You may obtain a copy of the License at 14 | ~~ 15 | ~~ http://www.apache.org/licenses/LICENSE-2.0 16 | ~~ 17 | ~~ Unless required by applicable law or agreed to in writing, 18 | ~~ software distributed under the License is distributed on an 19 | ~~ "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY 20 | ~~ KIND, either express or implied. See the License for the 21 | ~~ specific language governing permissions and limitations 22 | ~~ under the License. 23 | 24 | ~~ NOTE: For help with the syntax of this file, see: 25 | ~~ http://maven.apache.org/doxia/references/apt-format.html 26 | 27 | ${project.name} 28 | 29 | wine 30 | -------------------------------------------------------------------------------- /maven-fluido-skin/src/it/mskins-10/src/site/apt/wine1.apt.vm: -------------------------------------------------------------------------------- 1 | ------ 2 | ${project.name} 3 | ------ 4 | ------ 5 | ------ 6 | 7 | ~~ Licensed to the Apache Software Foundation (ASF) under one 8 | ~~ or more contributor license agreements. See the NOTICE file 9 | ~~ distributed with this work for additional information 10 | ~~ regarding copyright ownership. The ASF licenses this file 11 | ~~ to you under the Apache License, Version 2.0 (the 12 | ~~ "License"); you may not use this file except in compliance 13 | ~~ with the License. You may obtain a copy of the License at 14 | ~~ 15 | ~~ http://www.apache.org/licenses/LICENSE-2.0 16 | ~~ 17 | ~~ Unless required by applicable law or agreed to in writing, 18 | ~~ software distributed under the License is distributed on an 19 | ~~ "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY 20 | ~~ KIND, either express or implied. See the License for the 21 | ~~ specific language governing permissions and limitations 22 | ~~ under the License. 23 | 24 | ~~ NOTE: For help with the syntax of this file, see: 25 | ~~ http://maven.apache.org/doxia/references/apt-format.html 26 | 27 | ${project.name} 28 | 29 | wine 30 | -------------------------------------------------------------------------------- /maven-fluido-skin/src/it/mskins-10/src/site/site.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 23 | 24 | 27 | 28 | 29 | ${skinGroupId} 30 | ${skinArtifactId} 31 | ${skinVersion} 32 | 33 | 34 | 35 | 36 | 37 | 38 | 39 | 40 | 41 | 42 | 43 | 44 | 45 | 46 | 47 | -------------------------------------------------------------------------------- /maven-fluido-skin/src/it/mskins-10/verify.groovy: -------------------------------------------------------------------------------- 1 | /* 2 | * Licensed to the Apache Software Foundation (ASF) under one 3 | * or more contributor license agreements. See the NOTICE file 4 | * distributed with this work for additional information 5 | * regarding copyright ownership. The ASF licenses this file 6 | * to you under the Apache License, Version 2.0 (the 7 | * "License"); you may not use this file except in compliance 8 | * with the License. You may obtain a copy of the License at 9 | * 10 | * http://www.apache.org/licenses/LICENSE-2.0 11 | * 12 | * Unless required by applicable law or agreed to in writing, 13 | * software distributed under the License is distributed on an 14 | * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY 15 | * KIND, either express or implied. See the License for the 16 | * specific language governing permissions and limitations 17 | * under the License. 18 | */ 19 | 20 | File index = new File( basedir, "target/site/index.html" ) 21 | assert index.exists() 22 | assert 1 == index.getText().count( 'Generated by Apache Maven Doxia ' ) -------------------------------------------------------------------------------- /maven-fluido-skin/src/it/mskins-13/src/site/site.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 23 | 24 | 27 | 28 | 29 | ${skinGroupId} 30 | ${skinArtifactId} 31 | ${skinVersion} 32 | 33 | 34 | 35 | 36 | true 37 | false 38 | 39 | true 40 | 41 | 42 | 43 | 44 | 45 | 46 | 47 | 48 | 49 | 50 | -------------------------------------------------------------------------------- /maven-fluido-skin/src/it/mskins-13/verify.groovy: -------------------------------------------------------------------------------- 1 | /* 2 | * Licensed to the Apache Software Foundation (ASF) under one 3 | * or more contributor license agreements. See the NOTICE file 4 | * distributed with this work for additional information 5 | * regarding copyright ownership. The ASF licenses this file 6 | * to you under the Apache License, Version 2.0 (the 7 | * "License"); you may not use this file except in compliance 8 | * with the License. You may obtain a copy of the License at 9 | * 10 | * http://www.apache.org/licenses/LICENSE-2.0 11 | * 12 | * Unless required by applicable law or agreed to in writing, 13 | * software distributed under the License is distributed on an 14 | * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY 15 | * KIND, either express or implied. See the License for the 16 | * specific language governing permissions and limitations 17 | * under the License. 18 | */ 19 | 20 | File index = new File( basedir, "target/site/index.html" ) 21 | assert index.exists() 22 | assert 0 == index.getText().count( 'Generated by Apache Maven Doxia at' ) -------------------------------------------------------------------------------- /maven-fluido-skin/src/it/mskins-14/src/site/site.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 23 | 24 | 27 | 28 | 29 | ${skinGroupId} 30 | ${skinArtifactId} 31 | ${skinVersion} 32 | 33 | 34 | 35 | 36 | 37 | 38 | 39 | 40 | 41 | -------------------------------------------------------------------------------- /maven-fluido-skin/src/it/mskins-14_sitesearch/src/site/site.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 23 | 24 | 27 | 28 | 29 | ${skinGroupId} 30 | ${skinArtifactId} 31 | ${skinVersion} 32 | 33 | 34 | 35 | 36 | 37 | maven.apache.org 38 | 39 | 40 | 41 | 42 | 43 | -------------------------------------------------------------------------------- /maven-fluido-skin/src/it/mskins-15/src/site/site.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 23 | 24 | 27 | 28 | 29 | ${skinGroupId} 30 | ${skinArtifactId} 31 | ${skinVersion} 32 | 33 | 34 | 35 | 36 | false 37 | true 38 | 39 | 40 | 41 | 42 | 43 | 44 | 45 | 46 | 47 | -------------------------------------------------------------------------------- /maven-fluido-skin/src/it/mskins-16/src/site/site.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 23 | 24 | 27 | 28 | 29 | ${skinGroupId} 30 | ${skinArtifactId} 31 | ${skinVersion} 32 | 33 | 34 | 35 | http://www.apache.org 36 | 0 37 | 473 38 | 93 39 | images/apache-maven-project-2.png 40 | 41 | 42 | 43 | http://maven.apache.org 44 | 1 45 | 473 46 | 93 47 | images/apache-maven-project-2.png 48 | 49 | 50 | 51 | -------------------------------------------------------------------------------- /maven-fluido-skin/src/it/mskins-17/src/site/apt/index.apt.vm: -------------------------------------------------------------------------------- 1 | ------ 2 | ${project.name} 3 | ------ 4 | Hervé Boutemy 5 | ------ 6 | 2011-10-15 7 | ------ 8 | 9 | ~~ Licensed to the Apache Software Foundation (ASF) under one 10 | ~~ or more contributor license agreements. See the NOTICE file 11 | ~~ distributed with this work for additional information 12 | ~~ regarding copyright ownership. The ASF licenses this file 13 | ~~ to you under the Apache License, Version 2.0 (the 14 | ~~ "License"); you may not use this file except in compliance 15 | ~~ with the License. You may obtain a copy of the License at 16 | ~~ 17 | ~~ http://www.apache.org/licenses/LICENSE-2.0 18 | ~~ 19 | ~~ Unless required by applicable law or agreed to in writing, 20 | ~~ software distributed under the License is distributed on an 21 | ~~ "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY 22 | ~~ KIND, either express or implied. See the License for the 23 | ~~ specific language governing permissions and limitations 24 | ~~ under the License. 25 | 26 | ~~ NOTE: For help with the syntax of this file, see: 27 | ~~ http://maven.apache.org/doxia/references/apt-format.html 28 | 29 | ${project.name} 30 | 31 | This is a test for ${skinName} with sidebar enabled and Google Search. 32 | ${skinDescription} 33 | 34 | * Actual configuration 35 | 36 | %{snippet|id=skin-custom-config|file=${project.basedir}/src/site/site.xml} 37 | -------------------------------------------------------------------------------- /maven-fluido-skin/src/it/mskins-17/src/site/site.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 23 | 24 | 27 | 28 | 29 | ${skinGroupId} 30 | ${skinArtifactId} 31 | ${skinVersion} 32 | 33 | 34 | 35 | 36 | 1970-01-01 37 | 38 | 39 | 40 | 41 | 42 | 43 | -------------------------------------------------------------------------------- /maven-fluido-skin/src/it/mskins-17/verify.groovy: -------------------------------------------------------------------------------- 1 | /* 2 | * Licensed to the Apache Software Foundation (ASF) under one 3 | * or more contributor license agreements. See the NOTICE file 4 | * distributed with this work for additional information 5 | * regarding copyright ownership. The ASF licenses this file 6 | * to you under the Apache License, Version 2.0 (the 7 | * "License"); you may not use this file except in compliance 8 | * with the License. You may obtain a copy of the License at 9 | * 10 | * http://www.apache.org/licenses/LICENSE-2.0 11 | * 12 | * Unless required by applicable law or agreed to in writing, 13 | * software distributed under the License is distributed on an 14 | * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY 15 | * KIND, either express or implied. See the License for the 16 | * specific language governing permissions and limitations 17 | * under the License. 18 | */ 19 | 20 | File index = new File( basedir, "target/site/index.html" ) 21 | assert index.exists() 22 | assert 1 == index.getText().count( '
  • Last Published: 1970-01-01
  • ' ) -------------------------------------------------------------------------------- /maven-fluido-skin/src/it/mskins-21/invoker.properties: -------------------------------------------------------------------------------- 1 | # Licensed to the Apache Software Foundation (ASF) under one 2 | # or more contributor license agreements. See the NOTICE file 3 | # distributed with this work for additional information 4 | # regarding copyright ownership. The ASF licenses this file 5 | # to you under the Apache License, Version 2.0 (the 6 | # "License"); you may not use this file except in compliance 7 | # with the License. You may obtain a copy of the License at 8 | # 9 | # http://www.apache.org/licenses/LICENSE-2.0 10 | # 11 | # Unless required by applicable law or agreed to in writing, 12 | # software distributed under the License is distributed on an 13 | # "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY 14 | # KIND, either express or implied. See the License for the 15 | # specific language governing permissions and limitations 16 | # under the License. 17 | 18 | invoker.maven.version = 3.0+ -------------------------------------------------------------------------------- /maven-fluido-skin/src/it/mskins-21/src/site/site.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 23 | 24 | 27 | 28 | 29 | ${skinGroupId} 30 | ${skinArtifactId} 31 | ${skinVersion} 32 | 33 | 34 | 35 | true 36 | 37 | 38 | 39 | 40 | 41 | 42 | 43 | 44 | 45 | 46 | 47 | 48 | -------------------------------------------------------------------------------- /maven-fluido-skin/src/it/mskins-22/pom.xml: -------------------------------------------------------------------------------- 1 | 2 | 18 | 20 | 4.0.0 21 | 22 | org.apache.maven 23 | maven-parent 24 | @project.parent.version@ 25 | 26 | 27 | org.apache.maven.skins.its 28 | @project.artifactId@-mskins-22 29 | 1.0-SNAPSHOT 30 | jar 31 | 32 | @project.name@ IT, MSKINS-22 33 | http://maven.apache.org/skins/@project.artifactId@/mskins-22/ 34 | 35 | 36 | @project.name@ 37 | @project.description@ 38 | @project.groupId@ 39 | @project.artifactId@ 40 | @project.version@ 41 | 42 | 43 | 44 | 45 | junit 46 | junit 47 | 3.8.2 48 | test 49 | 50 | 51 | 52 | 53 | 54 | 55 | org.apache.maven.plugins 56 | maven-site-plugin 57 | @sitePluginVersion@ 58 | 59 | 60 | 61 | 62 | 63 | 64 | 65 | org.apache.maven.plugins 66 | maven-project-info-reports-plugin 67 | 68 | false 69 | false 70 | 71 | 72 | 73 | 74 | 75 | 76 | -------------------------------------------------------------------------------- /maven-fluido-skin/src/it/mskins-22/src/site/apt/index.apt.vm: -------------------------------------------------------------------------------- 1 | ------ 2 | ${project.name} 3 | ------ 4 | Simo 5 | ------ 6 | 2011-12-26 7 | ------ 8 | 9 | ~~ Licensed to the Apache Software Foundation (ASF) under one 10 | ~~ or more contributor license agreements. See the NOTICE file 11 | ~~ distributed with this work for additional information 12 | ~~ regarding copyright ownership. The ASF licenses this file 13 | ~~ to you under the Apache License, Version 2.0 (the 14 | ~~ "License"); you may not use this file except in compliance 15 | ~~ with the License. You may obtain a copy of the License at 16 | ~~ 17 | ~~ http://www.apache.org/licenses/LICENSE-2.0 18 | ~~ 19 | ~~ Unless required by applicable law or agreed to in writing, 20 | ~~ software distributed under the License is distributed on an 21 | ~~ "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY 22 | ~~ KIND, either express or implied. See the License for the 23 | ~~ specific language governing permissions and limitations 24 | ~~ under the License. 25 | 26 | ~~ NOTE: For help with the syntax of this file, see: 27 | ~~ http://maven.apache.org/doxia/references/apt-format.html 28 | 29 | ${project.name} 30 | 31 | This is a test for ${skinName} with GitHub ribbon enabled. 32 | ${skinDescription} 33 | 34 | * Actual configuration 35 | 36 | %{snippet|id=skin-custom-config|file=${project.basedir}/src/site/site.xml} 37 | -------------------------------------------------------------------------------- /maven-fluido-skin/src/it/mskins-22_default/pom.xml: -------------------------------------------------------------------------------- 1 | 2 | 18 | 20 | 4.0.0 21 | 22 | org.apache.maven 23 | maven-parent 24 | @project.parent.version@ 25 | 26 | 27 | org.apache.maven.skins.its 28 | @project.artifactId@-mskins-22_default 29 | 1.0-SNAPSHOT 30 | jar 31 | 32 | @project.name@ IT, MSKINS-22 (default) 33 | http://maven.apache.org/skins/@project.artifactId@/mskins-22_default/ 34 | 35 | 36 | @project.name@ 37 | @project.description@ 38 | @project.groupId@ 39 | @project.artifactId@ 40 | @project.version@ 41 | 42 | 43 | 44 | 45 | junit 46 | junit 47 | 3.8.2 48 | test 49 | 50 | 51 | 52 | 53 | 54 | 55 | org.apache.maven.plugins 56 | maven-site-plugin 57 | @sitePluginVersion@ 58 | 59 | 60 | 61 | 62 | 63 | 64 | 65 | org.apache.maven.plugins 66 | maven-project-info-reports-plugin 67 | 68 | false 69 | false 70 | 71 | 72 | 73 | 74 | 75 | 76 | -------------------------------------------------------------------------------- /maven-fluido-skin/src/it/mskins-22_default/src/site/apt/index.apt.vm: -------------------------------------------------------------------------------- 1 | ------ 2 | ${project.name} 3 | ------ 4 | Simo 5 | ------ 6 | 2011-12-26 7 | ------ 8 | 9 | ~~ Licensed to the Apache Software Foundation (ASF) under one 10 | ~~ or more contributor license agreements. See the NOTICE file 11 | ~~ distributed with this work for additional information 12 | ~~ regarding copyright ownership. The ASF licenses this file 13 | ~~ to you under the Apache License, Version 2.0 (the 14 | ~~ "License"); you may not use this file except in compliance 15 | ~~ with the License. You may obtain a copy of the License at 16 | ~~ 17 | ~~ http://www.apache.org/licenses/LICENSE-2.0 18 | ~~ 19 | ~~ Unless required by applicable law or agreed to in writing, 20 | ~~ software distributed under the License is distributed on an 21 | ~~ "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY 22 | ~~ KIND, either express or implied. See the License for the 23 | ~~ specific language governing permissions and limitations 24 | ~~ under the License. 25 | 26 | ~~ NOTE: For help with the syntax of this file, see: 27 | ~~ http://maven.apache.org/doxia/references/apt-format.html 28 | 29 | ${project.name} 30 | 31 | This is a test for ${skinName} with GitHub ribbon enabled. 32 | ${skinDescription} 33 | 34 | * Actual configuration 35 | 36 | %{snippet|id=skin-custom-config|file=${project.basedir}/src/site/site.xml} 37 | -------------------------------------------------------------------------------- /maven-fluido-skin/src/it/mskins-22_topbar/pom.xml: -------------------------------------------------------------------------------- 1 | 2 | 18 | 20 | 4.0.0 21 | 22 | org.apache.maven 23 | maven-parent 24 | @project.parent.version@ 25 | 26 | 27 | org.apache.maven.skins.its 28 | @project.artifactId@-mskins-22 29 | 1.0-SNAPSHOT 30 | jar 31 | 32 | @project.name@ IT, MSKINS-22 33 | http://maven.apache.org/skins/@project.artifactId@/mskins-22/ 34 | 35 | 36 | @project.name@ 37 | @project.description@ 38 | @project.groupId@ 39 | @project.artifactId@ 40 | @project.version@ 41 | 42 | 43 | 44 | 45 | junit 46 | junit 47 | 3.8.2 48 | test 49 | 50 | 51 | 52 | 53 | 54 | 55 | org.apache.maven.plugins 56 | maven-site-plugin 57 | @sitePluginVersion@ 58 | 59 | 60 | 61 | 62 | 63 | 64 | 65 | org.apache.maven.plugins 66 | maven-project-info-reports-plugin 67 | 68 | false 69 | false 70 | 71 | 72 | 73 | 74 | 75 | 76 | -------------------------------------------------------------------------------- /maven-fluido-skin/src/it/mskins-22_topbar/src/site/apt/index.apt.vm: -------------------------------------------------------------------------------- 1 | ------ 2 | ${project.name} 3 | ------ 4 | Simo 5 | ------ 6 | 2011-12-26 7 | ------ 8 | 9 | ~~ Licensed to the Apache Software Foundation (ASF) under one 10 | ~~ or more contributor license agreements. See the NOTICE file 11 | ~~ distributed with this work for additional information 12 | ~~ regarding copyright ownership. The ASF licenses this file 13 | ~~ to you under the Apache License, Version 2.0 (the 14 | ~~ "License"); you may not use this file except in compliance 15 | ~~ with the License. You may obtain a copy of the License at 16 | ~~ 17 | ~~ http://www.apache.org/licenses/LICENSE-2.0 18 | ~~ 19 | ~~ Unless required by applicable law or agreed to in writing, 20 | ~~ software distributed under the License is distributed on an 21 | ~~ "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY 22 | ~~ KIND, either express or implied. See the License for the 23 | ~~ specific language governing permissions and limitations 24 | ~~ under the License. 25 | 26 | ~~ NOTE: For help with the syntax of this file, see: 27 | ~~ http://maven.apache.org/doxia/references/apt-format.html 28 | 29 | ${project.name} 30 | 31 | This is a test for ${skinName} with GitHub ribbon enabled. 32 | ${skinDescription} 33 | 34 | * Actual configuration 35 | 36 | %{snippet|id=skin-custom-config|file=${project.basedir}/src/site/site.xml} 37 | -------------------------------------------------------------------------------- /maven-fluido-skin/src/it/mskins-23/pom.xml: -------------------------------------------------------------------------------- 1 | 2 | 18 | 20 | 4.0.0 21 | 22 | org.apache.maven 23 | maven-parent 24 | @project.parent.version@ 25 | 26 | 27 | org.apache.maven.skins.its 28 | @project.artifactId@-mskins-23 29 | 1.0-SNAPSHOT 30 | jar 31 | 32 | @project.name@ IT, MSKINS-23 33 | http://maven.apache.org/skins/@project.artifactId@/mskins-23/ 34 | 35 | 36 | @project.name@ 37 | @project.description@ 38 | @project.groupId@ 39 | @project.artifactId@ 40 | @project.version@ 41 | 42 | 43 | 44 | 45 | junit 46 | junit 47 | 3.8.2 48 | test 49 | 50 | 51 | 52 | 53 | 54 | 55 | org.apache.maven.plugins 56 | maven-site-plugin 57 | @sitePluginVersion@ 58 | 59 | 60 | 61 | 62 | 63 | 64 | 65 | org.apache.maven.plugins 66 | maven-project-info-reports-plugin 67 | 68 | false 69 | false 70 | 71 | 72 | 73 | 74 | 75 | 76 | -------------------------------------------------------------------------------- /maven-fluido-skin/src/it/mskins-23/src/site/apt/index.apt.vm: -------------------------------------------------------------------------------- 1 | ------ 2 | ${project.name} 3 | ------ 4 | Simo 5 | ------ 6 | 2011-12-26 7 | ------ 8 | 9 | ~~ Licensed to the Apache Software Foundation (ASF) under one 10 | ~~ or more contributor license agreements. See the NOTICE file 11 | ~~ distributed with this work for additional information 12 | ~~ regarding copyright ownership. The ASF licenses this file 13 | ~~ to you under the Apache License, Version 2.0 (the 14 | ~~ "License"); you may not use this file except in compliance 15 | ~~ with the License. You may obtain a copy of the License at 16 | ~~ 17 | ~~ http://www.apache.org/licenses/LICENSE-2.0 18 | ~~ 19 | ~~ Unless required by applicable law or agreed to in writing, 20 | ~~ software distributed under the License is distributed on an 21 | ~~ "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY 22 | ~~ KIND, either express or implied. See the License for the 23 | ~~ specific language governing permissions and limitations 24 | ~~ under the License. 25 | 26 | ~~ NOTE: For help with the syntax of this file, see: 27 | ~~ http://maven.apache.org/doxia/references/apt-format.html 28 | 29 | ${project.name} 30 | 31 | This is a test for ${skinName} with MOJOs profiles enabled. 32 | ${skinDescription} 33 | 34 | * Actual configuration 35 | 36 | %{snippet|id=skin-custom-config|file=${project.basedir}/src/site/site.xml} 37 | -------------------------------------------------------------------------------- /maven-fluido-skin/src/it/mskins-24/pom.xml: -------------------------------------------------------------------------------- 1 | 2 | 18 | 20 | 4.0.0 21 | 22 | org.apache.maven 23 | maven-parent 24 | @project.parent.version@ 25 | 26 | 27 | org.apache.maven.skins.its 28 | @project.artifactId@-mskins-24 29 | 1.0-SNAPSHOT 30 | jar 31 | 32 | @project.name@ IT, MSKINS-24 33 | http://maven.apache.org/skins/@project.artifactId@/mskins-24/ 34 | 35 | 36 | @project.name@ 37 | @project.description@ 38 | @project.groupId@ 39 | @project.artifactId@ 40 | @project.version@ 41 | 42 | 43 | 44 | 45 | junit 46 | junit 47 | 3.8.2 48 | test 49 | 50 | 51 | 52 | 53 | 54 | 55 | org.apache.maven.plugins 56 | maven-site-plugin 57 | @sitePluginVersion@ 58 | 59 | 60 | 61 | 62 | 63 | 64 | 65 | org.apache.maven.plugins 66 | maven-project-info-reports-plugin 67 | 68 | false 69 | false 70 | 71 | 72 | 73 | 74 | 75 | 76 | -------------------------------------------------------------------------------- /maven-fluido-skin/src/it/mskins-24/src/site/apt/index.apt.vm: -------------------------------------------------------------------------------- 1 | ------ 2 | ${project.name} 3 | ------ 4 | Simo 5 | ------ 6 | 2011-12-26 7 | ------ 8 | 9 | ~~ Licensed to the Apache Software Foundation (ASF) under one 10 | ~~ or more contributor license agreements. See the NOTICE file 11 | ~~ distributed with this work for additional information 12 | ~~ regarding copyright ownership. The ASF licenses this file 13 | ~~ to you under the Apache License, Version 2.0 (the 14 | ~~ "License"); you may not use this file except in compliance 15 | ~~ with the License. You may obtain a copy of the License at 16 | ~~ 17 | ~~ http://www.apache.org/licenses/LICENSE-2.0 18 | ~~ 19 | ~~ Unless required by applicable law or agreed to in writing, 20 | ~~ software distributed under the License is distributed on an 21 | ~~ "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY 22 | ~~ KIND, either express or implied. See the License for the 23 | ~~ specific language governing permissions and limitations 24 | ~~ under the License. 25 | 26 | ~~ NOTE: For help with the syntax of this file, see: 27 | ~~ http://maven.apache.org/doxia/references/apt-format.html 28 | 29 | ${project.name} 30 | 31 | This is a test for ${skinName} with MOJOs profiles enabled. 32 | ${skinDescription} 33 | 34 | * Actual configuration 35 | 36 | %{snippet|id=skin-custom-config|file=${project.basedir}/src/site/site.xml} 37 | -------------------------------------------------------------------------------- /maven-fluido-skin/src/it/mskins-24_topbar/pom.xml: -------------------------------------------------------------------------------- 1 | 2 | 18 | 20 | 4.0.0 21 | 22 | org.apache.maven 23 | maven-parent 24 | @project.parent.version@ 25 | 26 | 27 | org.apache.maven.skins.its 28 | @project.artifactId@-mskins-24_topbar 29 | 1.0-SNAPSHOT 30 | jar 31 | 32 | @project.name@ IT, MSKINS-24 33 | http://maven.apache.org/skins/@project.artifactId@/mskins-24_topbar/ 34 | 35 | 36 | @project.name@ 37 | @project.description@ 38 | @project.groupId@ 39 | @project.artifactId@ 40 | @project.version@ 41 | 42 | 43 | 44 | 45 | junit 46 | junit 47 | 3.8.2 48 | test 49 | 50 | 51 | 52 | 53 | 54 | 55 | org.apache.maven.plugins 56 | maven-site-plugin 57 | @sitePluginVersion@ 58 | 59 | 60 | 61 | 62 | 63 | 64 | 65 | org.apache.maven.plugins 66 | maven-project-info-reports-plugin 67 | 68 | false 69 | false 70 | 71 | 72 | 73 | 74 | 75 | 76 | -------------------------------------------------------------------------------- /maven-fluido-skin/src/it/mskins-24_topbar/src/site/apt/index.apt.vm: -------------------------------------------------------------------------------- 1 | ------ 2 | ${project.name} 3 | ------ 4 | Simo 5 | ------ 6 | 2011-12-26 7 | ------ 8 | 9 | ~~ Licensed to the Apache Software Foundation (ASF) under one 10 | ~~ or more contributor license agreements. See the NOTICE file 11 | ~~ distributed with this work for additional information 12 | ~~ regarding copyright ownership. The ASF licenses this file 13 | ~~ to you under the Apache License, Version 2.0 (the 14 | ~~ "License"); you may not use this file except in compliance 15 | ~~ with the License. You may obtain a copy of the License at 16 | ~~ 17 | ~~ http://www.apache.org/licenses/LICENSE-2.0 18 | ~~ 19 | ~~ Unless required by applicable law or agreed to in writing, 20 | ~~ software distributed under the License is distributed on an 21 | ~~ "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY 22 | ~~ KIND, either express or implied. See the License for the 23 | ~~ specific language governing permissions and limitations 24 | ~~ under the License. 25 | 26 | ~~ NOTE: For help with the syntax of this file, see: 27 | ~~ http://maven.apache.org/doxia/references/apt-format.html 28 | 29 | ${project.name} 30 | 31 | This is a test for ${skinName} with MOJOs profiles enabled. 32 | ${skinDescription} 33 | 34 | * Actual configuration 35 | 36 | %{snippet|id=skin-custom-config|file=${project.basedir}/src/site/site.xml} 37 | -------------------------------------------------------------------------------- /maven-fluido-skin/src/it/mskins-25/pom.xml: -------------------------------------------------------------------------------- 1 | 2 | 18 | 20 | 4.0.0 21 | 22 | org.apache.maven 23 | maven-parent 24 | @project.parent.version@ 25 | 26 | 27 | org.apache.maven.skins.its 28 | @project.artifactId@-mskins-25 29 | 1.0-SNAPSHOT 30 | jar 31 | 32 | @project.name@ IT, MSKINS-25 33 | http://maven.apache.org/skins/@project.artifactId@/mskins-25/ 34 | 35 | 36 | @project.name@ 37 | @project.description@ 38 | @project.groupId@ 39 | @project.artifactId@ 40 | @project.version@ 41 | 42 | 43 | 44 | 45 | junit 46 | junit 47 | 3.8.2 48 | test 49 | 50 | 51 | 52 | 53 | 54 | 55 | org.apache.maven.plugins 56 | maven-site-plugin 57 | @sitePluginVersion@ 58 | 59 | 60 | 61 | 62 | 63 | 64 | 65 | org.apache.maven.plugins 66 | maven-project-info-reports-plugin 67 | 68 | false 69 | false 70 | 71 | 72 | 73 | 74 | 75 | 76 | -------------------------------------------------------------------------------- /maven-fluido-skin/src/it/mskins-25/src/site/apt/index.apt.vm: -------------------------------------------------------------------------------- 1 | ------ 2 | ${project.name} 3 | ------ 4 | Hervé Boutemy 5 | ------ 6 | 2011-10-15 7 | ------ 8 | 9 | ~~ Licensed to the Apache Software Foundation (ASF) under one 10 | ~~ or more contributor license agreements. See the NOTICE file 11 | ~~ distributed with this work for additional information 12 | ~~ regarding copyright ownership. The ASF licenses this file 13 | ~~ to you under the Apache License, Version 2.0 (the 14 | ~~ "License"); you may not use this file except in compliance 15 | ~~ with the License. You may obtain a copy of the License at 16 | ~~ 17 | ~~ http://www.apache.org/licenses/LICENSE-2.0 18 | ~~ 19 | ~~ Unless required by applicable law or agreed to in writing, 20 | ~~ software distributed under the License is distributed on an 21 | ~~ "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY 22 | ~~ KIND, either express or implied. See the License for the 23 | ~~ specific language governing permissions and limitations 24 | ~~ under the License. 25 | 26 | ~~ NOTE: For help with the syntax of this file, see: 27 | ~~ http://maven.apache.org/doxia/references/apt-format.html 28 | 29 | ${project.name} 30 | 31 | This is a test for ${skinName} with sidebar enabled and Google Search. 32 | ${skinDescription} 33 | 34 | * Actual configuration 35 | 36 | %{snippet|id=skin-custom-config|file=${project.basedir}/src/site/site.xml} 37 | -------------------------------------------------------------------------------- /maven-fluido-skin/src/it/mskins-25/src/site/site.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 23 | 24 | 27 | 28 | 29 | ${skinGroupId} 30 | ${skinArtifactId} 31 | ${skinVersion} 32 | 33 | 34 | 35 | 36 | 37 | 38 | 3499 39 | factoids 40 | 41 | 42 | 43 | 44 | 45 | 46 | 47 | 48 | 49 | 50 | 51 | 52 | 53 | 54 | 55 | 56 |
    57 | Apache Maven, Apache $project.name, Apache, the Apache feather logo, and the Apache Maven project logos are trademarks of The Apache Software Foundation. 59 | All other marks mentioned may be trademarks or registered trademarks of their respective owners. 60 | ]]> 61 |
    62 | 63 | 64 | -------------------------------------------------------------------------------- /maven-fluido-skin/src/it/mskins-28/pom.xml: -------------------------------------------------------------------------------- 1 | 2 | 18 | 20 | 4.0.0 21 | 22 | org.apache.maven.skins.its 23 | mskins-28 24 | 1.0-SNAPSHOT 25 | 26 | 27 | Multiple logo's in the leftside bar 28 | 29 | 30 | 31 | @project.name@ 32 | @project.description@ 33 | @project.groupId@ 34 | @project.artifactId@ 35 | @project.version@ 36 | 37 | 38 | 39 | 40 | 41 | org.apache.maven.plugins 42 | maven-site-plugin 43 | @sitePluginVersion@ 44 | 45 | 46 | 47 | 48 | 49 | 50 | 51 | org.apache.maven.plugins 52 | maven-project-info-reports-plugin 53 | 2.4 54 | 55 | 56 | 57 | index 58 | 59 | 60 | 61 | 62 | 63 | 64 | 65 | 66 | -------------------------------------------------------------------------------- /maven-fluido-skin/src/it/mskins-28/src/site/apt/index.apt.vm: -------------------------------------------------------------------------------- 1 | ------ 2 | ${project.name} 3 | ------ 4 | Andreas Sewe 5 | ------ 6 | 2012-12-26 7 | ------ 8 | 9 | ~~ Licensed to the Apache Software Foundation (ASF) under one 10 | ~~ or more contributor license agreements. See the NOTICE file 11 | ~~ distributed with this work for additional information 12 | ~~ regarding copyright ownership. The ASF licenses this file 13 | ~~ to you under the Apache License, Version 2.0 (the 14 | ~~ "License"); you may not use this file except in compliance 15 | ~~ with the License. You may obtain a copy of the License at 16 | ~~ 17 | ~~ http://www.apache.org/licenses/LICENSE-2.0 18 | ~~ 19 | ~~ Unless required by applicable law or agreed to in writing, 20 | ~~ software distributed under the License is distributed on an 21 | ~~ "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY 22 | ~~ KIND, either express or implied. See the License for the 23 | ~~ specific language governing permissions and limitations 24 | ~~ under the License. 25 | 26 | ~~ NOTE: For help with the syntax of this file, see: 27 | ~~ http://maven.apache.org/doxia/references/apt-format.html 28 | 29 | ${project.name} 30 | 31 | This is a test for ${skinName} with multiple "powered by" logos. 32 | ${skinDescription} 33 | 34 | * Actual configuration 35 | 36 | %{snippet|id=skin-custom-config|file=${project.basedir}/src/site/site.xml} 37 | -------------------------------------------------------------------------------- /maven-fluido-skin/src/it/mskins-28/src/site/site.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 23 | 24 | 27 | 28 | 29 | ${skinGroupId} 30 | ${skinArtifactId} 31 | ${skinVersion} 32 | 33 | 34 | 35 | 36 | 37 | 38 | 39 | 40 | 41 | 42 | 43 | 44 | 45 | 46 | 47 | 48 | 49 | 50 | 51 | 52 | 53 | -------------------------------------------------------------------------------- /maven-fluido-skin/src/it/mskins-31/pom.xml: -------------------------------------------------------------------------------- 1 | 2 | 18 | 20 | 4.0.0 21 | 22 | org.apache.maven.skins.its 23 | @project.artifactId@-mskins-31 24 | 1.0-SNAPSHOT 25 | jar 26 | 27 | @project.name@ IT, MSKINS-31 28 | http://maven.apache.org/skins/@project.artifactId@/mskins-31/ 29 | 30 | 31 | @project.name@ 32 | @project.description@ 33 | @project.groupId@ 34 | @project.artifactId@ 35 | @project.version@ 36 | 37 | 38 | 39 | 40 | 41 | org.apache.maven.plugins 42 | maven-site-plugin 43 | @sitePluginVersion@ 44 | 45 | 46 | 47 | 48 | 49 | -------------------------------------------------------------------------------- /maven-fluido-skin/src/it/mskins-31/src/site/apt/site.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 23 | 24 | 27 | 28 | 29 | ${skinGroupId} 30 | ${skinArtifactId} 31 | ${skinVersion} 32 | 33 | 34 | 35 | 36 | 37 | 38 | -------------------------------------------------------------------------------- /maven-fluido-skin/src/it/mskins-31/src/site/site.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 23 | 24 | 27 | 28 | 29 | ${skinGroupId} 30 | ${skinArtifactId} 31 | ${skinVersion} 32 | 33 | 34 | 35 | -------------------------------------------------------------------------------- /maven-fluido-skin/src/it/mskins-33/pom.xml: -------------------------------------------------------------------------------- 1 | 2 | 18 | 20 | 4.0.0 21 | 22 | org.apache.maven 23 | maven-parent 24 | @project.parent.version@ 25 | 26 | 27 | org.apache.maven.skins.its 28 | @project.artifactId@-mskins-33 29 | 1.0-SNAPSHOT 30 | jar 31 | 32 | @project.name@ IT, MSKINS-33 33 | http://maven.apache.org/skins/@project.artifactId@/mskins-23/ 34 | 35 | 36 | @project.name@ 37 | @project.description@ 38 | @project.groupId@ 39 | @project.artifactId@ 40 | @project.version@ 41 | 42 | 43 | 44 | 45 | junit 46 | junit 47 | 3.8.2 48 | test 49 | 50 | 51 | 52 | 53 | 54 | 55 | org.apache.maven.plugins 56 | maven-site-plugin 57 | @sitePluginVersion@ 58 | 59 | 60 | 61 | 62 | 63 | 64 | 65 | org.apache.maven.plugins 66 | maven-project-info-reports-plugin 67 | 68 | false 69 | false 70 | 71 | 72 | 73 | 74 | 75 | 76 | -------------------------------------------------------------------------------- /maven-fluido-skin/src/it/mskins-33/src/site/apt/index.apt.vm: -------------------------------------------------------------------------------- 1 | ------ 2 | ${project.name} 3 | ------ 4 | Simo 5 | ------ 6 | 2012-03-18 7 | ------ 8 | 9 | ~~ Licensed to the Apache Software Foundation (ASF) under one 10 | ~~ or more contributor license agreements. See the NOTICE file 11 | ~~ distributed with this work for additional information 12 | ~~ regarding copyright ownership. The ASF licenses this file 13 | ~~ to you under the Apache License, Version 2.0 (the 14 | ~~ "License"); you may not use this file except in compliance 15 | ~~ with the License. You may obtain a copy of the License at 16 | ~~ 17 | ~~ http://www.apache.org/licenses/LICENSE-2.0 18 | ~~ 19 | ~~ Unless required by applicable law or agreed to in writing, 20 | ~~ software distributed under the License is distributed on an 21 | ~~ "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY 22 | ~~ KIND, either express or implied. See the License for the 23 | ~~ specific language governing permissions and limitations 24 | ~~ under the License. 25 | 26 | ~~ NOTE: For help with the syntax of this file, see: 27 | ~~ http://maven.apache.org/doxia/references/apt-format.html 28 | 29 | ${project.name} 30 | 31 | This is a test for ${skinName} with Facebook like button. 32 | ${skinDescription} 33 | 34 | * Actual configuration 35 | 36 | %{snippet|id=skin-custom-config|file=${project.basedir}/src/site/site.xml} 37 | -------------------------------------------------------------------------------- /maven-fluido-skin/src/it/mskins-33/src/site/site.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 23 | 24 | 27 | 28 | 29 | ${skinGroupId} 30 | ${skinArtifactId} 31 | ${skinVersion} 32 | 33 | 34 | 35 | 36 | 37 | 38 | 39 | 40 | 41 | 42 | 43 | 44 | 45 | 46 | -------------------------------------------------------------------------------- /maven-fluido-skin/src/it/mskins-33_topbar/pom.xml: -------------------------------------------------------------------------------- 1 | 2 | 18 | 20 | 4.0.0 21 | 22 | org.apache.maven 23 | maven-parent 24 | @project.parent.version@ 25 | 26 | 27 | org.apache.maven.skins.its 28 | @project.artifactId@-mskins-33 29 | 1.0-SNAPSHOT 30 | jar 31 | 32 | @project.name@ IT, MSKINS-33 33 | http://maven.apache.org/skins/@project.artifactId@/mskins-23/ 34 | 35 | 36 | @project.name@ 37 | @project.description@ 38 | @project.groupId@ 39 | @project.artifactId@ 40 | @project.version@ 41 | 42 | 43 | 44 | 45 | junit 46 | junit 47 | 3.8.2 48 | test 49 | 50 | 51 | 52 | 53 | 54 | 55 | org.apache.maven.plugins 56 | maven-site-plugin 57 | @sitePluginVersion@ 58 | 59 | 60 | 61 | 62 | 63 | 64 | 65 | org.apache.maven.plugins 66 | maven-project-info-reports-plugin 67 | 68 | false 69 | false 70 | 71 | 72 | 73 | 74 | 75 | 76 | -------------------------------------------------------------------------------- /maven-fluido-skin/src/it/mskins-33_topbar/src/site/apt/index.apt.vm: -------------------------------------------------------------------------------- 1 | ------ 2 | ${project.name} 3 | ------ 4 | Simo 5 | ------ 6 | 2012-03-18 7 | ------ 8 | 9 | ~~ Licensed to the Apache Software Foundation (ASF) under one 10 | ~~ or more contributor license agreements. See the NOTICE file 11 | ~~ distributed with this work for additional information 12 | ~~ regarding copyright ownership. The ASF licenses this file 13 | ~~ to you under the Apache License, Version 2.0 (the 14 | ~~ "License"); you may not use this file except in compliance 15 | ~~ with the License. You may obtain a copy of the License at 16 | ~~ 17 | ~~ http://www.apache.org/licenses/LICENSE-2.0 18 | ~~ 19 | ~~ Unless required by applicable law or agreed to in writing, 20 | ~~ software distributed under the License is distributed on an 21 | ~~ "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY 22 | ~~ KIND, either express or implied. See the License for the 23 | ~~ specific language governing permissions and limitations 24 | ~~ under the License. 25 | 26 | ~~ NOTE: For help with the syntax of this file, see: 27 | ~~ http://maven.apache.org/doxia/references/apt-format.html 28 | 29 | ${project.name} 30 | 31 | This is a test for ${skinName} with Facebook like button. 32 | ${skinDescription} 33 | 34 | * Actual configuration 35 | 36 | %{snippet|id=skin-custom-config|file=${project.basedir}/src/site/site.xml} 37 | -------------------------------------------------------------------------------- /maven-fluido-skin/src/it/mskins-33_topbar/src/site/site.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 23 | 24 | 27 | 28 | 29 | ${skinGroupId} 30 | ${skinArtifactId} 31 | ${skinVersion} 32 | 33 | 34 | 35 | 36 | 37 | 38 | true 39 | false 40 | 41 | 42 | 43 | 44 | 45 | 46 | 47 | 48 | -------------------------------------------------------------------------------- /maven-fluido-skin/src/it/mskins-34/pom.xml: -------------------------------------------------------------------------------- 1 | 2 | 18 | 20 | 4.0.0 21 | 22 | org.apache.maven 23 | maven-parent 24 | @project.parent.version@ 25 | 26 | 27 | org.apache.maven.skins.its 28 | @project.artifactId@-mskins-34 29 | 1.0-SNAPSHOT 30 | jar 31 | 32 | @project.name@ IT, MSKINS-34 33 | http://maven.apache.org/skins/@project.artifactId@/mskins-34/ 34 | 35 | 36 | @project.name@ 37 | @project.description@ 38 | @project.groupId@ 39 | @project.artifactId@ 40 | @project.version@ 41 | 42 | 43 | 44 | 45 | junit 46 | junit 47 | 3.8.2 48 | test 49 | 50 | 51 | 52 | 53 | 54 | 55 | org.apache.maven.plugins 56 | maven-site-plugin 57 | @sitePluginVersion@ 58 | 59 | 60 | 61 | 62 | 63 | 64 | 65 | org.apache.maven.plugins 66 | maven-project-info-reports-plugin 67 | 68 | false 69 | false 70 | 71 | 72 | 73 | 74 | 75 | 76 | -------------------------------------------------------------------------------- /maven-fluido-skin/src/it/mskins-34/src/site/apt/index.apt.vm: -------------------------------------------------------------------------------- 1 | ------ 2 | ${project.name} 3 | ------ 4 | Simo 5 | ------ 6 | 2012-03-18 7 | ------ 8 | 9 | ~~ Licensed to the Apache Software Foundation (ASF) under one 10 | ~~ or more contributor license agreements. See the NOTICE file 11 | ~~ distributed with this work for additional information 12 | ~~ regarding copyright ownership. The ASF licenses this file 13 | ~~ to you under the Apache License, Version 2.0 (the 14 | ~~ "License"); you may not use this file except in compliance 15 | ~~ with the License. You may obtain a copy of the License at 16 | ~~ 17 | ~~ http://www.apache.org/licenses/LICENSE-2.0 18 | ~~ 19 | ~~ Unless required by applicable law or agreed to in writing, 20 | ~~ software distributed under the License is distributed on an 21 | ~~ "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY 22 | ~~ KIND, either express or implied. See the License for the 23 | ~~ specific language governing permissions and limitations 24 | ~~ under the License. 25 | 26 | ~~ NOTE: For help with the syntax of this file, see: 27 | ~~ http://maven.apache.org/doxia/references/apt-format.html 28 | 29 | ${project.name} 30 | 31 | This is a test for ${skinName} with Facebook like button. 32 | ${skinDescription} 33 | 34 | * Actual configuration 35 | 36 | %{snippet|id=skin-custom-config|file=${project.basedir}/src/site/site.xml} 37 | -------------------------------------------------------------------------------- /maven-fluido-skin/src/it/mskins-34/src/site/site.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 23 | 24 | 27 | 28 | 29 | ${skinGroupId} 30 | ${skinArtifactId} 31 | ${skinVersion} 32 | 33 | 34 | 35 | 36 | 37 | 38 | 39 | 40 | 41 | 42 | 43 | 44 | 45 | 46 | -------------------------------------------------------------------------------- /maven-fluido-skin/src/it/mskins-34_topbar/pom.xml: -------------------------------------------------------------------------------- 1 | 2 | 18 | 20 | 4.0.0 21 | 22 | org.apache.maven 23 | maven-parent 24 | @project.parent.version@ 25 | 26 | 27 | org.apache.maven.skins.its 28 | @project.artifactId@-mskins-34 29 | 1.0-SNAPSHOT 30 | jar 31 | 32 | @project.name@ IT, MSKINS-34 33 | http://maven.apache.org/skins/@project.artifactId@/mskins-34/ 34 | 35 | 36 | @project.name@ 37 | @project.description@ 38 | @project.groupId@ 39 | @project.artifactId@ 40 | @project.version@ 41 | 42 | 43 | 44 | 45 | junit 46 | junit 47 | 3.8.2 48 | test 49 | 50 | 51 | 52 | 53 | 54 | 55 | org.apache.maven.plugins 56 | maven-site-plugin 57 | @sitePluginVersion@ 58 | 59 | 60 | 61 | 62 | 63 | 64 | 65 | org.apache.maven.plugins 66 | maven-project-info-reports-plugin 67 | 68 | false 69 | false 70 | 71 | 72 | 73 | 74 | 75 | 76 | -------------------------------------------------------------------------------- /maven-fluido-skin/src/it/mskins-34_topbar/src/site/apt/index.apt.vm: -------------------------------------------------------------------------------- 1 | ------ 2 | ${project.name} 3 | ------ 4 | Simo 5 | ------ 6 | 2012-03-18 7 | ------ 8 | 9 | ~~ Licensed to the Apache Software Foundation (ASF) under one 10 | ~~ or more contributor license agreements. See the NOTICE file 11 | ~~ distributed with this work for additional information 12 | ~~ regarding copyright ownership. The ASF licenses this file 13 | ~~ to you under the Apache License, Version 2.0 (the 14 | ~~ "License"); you may not use this file except in compliance 15 | ~~ with the License. You may obtain a copy of the License at 16 | ~~ 17 | ~~ http://www.apache.org/licenses/LICENSE-2.0 18 | ~~ 19 | ~~ Unless required by applicable law or agreed to in writing, 20 | ~~ software distributed under the License is distributed on an 21 | ~~ "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY 22 | ~~ KIND, either express or implied. See the License for the 23 | ~~ specific language governing permissions and limitations 24 | ~~ under the License. 25 | 26 | ~~ NOTE: For help with the syntax of this file, see: 27 | ~~ http://maven.apache.org/doxia/references/apt-format.html 28 | 29 | ${project.name} 30 | 31 | This is a test for ${skinName} with Facebook like button. 32 | ${skinDescription} 33 | 34 | * Actual configuration 35 | 36 | %{snippet|id=skin-custom-config|file=${project.basedir}/src/site/site.xml} 37 | -------------------------------------------------------------------------------- /maven-fluido-skin/src/it/mskins-34_topbar/src/site/site.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 23 | 24 | 27 | 28 | 29 | ${skinGroupId} 30 | ${skinArtifactId} 31 | ${skinVersion} 32 | 33 | 34 | 35 | 36 | 37 | 38 | true 39 | false 40 | 41 | 42 | 43 | 44 | 45 | 46 | 47 | 48 | -------------------------------------------------------------------------------- /maven-fluido-skin/src/it/mskins-41/pom.xml: -------------------------------------------------------------------------------- 1 | 2 | 18 | 20 | 4.0.0 21 | 22 | org.apache.maven.skins.its 23 | mskins-41 24 | 1.0-SNAPSHOT 25 | 26 | 27 | @project.name@ 28 | @project.description@ 29 | @project.groupId@ 30 | @project.artifactId@ 31 | @project.version@ 32 | 33 | 34 | 35 | 36 | 37 | org.apache.maven.plugins 38 | maven-site-plugin 39 | @sitePluginVersion@ 40 | 41 | 42 | 43 | 44 | 45 | 46 | 47 | org.apache.maven.plugins 48 | maven-project-info-reports-plugin 49 | 2.4 50 | 51 | 52 | 53 | index 54 | 55 | 56 | 57 | 58 | 59 | 60 | 61 | 62 | -------------------------------------------------------------------------------- /maven-fluido-skin/src/it/mskins-41/src/site/apt/index.apt.vm: -------------------------------------------------------------------------------- 1 | ------ 2 | ${project.name} 3 | ------ 4 | Andreas Sewe 5 | ------ 6 | 2012-12-29 7 | ------ 8 | 9 | ~~ Licensed to the Apache Software Foundation (ASF) under one 10 | ~~ or more contributor license agreements. See the NOTICE file 11 | ~~ distributed with this work for additional information 12 | ~~ regarding copyright ownership. The ASF licenses this file 13 | ~~ to you under the Apache License, Version 2.0 (the 14 | ~~ "License"); you may not use this file except in compliance 15 | ~~ with the License. You may obtain a copy of the License at 16 | ~~ 17 | ~~ http://www.apache.org/licenses/LICENSE-2.0 18 | ~~ 19 | ~~ Unless required by applicable law or agreed to in writing, 20 | ~~ software distributed under the License is distributed on an 21 | ~~ "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY 22 | ~~ KIND, either express or implied. See the License for the 23 | ~~ specific language governing permissions and limitations 24 | ~~ under the License. 25 | 26 | ~~ NOTE: For help with the syntax of this file, see: 27 | ~~ http://maven.apache.org/doxia/references/apt-format.html 28 | 29 | ${project.name} 30 | 31 | This is a test for ${skinName} with multiple links. They should be ordered as 32 | listed in the <<>>. ${skinDescription} 33 | 34 | * Actual configuration 35 | 36 | %{snippet|id=skin-custom-config|file=${project.basedir}/src/site/site.xml} 37 | -------------------------------------------------------------------------------- /maven-fluido-skin/src/it/mskins-41/src/site/site.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 23 | 24 | 27 | 28 | 29 | ${skinGroupId} 30 | ${skinArtifactId} 31 | ${skinVersion} 32 | 33 | 34 | 35 | 36 | 37 | 38 | 39 | 40 | 41 | 42 | 43 | 44 | 45 | 46 | 47 | 48 | -------------------------------------------------------------------------------- /maven-fluido-skin/src/it/mskins-47/pom.xml: -------------------------------------------------------------------------------- 1 | 2 | 18 | 20 | 4.0.0 21 | 22 | org.apache.maven.skins.its 23 | @project.artifactId@-mskins-47 24 | 1.0-SNAPSHOT 25 | jar 26 | 27 | @project.name@ IT, MSKINS-47 28 | http://maven.apache.org/skins/@project.artifactId@/mskins-47/ 29 | 30 | 31 | @project.name@ 32 | @project.description@ 33 | @project.groupId@ 34 | @project.artifactId@ 35 | @project.version@ 36 | 37 | 38 | 39 | 40 | 41 | org.apache.maven.plugins 42 | maven-site-plugin 43 | @sitePluginVersion@ 44 | 45 | 46 | 47 | 48 | 49 | -------------------------------------------------------------------------------- /maven-fluido-skin/src/it/mskins-47/src/site/apt/index.apt.vm: -------------------------------------------------------------------------------- 1 | ------ 2 | ${project.name} 3 | ------ 4 | Robert Scholte 5 | ------ 6 | 2012-04-09 7 | ------ 8 | 9 | ~~ Licensed to the Apache Software Foundation (ASF) under one 10 | ~~ or more contributor license agreements. See the NOTICE file 11 | ~~ distributed with this work for additional information 12 | ~~ regarding copyright ownership. The ASF licenses this file 13 | ~~ to you under the Apache License, Version 2.0 (the 14 | ~~ "License"); you may not use this file except in compliance 15 | ~~ with the License. You may obtain a copy of the License at 16 | ~~ 17 | ~~ http://www.apache.org/licenses/LICENSE-2.0 18 | ~~ 19 | ~~ Unless required by applicable law or agreed to in writing, 20 | ~~ software distributed under the License is distributed on an 21 | ~~ "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY 22 | ~~ KIND, either express or implied. See the License for the 23 | ~~ specific language governing permissions and limitations 24 | ~~ under the License. 25 | 26 | ~~ NOTE: For help with the syntax of this file, see: 27 | ~~ http://maven.apache.org/doxia/references/apt-format.html 28 | 29 | ${project.name} 30 | 31 | This is a test for ${skinName} and a very old version of the maven-site-plugin 32 | ${skinDescription} 33 | 34 | * Actual configuration 35 | 36 | %{snippet|id=skin-custom-config|file=${project.basedir}/src/site/site.xml} 37 | -------------------------------------------------------------------------------- /maven-fluido-skin/src/it/mskins-47/src/site/site.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 23 | 24 | 27 | 28 | 29 | ${skinGroupId} 30 | ${skinArtifactId} 31 | ${skinVersion} 32 | 33 | 34 | 35 | -------------------------------------------------------------------------------- /maven-fluido-skin/src/it/mskins-47/verify.groovy: -------------------------------------------------------------------------------- 1 | /* 2 | * Licensed to the Apache Software Foundation (ASF) under one 3 | * or more contributor license agreements. See the NOTICE file 4 | * distributed with this work for additional information 5 | * regarding copyright ownership. The ASF licenses this file 6 | * to you under the Apache License, Version 2.0 (the 7 | * "License"); you may not use this file except in compliance 8 | * with the License. You may obtain a copy of the License at 9 | * 10 | * http://www.apache.org/licenses/LICENSE-2.0 11 | * 12 | * Unless required by applicable law or agreed to in writing, 13 | * software distributed under the License is distributed on an 14 | * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY 15 | * KIND, either express or implied. See the License for the 16 | * specific language governing permissions and limitations 17 | * under the License. 18 | */ 19 | 20 | File index = new File( basedir, "target/site/index.html" ) 21 | assert index.exists() 22 | assert !index.getText().contains( '$headContent' ) -------------------------------------------------------------------------------- /maven-fluido-skin/src/it/mskins-72/pom.xml: -------------------------------------------------------------------------------- 1 | 2 | 18 | 20 | 4.0.0 21 | 22 | org.apache.maven 23 | maven-parent 24 | @project.parent.version@ 25 | 26 | 27 | org.apache.maven.skins.its 28 | @project.artifactId@-mskins-72 29 | 1.0-SNAPSHOT 30 | jar 31 | 32 | @project.name@ IT, MSKINS-72 33 | http://maven.apache.org/skins/@project.artifactId@/mskins-72/ 34 | 35 | 36 | @project.name@ 37 | @project.description@ 38 | @project.groupId@ 39 | @project.artifactId@ 40 | @project.version@ 41 | 42 | 43 | 44 | 45 | junit 46 | junit 47 | 3.8.2 48 | test 49 | 50 | 51 | 52 | 53 | 54 | 55 | org.apache.maven.plugins 56 | maven-site-plugin 57 | @sitePluginVersion@ 58 | 59 | 60 | 61 | 62 | 63 | 64 | 65 | org.apache.maven.plugins 66 | maven-project-info-reports-plugin 67 | 68 | false 69 | false 70 | 71 | 72 | 73 | 74 | 75 | 76 | -------------------------------------------------------------------------------- /maven-fluido-skin/src/it/mskins-72/src/site/apt/index.apt.vm: -------------------------------------------------------------------------------- 1 | ------ 2 | ${project.name} 3 | ------ 4 | Michael Osipov 5 | ------ 6 | 2013-07-30 7 | ------ 8 | 9 | ~~ Licensed to the Apache Software Foundation (ASF) under one 10 | ~~ or more contributor license agreements. See the NOTICE file 11 | ~~ distributed with this work for additional information 12 | ~~ regarding copyright ownership. The ASF licenses this file 13 | ~~ to you under the Apache License, Version 2.0 (the 14 | ~~ "License"); you may not use this file except in compliance 15 | ~~ with the License. You may obtain a copy of the License at 16 | ~~ 17 | ~~ http://www.apache.org/licenses/LICENSE-2.0 18 | ~~ 19 | ~~ Unless required by applicable law or agreed to in writing, 20 | ~~ software distributed under the License is distributed on an 21 | ~~ "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY 22 | ~~ KIND, either express or implied. See the License for the 23 | ~~ specific language governing permissions and limitations 24 | ~~ under the License. 25 | 26 | ~~ NOTE: For help with the syntax of this file, see: 27 | ~~ http://maven.apache.org/doxia/references/apt-format.html 28 | 29 | ${project.name} 30 | 31 | This is a test for ${skinName} with copyright pulled to the right-hand side by 32 | the css class <<>>. 33 | ${skinDescription} 34 | 35 | * Actual Configuration 36 | 37 | %{snippet|id=skin-custom-config|file=${project.basedir}/src/site/site.xml} 38 | -------------------------------------------------------------------------------- /maven-fluido-skin/src/it/mskins-72/src/site/site.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 23 | 24 | 27 | 28 | 29 | ${skinGroupId} 30 | ${skinArtifactId} 31 | ${skinVersion} 32 | 33 | 34 | 35 | 36 | 37 | pull-right 38 | 39 | 40 | 41 | 42 | 43 | 44 | 45 | 46 | -------------------------------------------------------------------------------- /maven-fluido-skin/src/it/mskins-72/verify.groovy: -------------------------------------------------------------------------------- 1 | /* 2 | * Licensed to the Apache Software Foundation (ASF) under one 3 | * or more contributor license agreements. See the NOTICE file 4 | * distributed with this work for additional information 5 | * regarding copyright ownership. The ASF licenses this file 6 | * to you under the Apache License, Version 2.0 (the 7 | * "License"); you may not use this file except in compliance 8 | * with the License. You may obtain a copy of the License at 9 | * 10 | * http://www.apache.org/licenses/LICENSE-2.0 11 | * 12 | * Unless required by applicable law or agreed to in writing, 13 | * software distributed under the License is distributed on an 14 | * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY 15 | * KIND, either express or implied. See the License for the 16 | * specific language governing permissions and limitations 17 | * under the License. 18 | */ 19 | 20 | File index = new File( basedir, "target/site/index.html" ) 21 | int inceptionYear = 2002 22 | int currentYear = Calendar.getInstance().get(Calendar.YEAR) 23 | assert index.exists() 24 | assert 1 == index.getText().count( "

    Copyright ©" ) -------------------------------------------------------------------------------- /maven-fluido-skin/src/it/mskins-75/pom.xml: -------------------------------------------------------------------------------- 1 | 2 | 18 | 20 | 4.0.0 21 | 22 | org.apache.maven 23 | maven-parent 24 | @project.parent.version@ 25 | 26 | 27 | org.apache.maven.skins.its 28 | @project.artifactId@-mskins-75 29 | 1.0-SNAPSHOT 30 | jar 31 | 32 | @project.name@ IT, MSKINS-75 33 | http://maven.apache.org/skins/@project.artifactId@/mskins-75/ 34 | 35 | 36 | @project.name@ 37 | @project.description@ 38 | @project.groupId@ 39 | @project.artifactId@ 40 | @project.version@ 41 | 42 | 43 | 44 | 45 | junit 46 | junit 47 | 3.8.2 48 | test 49 | 50 | 51 | 52 | 53 | 54 | 55 | org.apache.maven.plugins 56 | maven-site-plugin 57 | @sitePluginVersion@ 58 | 59 | 60 | 61 | 62 | 63 | 64 | 65 | org.apache.maven.plugins 66 | maven-project-info-reports-plugin 67 | 68 | false 69 | false 70 | 71 | 72 | 73 | 74 | 75 | 76 | -------------------------------------------------------------------------------- /maven-fluido-skin/src/it/mskins-75/src/site/apt/index.apt.vm: -------------------------------------------------------------------------------- 1 | ------ 2 | ${project.name} 3 | ------ 4 | Michael Koch 5 | ------ 6 | 2013-02-17 7 | ------ 8 | 9 | ~~ Licensed to the Apache Software Foundation (ASF) under one 10 | ~~ or more contributor license agreements. See the NOTICE file 11 | ~~ distributed with this work for additional information 12 | ~~ regarding copyright ownership. The ASF licenses this file 13 | ~~ to you under the Apache License, Version 2.0 (the 14 | ~~ "License"); you may not use this file except in compliance 15 | ~~ with the License. You may obtain a copy of the License at 16 | ~~ 17 | ~~ http://www.apache.org/licenses/LICENSE-2.0 18 | ~~ 19 | ~~ Unless required by applicable law or agreed to in writing, 20 | ~~ software distributed under the License is distributed on an 21 | ~~ "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY 22 | ~~ KIND, either express or implied. See the License for the 23 | ~~ specific language governing permissions and limitations 24 | ~~ under the License. 25 | 26 | ~~ NOTE: For help with the syntax of this file, see: 27 | ~~ http://maven.apache.org/doxia/references/apt-format.html 28 | 29 | ${project.name} 30 | 31 | This is a test for ${skinName} with Piwik web analytics tracking code. 32 | ${skinDescription} 33 | 34 | The Piwik tracking code is not visible on the page, look at the end of the page source to see it. 35 | 36 | * Actual configuration 37 | 38 | %{snippet|id=skin-custom-config|file=${project.basedir}/src/site/site.xml} 39 | -------------------------------------------------------------------------------- /maven-fluido-skin/src/it/mskins-75/src/site/site.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 23 | 24 | 27 | 28 | 29 | ${skinGroupId} 30 | ${skinArtifactId} 31 | ${skinVersion} 32 | 33 | 34 | 35 | 36 | 37 | 38 | example.org/piwik 39 | 1 40 | 41 | 42 | 43 | 44 | 45 | 46 | 47 | 48 | 49 |

    50 | 51 | 52 | 53 | 54 | 55 | -------------------------------------------------------------------------------- /maven-fluido-skin/src/it/mskins-75/verify.groovy: -------------------------------------------------------------------------------- 1 | /* 2 | * Licensed to the Apache Software Foundation (ASF) under one 3 | * or more contributor license agreements. See the NOTICE file 4 | * distributed with this work for additional information 5 | * regarding copyright ownership. The ASF licenses this file 6 | * to you under the Apache License, Version 2.0 (the 7 | * "License"); you may not use this file except in compliance 8 | * with the License. You may obtain a copy of the License at 9 | * 10 | * http://www.apache.org/licenses/LICENSE-2.0 11 | * 12 | * Unless required by applicable law or agreed to in writing, 13 | * software distributed under the License is distributed on an 14 | * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY 15 | * KIND, either express or implied. See the License for the 16 | * specific language governing permissions and limitations 17 | * under the License. 18 | */ 19 | 20 | File index = new File( basedir, "target/site/index.html" ) 21 | assert index.exists() 22 | assert 1 == index.getText().count( '''\ 23 | 24 | 34 | 35 | '''.replace( "\n", System.getProperty( "line.separator" ) ) ) 36 | -------------------------------------------------------------------------------- /maven-fluido-skin/src/it/mskins-76/pom.xml: -------------------------------------------------------------------------------- 1 | 2 | 18 | 20 | 4.0.0 21 | 22 | org.apache.maven 23 | maven-parent 24 | @project.parent.version@ 25 | 26 | 27 | org.apache.maven.skins.its 28 | @project.artifactId@-mskins-76 29 | 1.0-SNAPSHOT 30 | jar 31 | 32 | @project.name@ IT, MSKINS-76 33 | http://maven.apache.org/skins/@project.artifactId@/mskins-76/ 34 | 35 | 36 | @project.name@ 37 | @project.description@ 38 | @project.groupId@ 39 | @project.artifactId@ 40 | @project.version@ 41 | 42 | 43 | 44 | 45 | junit 46 | junit 47 | 3.8.2 48 | test 49 | 50 | 51 | 52 | 53 | 54 | 55 | org.apache.maven.plugins 56 | maven-site-plugin 57 | @sitePluginVersion@ 58 | 59 | 60 | 61 | 62 | 63 | 64 | 65 | org.apache.maven.plugins 66 | maven-project-info-reports-plugin 67 | 68 | false 69 | false 70 | 71 | 72 | 73 | 74 | 75 | 76 | -------------------------------------------------------------------------------- /maven-fluido-skin/src/it/mskins-76/src/site/apt/index.apt.vm: -------------------------------------------------------------------------------- 1 | ------ 2 | ${project.name} 3 | ------ 4 | Michael Koch 5 | ------ 6 | 2013-02-19 7 | ------ 8 | 9 | ~~ Licensed to the Apache Software Foundation (ASF) under one 10 | ~~ or more contributor license agreements. See the NOTICE file 11 | ~~ distributed with this work for additional information 12 | ~~ regarding copyright ownership. The ASF licenses this file 13 | ~~ to you under the Apache License, Version 2.0 (the 14 | ~~ "License"); you may not use this file except in compliance 15 | ~~ with the License. You may obtain a copy of the License at 16 | ~~ 17 | ~~ http://www.apache.org/licenses/LICENSE-2.0 18 | ~~ 19 | ~~ Unless required by applicable law or agreed to in writing, 20 | ~~ software distributed under the License is distributed on an 21 | ~~ "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY 22 | ~~ KIND, either express or implied. See the License for the 23 | ~~ specific language governing permissions and limitations 24 | ~~ under the License. 25 | 26 | ~~ NOTE: For help with the syntax of this file, see: 27 | ~~ http://maven.apache.org/doxia/references/apt-format.html 28 | 29 | ${project.name} 30 | 31 | This is a test for ${skinName} with a large Flattr button. 32 | ${skinDescription} 33 | 34 | * Actual configuration 35 | 36 | %{snippet|id=skin-custom-config|file=${project.basedir}/src/site/site.xml} 37 | -------------------------------------------------------------------------------- /maven-fluido-skin/src/it/mskins-76/src/site/site.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 23 | 24 | 27 | 28 | 29 | ${skinGroupId} 30 | ${skinArtifactId} 31 | ${skinVersion} 32 | 33 | 34 | 35 | 36 | 37 | 38 | 39 | 448050/Open-Source-Initiative-OSI 40 | http://opensource.org/ 41 | 42 | 43 | 44 | 45 | 46 | 47 | 48 | 49 | 50 | 51 | -------------------------------------------------------------------------------- /maven-fluido-skin/src/it/mskins-76/verify.groovy: -------------------------------------------------------------------------------- 1 | /* 2 | * Licensed to the Apache Software Foundation (ASF) under one 3 | * or more contributor license agreements. See the NOTICE file 4 | * distributed with this work for additional information 5 | * regarding copyright ownership. The ASF licenses this file 6 | * to you under the Apache License, Version 2.0 (the 7 | * "License"); you may not use this file except in compliance 8 | * with the License. You may obtain a copy of the License at 9 | * 10 | * http://www.apache.org/licenses/LICENSE-2.0 11 | * 12 | * Unless required by applicable law or agreed to in writing, 13 | * software distributed under the License is distributed on an 14 | * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY 15 | * KIND, either express or implied. See the License for the 16 | * specific language governing permissions and limitations 17 | * under the License. 18 | */ 19 | 20 | File index = new File( basedir, "target/site/index.html" ) 21 | assert index.exists() 22 | assert 1 == index.getText().count( '''\ 23 | '''.replace( "\n", System.getProperty( "line.separator" ) ) ) 33 | 34 | assert 1 == index.getText().count( '''\ 35 | 36 | '''.replace( "\n", System.getProperty( "line.separator" ) ) ) 38 | -------------------------------------------------------------------------------- /maven-fluido-skin/src/it/mskins-76_topbar/pom.xml: -------------------------------------------------------------------------------- 1 | 2 | 18 | 20 | 4.0.0 21 | 22 | org.apache.maven 23 | maven-parent 24 | @project.parent.version@ 25 | 26 | 27 | org.apache.maven.skins.its 28 | @project.artifactId@-mskins-76 29 | 1.0-SNAPSHOT 30 | jar 31 | 32 | @project.name@ IT, MSKINS-76 33 | http://maven.apache.org/skins/@project.artifactId@/mskins-76/ 34 | 35 | 36 | @project.name@ 37 | @project.description@ 38 | @project.groupId@ 39 | @project.artifactId@ 40 | @project.version@ 41 | 42 | 43 | 44 | 45 | junit 46 | junit 47 | 3.8.2 48 | test 49 | 50 | 51 | 52 | 53 | 54 | 55 | org.apache.maven.plugins 56 | maven-site-plugin 57 | @sitePluginVersion@ 58 | 59 | 60 | 61 | 62 | 63 | 64 | 65 | org.apache.maven.plugins 66 | maven-project-info-reports-plugin 67 | 68 | false 69 | false 70 | 71 | 72 | 73 | 74 | 75 | 76 | -------------------------------------------------------------------------------- /maven-fluido-skin/src/it/mskins-76_topbar/src/site/apt/index.apt.vm: -------------------------------------------------------------------------------- 1 | ------ 2 | ${project.name} 3 | ------ 4 | Michael Koch 5 | ------ 6 | 2013-02-19 7 | ------ 8 | 9 | ~~ Licensed to the Apache Software Foundation (ASF) under one 10 | ~~ or more contributor license agreements. See the NOTICE file 11 | ~~ distributed with this work for additional information 12 | ~~ regarding copyright ownership. The ASF licenses this file 13 | ~~ to you under the Apache License, Version 2.0 (the 14 | ~~ "License"); you may not use this file except in compliance 15 | ~~ with the License. You may obtain a copy of the License at 16 | ~~ 17 | ~~ http://www.apache.org/licenses/LICENSE-2.0 18 | ~~ 19 | ~~ Unless required by applicable law or agreed to in writing, 20 | ~~ software distributed under the License is distributed on an 21 | ~~ "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY 22 | ~~ KIND, either express or implied. See the License for the 23 | ~~ specific language governing permissions and limitations 24 | ~~ under the License. 25 | 26 | ~~ NOTE: For help with the syntax of this file, see: 27 | ~~ http://maven.apache.org/doxia/references/apt-format.html 28 | 29 | ${project.name} 30 | 31 | This is a test for ${skinName} with a compact Flattr button placed in the top bar. 32 | ${skinDescription} 33 | 34 | * Actual configuration 35 | 36 | %{snippet|id=skin-custom-config|file=${project.basedir}/src/site/site.xml} 37 | -------------------------------------------------------------------------------- /maven-fluido-skin/src/it/mskins-76_topbar/src/site/site.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 23 | 24 | 27 | 28 | 29 | ${skinGroupId} 30 | ${skinArtifactId} 31 | ${skinVersion} 32 | 33 | 34 | 35 | 36 | 37 | 38 | 39 | 448050/Open-Source-Initiative-OSI 40 | http://opensource.org/ 41 | 42 | 43 | true 44 | false 45 | 46 | 47 | 48 | 49 | 50 | 51 | 52 | 53 | -------------------------------------------------------------------------------- /maven-fluido-skin/src/it/mskins-76_topbar/verify.groovy: -------------------------------------------------------------------------------- 1 | /* 2 | * Licensed to the Apache Software Foundation (ASF) under one 3 | * or more contributor license agreements. See the NOTICE file 4 | * distributed with this work for additional information 5 | * regarding copyright ownership. The ASF licenses this file 6 | * to you under the Apache License, Version 2.0 (the 7 | * "License"); you may not use this file except in compliance 8 | * with the License. You may obtain a copy of the License at 9 | * 10 | * http://www.apache.org/licenses/LICENSE-2.0 11 | * 12 | * Unless required by applicable law or agreed to in writing, 13 | * software distributed under the License is distributed on an 14 | * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY 15 | * KIND, either express or implied. See the License for the 16 | * specific language governing permissions and limitations 17 | * under the License. 18 | */ 19 | 20 | File index = new File( basedir, "target/site/index.html" ) 21 | assert index.exists() 22 | assert 1 == index.getText().count( '''\ 23 | '''.replace( "\n", System.getProperty( "line.separator" ) ) ) 33 | 34 | assert 1 == index.getText().count( '''\ 35 | 36 | '''.replace( "\n", System.getProperty( "line.separator" ) ) ) 38 | -------------------------------------------------------------------------------- /maven-fluido-skin/src/it/mskins-85/pom.xml: -------------------------------------------------------------------------------- 1 | 2 | 18 | 20 | 4.0.0 21 | 22 | org.apache.maven 23 | maven-parent 24 | @project.parent.version@ 25 | 26 | 27 | org.apache.maven.skins.its 28 | project.artifactId-mskins-85 29 | 1.0-SNAPSHOT 30 | jar 31 | 32 | @project.name@ IT, MSKINS-85 33 | http://maven.apache.org/skins/@project.artifactId@/mskins-85/ 34 | 35 | 36 | @project.name@ 37 | @project.description@ 38 | @project.groupId@ 39 | @project.artifactId@ 40 | @project.version@ 41 | 42 | 43 | 44 | 45 | junit 46 | junit 47 | 3.8.2 48 | test 49 | 50 | 51 | 52 | 53 | 54 | 55 | org.apache.maven.plugins 56 | maven-site-plugin 57 | @sitePluginVersion@ 58 | 59 | 60 | 61 | 62 | 63 | 64 | 65 | org.apache.maven.plugins 66 | maven-project-info-reports-plugin 67 | 68 | false 69 | false 70 | 71 | 72 | 73 | 74 | 75 | 76 | -------------------------------------------------------------------------------- /maven-fluido-skin/src/it/mskins-85/src/site/apt/index.apt.vm: -------------------------------------------------------------------------------- 1 | ------ 2 | ${project.name} 3 | ------ 4 | Michael Osipov 5 | ------ 6 | 2013-08-18 7 | ------ 8 | 9 | ~~ Licensed to the Apache Software Foundation (ASF) under one 10 | ~~ or more contributor license agreements. See the NOTICE file 11 | ~~ distributed with this work for additional information 12 | ~~ regarding copyright ownership. The ASF licenses this file 13 | ~~ to you under the Apache License, Version 2.0 (the 14 | ~~ "License"); you may not use this file except in compliance 15 | ~~ with the License. You may obtain a copy of the License at 16 | ~~ 17 | ~~ http://www.apache.org/licenses/LICENSE-2.0 18 | ~~ 19 | ~~ Unless required by applicable law or agreed to in writing, 20 | ~~ software distributed under the License is distributed on an 21 | ~~ "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY 22 | ~~ KIND, either express or implied. See the License for the 23 | ~~ specific language governing permissions and limitations 24 | ~~ under the License. 25 | 26 | ~~ NOTE: For help with the syntax of this file, see: 27 | ~~ http://maven.apache.org/doxia/references/apt-format.html 28 | 29 | ${project.name} 30 | 31 | This is a test for ${skinName} with a custom breadcrumb divider <<<»>>> (guillemet). 32 | ${skinDescription} 33 | 34 | * Actual Configuration 35 | 36 | %{snippet|id=skin-custom-config|file=${project.basedir}/src/site/site.xml} 37 | -------------------------------------------------------------------------------- /maven-fluido-skin/src/it/mskins-85/src/site/site.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 23 | 24 | 27 | 28 | 29 | ${skinGroupId} 30 | ${skinArtifactId} 31 | ${skinVersion} 32 | 33 | 34 | 35 | 36 | 37 | 38 | » 39 | 40 | 41 | 42 | 43 | 44 | 45 | 46 | 47 | -------------------------------------------------------------------------------- /maven-fluido-skin/src/it/settings.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 21 | 22 | 23 | 24 | 25 | it-repo 26 | 27 | true 28 | 29 | 30 | 31 | local.central 32 | @localRepositoryUrl@ 33 | 34 | true 35 | 36 | 37 | true 38 | 39 | 40 | 41 | 42 | 43 | local.central 44 | @localRepositoryUrl@ 45 | 46 | true 47 | 48 | 49 | true 50 | 51 | 52 | 53 | 54 | 55 | 56 | -------------------------------------------------------------------------------- /maven-fluido-skin/src/it/sidebar/pom.xml: -------------------------------------------------------------------------------- 1 | 2 | 18 | 20 | 4.0.0 21 | 22 | org.apache.maven 23 | maven-parent 24 | @project.parent.version@ 25 | 26 | 27 | org.apache.maven.skins.its 28 | @project.artifactId@-sidebar 29 | 1.0-SNAPSHOT 30 | jar 31 | 32 | @project.name@ IT, sidebar layout 33 | http://maven.apache.org/skins/@project.artifactId@/sidebar/ 34 | 35 | 36 | @project.name@ 37 | @project.description@ 38 | @project.groupId@ 39 | @project.artifactId@ 40 | @project.version@ 41 | 42 | 43 | 44 | 45 | junit 46 | junit 47 | 3.8.2 48 | test 49 | 50 | 51 | 52 | 53 | 54 | 55 | org.apache.maven.plugins 56 | maven-site-plugin 57 | @sitePluginVersion@ 58 | 59 | 60 | 61 | 62 | 63 | 64 | 65 | org.apache.maven.plugins 66 | maven-project-info-reports-plugin 67 | 68 | false 69 | false 70 | 71 | 72 | 73 | 74 | 75 | 76 | -------------------------------------------------------------------------------- /maven-fluido-skin/src/it/sidebar/src/site/apt/index.apt.vm: -------------------------------------------------------------------------------- 1 | ------ 2 | ${project.name} 3 | ------ 4 | Hervé Boutemy 5 | ------ 6 | 2011-10-15 7 | ------ 8 | 9 | ~~ Licensed to the Apache Software Foundation (ASF) under one 10 | ~~ or more contributor license agreements. See the NOTICE file 11 | ~~ distributed with this work for additional information 12 | ~~ regarding copyright ownership. The ASF licenses this file 13 | ~~ to you under the Apache License, Version 2.0 (the 14 | ~~ "License"); you may not use this file except in compliance 15 | ~~ with the License. You may obtain a copy of the License at 16 | ~~ 17 | ~~ http://www.apache.org/licenses/LICENSE-2.0 18 | ~~ 19 | ~~ Unless required by applicable law or agreed to in writing, 20 | ~~ software distributed under the License is distributed on an 21 | ~~ "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY 22 | ~~ KIND, either express or implied. See the License for the 23 | ~~ specific language governing permissions and limitations 24 | ~~ under the License. 25 | 26 | ~~ NOTE: For help with the syntax of this file, see: 27 | ~~ http://maven.apache.org/doxia/references/apt-format.html 28 | 29 | ${project.name} 30 | 31 | This is a test for ${skinName} with sidebar enabled and Google Search. 32 | ${skinDescription} 33 | 34 | * Actual configuration 35 | 36 | %{snippet|id=skin-custom-config|file=${project.basedir}/src/site/site.xml} 37 | -------------------------------------------------------------------------------- /maven-fluido-skin/src/it/sidebar/verify.groovy: -------------------------------------------------------------------------------- 1 | /* 2 | * Licensed to the Apache Software Foundation (ASF) under one 3 | * or more contributor license agreements. See the NOTICE file 4 | * distributed with this work for additional information 5 | * regarding copyright ownership. The ASF licenses this file 6 | * to you under the Apache License, Version 2.0 (the 7 | * "License"); you may not use this file except in compliance 8 | * with the License. You may obtain a copy of the License at 9 | * 10 | * http://www.apache.org/licenses/LICENSE-2.0 11 | * 12 | * Unless required by applicable law or agreed to in writing, 13 | * software distributed under the License is distributed on an 14 | * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY 15 | * KIND, either express or implied. See the License for the 16 | * specific language governing permissions and limitations 17 | * under the License. 18 | */ 19 | 20 | File index = new File( basedir, "target/site/index.html" ) 21 | assert index.exists() 22 | 23 | // MSKINS-130 check that html structure is as clean as possible 24 | String html = index.getText() 25 | // active menu 26 | assert html.contains( '
  • About' ) 27 | // inactive menu 28 | assert html.contains( '
  • Summary' ) 29 | assert html.contains( '
  • Plugins' ) 30 | // breadcrumb 31 | assert html.contains( '
  • Apache/
  • ' ) 32 | -------------------------------------------------------------------------------- /maven-fluido-skin/src/it/topbar-inverse/pom.xml: -------------------------------------------------------------------------------- 1 | 2 | 18 | 20 | 4.0.0 21 | 22 | org.apache.maven 23 | maven-parent 24 | @project.parent.version@ 25 | 26 | 27 | org.apache.maven.skins.its 28 | @project.artifactId@-topbar-inverse 29 | 1.0-SNAPSHOT 30 | jar 31 | 32 | @project.artifactId@ IT, topbar layout 33 | http://maven.apache.org/skins/@project.artifactId@/topbar-inverse/ 34 | 35 | 36 | @project.name@ 37 | @project.description@ 38 | @project.groupId@ 39 | @project.artifactId@ 40 | @project.version@ 41 | 42 | 43 | 44 | 45 | junit 46 | junit 47 | 3.8.2 48 | test 49 | 50 | 51 | 52 | 53 | 54 | 55 | org.apache.maven.plugins 56 | maven-site-plugin 57 | @sitePluginVersion@ 58 | 59 | 60 | 61 | 62 | 63 | 64 | 65 | org.apache.maven.plugins 66 | maven-project-info-reports-plugin 67 | 68 | false 69 | false 70 | 71 | 72 | 73 | 74 | 75 | 76 | -------------------------------------------------------------------------------- /maven-fluido-skin/src/it/topbar-inverse/src/site/apt/bar.apt.vm: -------------------------------------------------------------------------------- 1 | ------ 2 | ${project.name} 3 | ------ 4 | Hervé Boutemy 5 | ------ 6 | 2011-10-15 7 | ------ 8 | 9 | ~~ Licensed to the Apache Software Foundation (ASF) under one 10 | ~~ or more contributor license agreements. See the NOTICE file 11 | ~~ distributed with this work for additional information 12 | ~~ regarding copyright ownership. The ASF licenses this file 13 | ~~ to you under the Apache License, Version 2.0 (the 14 | ~~ "License"); you may not use this file except in compliance 15 | ~~ with the License. You may obtain a copy of the License at 16 | ~~ 17 | ~~ http://www.apache.org/licenses/LICENSE-2.0 18 | ~~ 19 | ~~ Unless required by applicable law or agreed to in writing, 20 | ~~ software distributed under the License is distributed on an 21 | ~~ "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY 22 | ~~ KIND, either express or implied. See the License for the 23 | ~~ specific language governing permissions and limitations 24 | ~~ under the License. 25 | 26 | ~~ NOTE: For help with the syntax of this file, see: 27 | ~~ http://maven.apache.org/doxia/references/apt-format.html 28 | 29 | ${project.name} 30 | 31 | This is a test for ${skinName} with topbar enabled, sidebar disabled and Google Search. 32 | 33 | bar.html 34 | 35 | ${skinDescription} 36 | 37 | * Actual configuration 38 | 39 | %{snippet|id=skin-custom-config|file=${project.basedir}/src/site/site.xml} 40 | -------------------------------------------------------------------------------- /maven-fluido-skin/src/it/topbar-inverse/src/site/apt/beer.apt.vm: -------------------------------------------------------------------------------- 1 | ------ 2 | ${project.name} 3 | ------ 4 | Hervé Boutemy 5 | ------ 6 | 2011-10-15 7 | ------ 8 | 9 | ~~ Licensed to the Apache Software Foundation (ASF) under one 10 | ~~ or more contributor license agreements. See the NOTICE file 11 | ~~ distributed with this work for additional information 12 | ~~ regarding copyright ownership. The ASF licenses this file 13 | ~~ to you under the Apache License, Version 2.0 (the 14 | ~~ "License"); you may not use this file except in compliance 15 | ~~ with the License. You may obtain a copy of the License at 16 | ~~ 17 | ~~ http://www.apache.org/licenses/LICENSE-2.0 18 | ~~ 19 | ~~ Unless required by applicable law or agreed to in writing, 20 | ~~ software distributed under the License is distributed on an 21 | ~~ "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY 22 | ~~ KIND, either express or implied. See the License for the 23 | ~~ specific language governing permissions and limitations 24 | ~~ under the License. 25 | 26 | ~~ NOTE: For help with the syntax of this file, see: 27 | ~~ http://maven.apache.org/doxia/references/apt-format.html 28 | 29 | ${project.name} 30 | 31 | This is a test for ${skinName} with topbar enabled, sidebar disabled and Google Search. 32 | 33 | beer.html 34 | 35 | ${skinDescription} 36 | 37 | * Actual configuration 38 | 39 | %{snippet|id=skin-custom-config|file=${project.basedir}/src/site/site.xml} 40 | -------------------------------------------------------------------------------- /maven-fluido-skin/src/it/topbar-inverse/src/site/apt/foo.apt.vm: -------------------------------------------------------------------------------- 1 | ------ 2 | ${project.name} 3 | ------ 4 | Hervé Boutemy 5 | ------ 6 | 2011-10-15 7 | ------ 8 | 9 | ~~ Licensed to the Apache Software Foundation (ASF) under one 10 | ~~ or more contributor license agreements. See the NOTICE file 11 | ~~ distributed with this work for additional information 12 | ~~ regarding copyright ownership. The ASF licenses this file 13 | ~~ to you under the Apache License, Version 2.0 (the 14 | ~~ "License"); you may not use this file except in compliance 15 | ~~ with the License. You may obtain a copy of the License at 16 | ~~ 17 | ~~ http://www.apache.org/licenses/LICENSE-2.0 18 | ~~ 19 | ~~ Unless required by applicable law or agreed to in writing, 20 | ~~ software distributed under the License is distributed on an 21 | ~~ "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY 22 | ~~ KIND, either express or implied. See the License for the 23 | ~~ specific language governing permissions and limitations 24 | ~~ under the License. 25 | 26 | ~~ NOTE: For help with the syntax of this file, see: 27 | ~~ http://maven.apache.org/doxia/references/apt-format.html 28 | 29 | ${project.name} 30 | 31 | This is a test for ${skinName} with topbar enabled, sidebar disabled and Google Search. 32 | 33 | foo.html 34 | 35 | ${skinDescription} 36 | 37 | * Actual configuration 38 | 39 | %{snippet|id=skin-custom-config|file=${project.basedir}/src/site/site.xml} 40 | -------------------------------------------------------------------------------- /maven-fluido-skin/src/it/topbar-inverse/src/site/apt/index.apt.vm: -------------------------------------------------------------------------------- 1 | ------ 2 | ${project.name} 3 | ------ 4 | Hervé Boutemy 5 | ------ 6 | 2011-10-15 7 | ------ 8 | 9 | ~~ Licensed to the Apache Software Foundation (ASF) under one 10 | ~~ or more contributor license agreements. See the NOTICE file 11 | ~~ distributed with this work for additional information 12 | ~~ regarding copyright ownership. The ASF licenses this file 13 | ~~ to you under the Apache License, Version 2.0 (the 14 | ~~ "License"); you may not use this file except in compliance 15 | ~~ with the License. You may obtain a copy of the License at 16 | ~~ 17 | ~~ http://www.apache.org/licenses/LICENSE-2.0 18 | ~~ 19 | ~~ Unless required by applicable law or agreed to in writing, 20 | ~~ software distributed under the License is distributed on an 21 | ~~ "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY 22 | ~~ KIND, either express or implied. See the License for the 23 | ~~ specific language governing permissions and limitations 24 | ~~ under the License. 25 | 26 | ~~ NOTE: For help with the syntax of this file, see: 27 | ~~ http://maven.apache.org/doxia/references/apt-format.html 28 | 29 | ${project.name} 30 | 31 | This is a test for ${skinName} with topbar enabled, sidebar disabled and Google Search. 32 | ${skinDescription} 33 | 34 | topbar width configured with navBarStyle to navbar-inverse. 35 | 36 | 37 | * Actual configuration 38 | 39 | %{snippet|id=skin-custom-config|file=${project.basedir}/src/site/site.xml} 40 | -------------------------------------------------------------------------------- /maven-fluido-skin/src/it/topbar-inverse/src/site/apt/wine.apt.vm: -------------------------------------------------------------------------------- 1 | ------ 2 | ${project.name} 3 | ------ 4 | Hervé Boutemy 5 | ------ 6 | 2011-10-15 7 | ------ 8 | 9 | ~~ Licensed to the Apache Software Foundation (ASF) under one 10 | ~~ or more contributor license agreements. See the NOTICE file 11 | ~~ distributed with this work for additional information 12 | ~~ regarding copyright ownership. The ASF licenses this file 13 | ~~ to you under the Apache License, Version 2.0 (the 14 | ~~ "License"); you may not use this file except in compliance 15 | ~~ with the License. You may obtain a copy of the License at 16 | ~~ 17 | ~~ http://www.apache.org/licenses/LICENSE-2.0 18 | ~~ 19 | ~~ Unless required by applicable law or agreed to in writing, 20 | ~~ software distributed under the License is distributed on an 21 | ~~ "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY 22 | ~~ KIND, either express or implied. See the License for the 23 | ~~ specific language governing permissions and limitations 24 | ~~ under the License. 25 | 26 | ~~ NOTE: For help with the syntax of this file, see: 27 | ~~ http://maven.apache.org/doxia/references/apt-format.html 28 | 29 | ${project.name} 30 | 31 | This is a test for ${skinName} with topbar enabled, sidebar disabled and Google Search. 32 | 33 | wine.html 34 | 35 | ${skinDescription} 36 | 37 | * Actual configuration 38 | 39 | %{snippet|id=skin-custom-config|file=${project.basedir}/src/site/site.xml} 40 | -------------------------------------------------------------------------------- /maven-fluido-skin/src/it/topbar-inverse/src/site/resources/images/topbar-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/maven-skins/eb1c0bf6023923def8b5fdd557fa8bc789d513f8/maven-fluido-skin/src/it/topbar-inverse/src/site/resources/images/topbar-logo.png -------------------------------------------------------------------------------- /maven-fluido-skin/src/it/topbar/pom.xml: -------------------------------------------------------------------------------- 1 | 2 | 18 | 20 | 4.0.0 21 | 22 | org.apache.maven 23 | maven-parent 24 | @project.parent.version@ 25 | 26 | 27 | org.apache.maven.skins.its 28 | @project.artifactId@-topbar 29 | 1.0-SNAPSHOT 30 | jar 31 | 32 | @project.artifactId@ IT, topbar layout 33 | http://maven.apache.org/skins/@project.artifactId@/topbar/ 34 | 35 | 36 | @project.name@ 37 | @project.description@ 38 | @project.groupId@ 39 | @project.artifactId@ 40 | @project.version@ 41 | 42 | 43 | 44 | 45 | junit 46 | junit 47 | 3.8.2 48 | test 49 | 50 | 51 | 52 | 53 | 54 | 55 | org.apache.maven.plugins 56 | maven-site-plugin 57 | @sitePluginVersion@ 58 | 59 | 60 | 61 | 62 | 63 | 64 | 65 | org.apache.maven.plugins 66 | maven-project-info-reports-plugin 67 | 68 | false 69 | false 70 | 71 | 72 | 73 | 74 | 75 | 76 | -------------------------------------------------------------------------------- /maven-fluido-skin/src/it/topbar/src/site/apt/bar.apt.vm: -------------------------------------------------------------------------------- 1 | ------ 2 | ${project.name} 3 | ------ 4 | Hervé Boutemy 5 | ------ 6 | 2011-10-15 7 | ------ 8 | 9 | ~~ Licensed to the Apache Software Foundation (ASF) under one 10 | ~~ or more contributor license agreements. See the NOTICE file 11 | ~~ distributed with this work for additional information 12 | ~~ regarding copyright ownership. The ASF licenses this file 13 | ~~ to you under the Apache License, Version 2.0 (the 14 | ~~ "License"); you may not use this file except in compliance 15 | ~~ with the License. You may obtain a copy of the License at 16 | ~~ 17 | ~~ http://www.apache.org/licenses/LICENSE-2.0 18 | ~~ 19 | ~~ Unless required by applicable law or agreed to in writing, 20 | ~~ software distributed under the License is distributed on an 21 | ~~ "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY 22 | ~~ KIND, either express or implied. See the License for the 23 | ~~ specific language governing permissions and limitations 24 | ~~ under the License. 25 | 26 | ~~ NOTE: For help with the syntax of this file, see: 27 | ~~ http://maven.apache.org/doxia/references/apt-format.html 28 | 29 | ${project.name} 30 | 31 | This is a test for ${skinName} with topbar enabled, sidebar disabled and Google Search. 32 | 33 | bar.html 34 | 35 | ${skinDescription} 36 | 37 | * Actual configuration 38 | 39 | %{snippet|id=skin-custom-config|file=${project.basedir}/src/site/site.xml} 40 | -------------------------------------------------------------------------------- /maven-fluido-skin/src/it/topbar/src/site/apt/beer.apt.vm: -------------------------------------------------------------------------------- 1 | ------ 2 | ${project.name} 3 | ------ 4 | Hervé Boutemy 5 | ------ 6 | 2011-10-15 7 | ------ 8 | 9 | ~~ Licensed to the Apache Software Foundation (ASF) under one 10 | ~~ or more contributor license agreements. See the NOTICE file 11 | ~~ distributed with this work for additional information 12 | ~~ regarding copyright ownership. The ASF licenses this file 13 | ~~ to you under the Apache License, Version 2.0 (the 14 | ~~ "License"); you may not use this file except in compliance 15 | ~~ with the License. You may obtain a copy of the License at 16 | ~~ 17 | ~~ http://www.apache.org/licenses/LICENSE-2.0 18 | ~~ 19 | ~~ Unless required by applicable law or agreed to in writing, 20 | ~~ software distributed under the License is distributed on an 21 | ~~ "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY 22 | ~~ KIND, either express or implied. See the License for the 23 | ~~ specific language governing permissions and limitations 24 | ~~ under the License. 25 | 26 | ~~ NOTE: For help with the syntax of this file, see: 27 | ~~ http://maven.apache.org/doxia/references/apt-format.html 28 | 29 | ${project.name} 30 | 31 | This is a test for ${skinName} with topbar enabled, sidebar disabled and Google Search. 32 | 33 | beer.html 34 | 35 | ${skinDescription} 36 | 37 | * Actual configuration 38 | 39 | %{snippet|id=skin-custom-config|file=${project.basedir}/src/site/site.xml} 40 | -------------------------------------------------------------------------------- /maven-fluido-skin/src/it/topbar/src/site/apt/foo.apt.vm: -------------------------------------------------------------------------------- 1 | ------ 2 | ${project.name} 3 | ------ 4 | Hervé Boutemy 5 | ------ 6 | 2011-10-15 7 | ------ 8 | 9 | ~~ Licensed to the Apache Software Foundation (ASF) under one 10 | ~~ or more contributor license agreements. See the NOTICE file 11 | ~~ distributed with this work for additional information 12 | ~~ regarding copyright ownership. The ASF licenses this file 13 | ~~ to you under the Apache License, Version 2.0 (the 14 | ~~ "License"); you may not use this file except in compliance 15 | ~~ with the License. You may obtain a copy of the License at 16 | ~~ 17 | ~~ http://www.apache.org/licenses/LICENSE-2.0 18 | ~~ 19 | ~~ Unless required by applicable law or agreed to in writing, 20 | ~~ software distributed under the License is distributed on an 21 | ~~ "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY 22 | ~~ KIND, either express or implied. See the License for the 23 | ~~ specific language governing permissions and limitations 24 | ~~ under the License. 25 | 26 | ~~ NOTE: For help with the syntax of this file, see: 27 | ~~ http://maven.apache.org/doxia/references/apt-format.html 28 | 29 | ${project.name} 30 | 31 | This is a test for ${skinName} with topbar enabled, sidebar disabled and Google Search. 32 | 33 | foo.html 34 | 35 | ${skinDescription} 36 | 37 | * Actual configuration 38 | 39 | %{snippet|id=skin-custom-config|file=${project.basedir}/src/site/site.xml} 40 | -------------------------------------------------------------------------------- /maven-fluido-skin/src/it/topbar/src/site/apt/index.apt.vm: -------------------------------------------------------------------------------- 1 | ------ 2 | ${project.name} 3 | ------ 4 | Hervé Boutemy 5 | ------ 6 | 2011-10-15 7 | ------ 8 | 9 | ~~ Licensed to the Apache Software Foundation (ASF) under one 10 | ~~ or more contributor license agreements. See the NOTICE file 11 | ~~ distributed with this work for additional information 12 | ~~ regarding copyright ownership. The ASF licenses this file 13 | ~~ to you under the Apache License, Version 2.0 (the 14 | ~~ "License"); you may not use this file except in compliance 15 | ~~ with the License. You may obtain a copy of the License at 16 | ~~ 17 | ~~ http://www.apache.org/licenses/LICENSE-2.0 18 | ~~ 19 | ~~ Unless required by applicable law or agreed to in writing, 20 | ~~ software distributed under the License is distributed on an 21 | ~~ "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY 22 | ~~ KIND, either express or implied. See the License for the 23 | ~~ specific language governing permissions and limitations 24 | ~~ under the License. 25 | 26 | ~~ NOTE: For help with the syntax of this file, see: 27 | ~~ http://maven.apache.org/doxia/references/apt-format.html 28 | 29 | ${project.name} 30 | 31 | This is a test for ${skinName} with topbar enabled, sidebar disabled and Google Search. 32 | ${skinDescription} 33 | 34 | topbar width configured with topBarContainerStyle which set style attribute content. 35 | 36 | 37 | * Actual configuration 38 | 39 | %{snippet|id=skin-custom-config|file=${project.basedir}/src/site/site.xml} 40 | -------------------------------------------------------------------------------- /maven-fluido-skin/src/it/topbar/src/site/apt/wine.apt.vm: -------------------------------------------------------------------------------- 1 | ------ 2 | ${project.name} 3 | ------ 4 | Hervé Boutemy 5 | ------ 6 | 2011-10-15 7 | ------ 8 | 9 | ~~ Licensed to the Apache Software Foundation (ASF) under one 10 | ~~ or more contributor license agreements. See the NOTICE file 11 | ~~ distributed with this work for additional information 12 | ~~ regarding copyright ownership. The ASF licenses this file 13 | ~~ to you under the Apache License, Version 2.0 (the 14 | ~~ "License"); you may not use this file except in compliance 15 | ~~ with the License. You may obtain a copy of the License at 16 | ~~ 17 | ~~ http://www.apache.org/licenses/LICENSE-2.0 18 | ~~ 19 | ~~ Unless required by applicable law or agreed to in writing, 20 | ~~ software distributed under the License is distributed on an 21 | ~~ "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY 22 | ~~ KIND, either express or implied. See the License for the 23 | ~~ specific language governing permissions and limitations 24 | ~~ under the License. 25 | 26 | ~~ NOTE: For help with the syntax of this file, see: 27 | ~~ http://maven.apache.org/doxia/references/apt-format.html 28 | 29 | ${project.name} 30 | 31 | This is a test for ${skinName} with topbar enabled, sidebar disabled and Google Search. 32 | 33 | wine.html 34 | 35 | ${skinDescription} 36 | 37 | * Actual configuration 38 | 39 | %{snippet|id=skin-custom-config|file=${project.basedir}/src/site/site.xml} 40 | -------------------------------------------------------------------------------- /maven-fluido-skin/src/it/topbar/src/site/resources/images/topbar-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/maven-skins/eb1c0bf6023923def8b5fdd557fa8bc789d513f8/maven-fluido-skin/src/it/topbar/src/site/resources/images/topbar-logo.png -------------------------------------------------------------------------------- /maven-fluido-skin/src/it/topbar/verify.groovy: -------------------------------------------------------------------------------- 1 | /* 2 | * Licensed to the Apache Software Foundation (ASF) under one 3 | * or more contributor license agreements. See the NOTICE file 4 | * distributed with this work for additional information 5 | * regarding copyright ownership. The ASF licenses this file 6 | * to you under the Apache License, Version 2.0 (the 7 | * "License"); you may not use this file except in compliance 8 | * with the License. You may obtain a copy of the License at 9 | * 10 | * http://www.apache.org/licenses/LICENSE-2.0 11 | * 12 | * Unless required by applicable law or agreed to in writing, 13 | * software distributed under the License is distributed on an 14 | * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY 15 | * KIND, either express or implied. See the License for the 16 | * specific language governing permissions and limitations 17 | * under the License. 18 | */ 19 | 20 | File index = new File( basedir, "target/site/index.html" ) 21 | assert index.exists() 22 | 23 | // MSKINS-130 check that html structure is as clean as possible 24 | String html = index.getText() 25 | // active menu 26 | assert html.contains( '
  • About
  • ' ) 27 | // inactive menu 28 | assert html.contains( '
  • Summary
  • ' ) 29 | assert html.contains( '
  • Plugins
  • ' ) 30 | // breadcrumb 31 | assert html.contains( '
  • Apache/
  • ' ) 32 | -------------------------------------------------------------------------------- /maven-fluido-skin/src/main/resources/META-INF/maven/skin.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 21 | 22 | 24 | 25 | 1.7.1 26 | 27 | 28 | -------------------------------------------------------------------------------- /maven-fluido-skin/src/main/resources/css/maven-base.css: -------------------------------------------------------------------------------- 1 | /* 2 | * Licensed to the Apache Software Foundation (ASF) under one 3 | * or more contributor license agreements. See the NOTICE file 4 | * distributed with this work for additional information 5 | * regarding copyright ownership. The ASF licenses this file 6 | * to you under the Apache License, Version 2.0 (the 7 | * "License"); you may not use this file except in compliance 8 | * with the License. You may obtain a copy of the License at 9 | * 10 | * http://www.apache.org/licenses/LICENSE-2.0 11 | * 12 | * Unless required by applicable law or agreed to in writing, 13 | * software distributed under the License is distributed on an 14 | * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY 15 | * KIND, either express or implied. See the License for the 16 | * specific language governing permissions and limitations 17 | * under the License. 18 | */ 19 | 20 | /* $Id$ */ 21 | 22 | .clear{clear:both;visibility: hidden;} 23 | .clear hr{display: none;} 24 | .section p,.section p,.section dt,.section dt{margin-right: 7px;margin-left: 7px;} 25 | #ohloh {margin-bottom: 10px;} 26 | #poweredBy{text-align: center} 27 | -------------------------------------------------------------------------------- /maven-fluido-skin/src/main/resources/css/prettify.css: -------------------------------------------------------------------------------- 1 | /* 2 | * Licensed to the Apache Software Foundation (ASF) under one 3 | * or more contributor license agreements. See the NOTICE file 4 | * distributed with this work for additional information 5 | * regarding copyright ownership. The ASF licenses this file 6 | * to you under the Apache License, Version 2.0 (the 7 | * "License"); you may not use this file except in compliance 8 | * with the License. You may obtain a copy of the License at 9 | * 10 | * http://www.apache.org/licenses/LICENSE-2.0 11 | * 12 | * Unless required by applicable law or agreed to in writing, 13 | * software distributed under the License is distributed on an 14 | * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY 15 | * KIND, either express or implied. See the License for the 16 | * specific language governing permissions and limitations 17 | * under the License. 18 | */ 19 | 20 | .pln{color:#000}@media screen{.str{color:#080}.kwd{color:#008}.com{color:#800}.typ{color:#606}.lit{color:#066}.pun,.opn,.clo{color:#660}.tag{color:#008}.atn{color:#606}.atv{color:#080}.dec,.var{color:#606}.fun{color:red}}@media print,projection{.str{color:#060}.kwd{color:#006;font-weight:bold}.com{color:#600;font-style:italic}.typ{color:#404;font-weight:bold}.lit{color:#044}.pun,.opn,.clo{color:#440}.tag{color:#006;font-weight:bold}.atn{color:#404}.atv{color:#060}}pre.prettyprint{padding:2px;border:1px solid #888}ol.linenums{margin-top:0;margin-bottom:0;padding-left:15px}li.L1,li.L3,li.L5,li.L7,li.L9{background:#eee} -------------------------------------------------------------------------------- /maven-fluido-skin/src/main/resources/css/print.css: -------------------------------------------------------------------------------- 1 | /* 2 | * Licensed to the Apache Software Foundation (ASF) under one 3 | * or more contributor license agreements. See the NOTICE file 4 | * distributed with this work for additional information 5 | * regarding copyright ownership. The ASF licenses this file 6 | * to you under the Apache License, Version 2.0 (the 7 | * "License"); you may not use this file except in compliance 8 | * with the License. You may obtain a copy of the License at 9 | * 10 | * http://www.apache.org/licenses/LICENSE-2.0 11 | * 12 | * Unless required by applicable law or agreed to in writing, 13 | * software distributed under the License is distributed on an 14 | * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY 15 | * KIND, either express or implied. See the License for the 16 | * specific language governing permissions and limitations 17 | * under the License. 18 | */ 19 | 20 | /* $Id$ */ 21 | 22 | #banner, #footer, #leftcol, #breadcrumbs, .docs #toc, .docs .courtesylinks, #leftColumn, #navColumn {display: none !important;} 23 | #bodyColumn, body.docs div.docs {margin: 0 !important;border: none !important} 24 | -------------------------------------------------------------------------------- /maven-fluido-skin/src/main/resources/fonts/glyphicons-halflings-regular.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/maven-skins/eb1c0bf6023923def8b5fdd557fa8bc789d513f8/maven-fluido-skin/src/main/resources/fonts/glyphicons-halflings-regular.eot -------------------------------------------------------------------------------- /maven-fluido-skin/src/main/resources/fonts/glyphicons-halflings-regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/maven-skins/eb1c0bf6023923def8b5fdd557fa8bc789d513f8/maven-fluido-skin/src/main/resources/fonts/glyphicons-halflings-regular.ttf -------------------------------------------------------------------------------- /maven-fluido-skin/src/main/resources/fonts/glyphicons-halflings-regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/maven-skins/eb1c0bf6023923def8b5fdd557fa8bc789d513f8/maven-fluido-skin/src/main/resources/fonts/glyphicons-halflings-regular.woff -------------------------------------------------------------------------------- /maven-fluido-skin/src/main/resources/images/accessories-text-editor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/maven-skins/eb1c0bf6023923def8b5fdd557fa8bc789d513f8/maven-fluido-skin/src/main/resources/images/accessories-text-editor.png -------------------------------------------------------------------------------- /maven-fluido-skin/src/main/resources/images/add.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/maven-skins/eb1c0bf6023923def8b5fdd557fa8bc789d513f8/maven-fluido-skin/src/main/resources/images/add.gif -------------------------------------------------------------------------------- /maven-fluido-skin/src/main/resources/images/apache-maven-project-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/maven-skins/eb1c0bf6023923def8b5fdd557fa8bc789d513f8/maven-fluido-skin/src/main/resources/images/apache-maven-project-2.png -------------------------------------------------------------------------------- /maven-fluido-skin/src/main/resources/images/application-certificate.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/maven-skins/eb1c0bf6023923def8b5fdd557fa8bc789d513f8/maven-fluido-skin/src/main/resources/images/application-certificate.png -------------------------------------------------------------------------------- /maven-fluido-skin/src/main/resources/images/contact-new.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/maven-skins/eb1c0bf6023923def8b5fdd557fa8bc789d513f8/maven-fluido-skin/src/main/resources/images/contact-new.png -------------------------------------------------------------------------------- /maven-fluido-skin/src/main/resources/images/document-properties.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/maven-skins/eb1c0bf6023923def8b5fdd557fa8bc789d513f8/maven-fluido-skin/src/main/resources/images/document-properties.png -------------------------------------------------------------------------------- /maven-fluido-skin/src/main/resources/images/drive-harddisk.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/maven-skins/eb1c0bf6023923def8b5fdd557fa8bc789d513f8/maven-fluido-skin/src/main/resources/images/drive-harddisk.png -------------------------------------------------------------------------------- /maven-fluido-skin/src/main/resources/images/fix.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/maven-skins/eb1c0bf6023923def8b5fdd557fa8bc789d513f8/maven-fluido-skin/src/main/resources/images/fix.gif -------------------------------------------------------------------------------- /maven-fluido-skin/src/main/resources/images/icon_error_sml.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/maven-skins/eb1c0bf6023923def8b5fdd557fa8bc789d513f8/maven-fluido-skin/src/main/resources/images/icon_error_sml.gif -------------------------------------------------------------------------------- /maven-fluido-skin/src/main/resources/images/icon_help_sml.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/maven-skins/eb1c0bf6023923def8b5fdd557fa8bc789d513f8/maven-fluido-skin/src/main/resources/images/icon_help_sml.gif -------------------------------------------------------------------------------- /maven-fluido-skin/src/main/resources/images/icon_info_sml.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/maven-skins/eb1c0bf6023923def8b5fdd557fa8bc789d513f8/maven-fluido-skin/src/main/resources/images/icon_info_sml.gif -------------------------------------------------------------------------------- /maven-fluido-skin/src/main/resources/images/icon_success_sml.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/maven-skins/eb1c0bf6023923def8b5fdd557fa8bc789d513f8/maven-fluido-skin/src/main/resources/images/icon_success_sml.gif -------------------------------------------------------------------------------- /maven-fluido-skin/src/main/resources/images/icon_warning_sml.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/maven-skins/eb1c0bf6023923def8b5fdd557fa8bc789d513f8/maven-fluido-skin/src/main/resources/images/icon_warning_sml.gif -------------------------------------------------------------------------------- /maven-fluido-skin/src/main/resources/images/image-x-generic.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/maven-skins/eb1c0bf6023923def8b5fdd557fa8bc789d513f8/maven-fluido-skin/src/main/resources/images/image-x-generic.png -------------------------------------------------------------------------------- /maven-fluido-skin/src/main/resources/images/internet-web-browser.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/maven-skins/eb1c0bf6023923def8b5fdd557fa8bc789d513f8/maven-fluido-skin/src/main/resources/images/internet-web-browser.png -------------------------------------------------------------------------------- /maven-fluido-skin/src/main/resources/images/logos/build-by-maven-black.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/maven-skins/eb1c0bf6023923def8b5fdd557fa8bc789d513f8/maven-fluido-skin/src/main/resources/images/logos/build-by-maven-black.png -------------------------------------------------------------------------------- /maven-fluido-skin/src/main/resources/images/logos/build-by-maven-white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/maven-skins/eb1c0bf6023923def8b5fdd557fa8bc789d513f8/maven-fluido-skin/src/main/resources/images/logos/build-by-maven-white.png -------------------------------------------------------------------------------- /maven-fluido-skin/src/main/resources/images/logos/maven-feather.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/maven-skins/eb1c0bf6023923def8b5fdd557fa8bc789d513f8/maven-fluido-skin/src/main/resources/images/logos/maven-feather.png -------------------------------------------------------------------------------- /maven-fluido-skin/src/main/resources/images/network-server.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/maven-skins/eb1c0bf6023923def8b5fdd557fa8bc789d513f8/maven-fluido-skin/src/main/resources/images/network-server.png -------------------------------------------------------------------------------- /maven-fluido-skin/src/main/resources/images/package-x-generic.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/maven-skins/eb1c0bf6023923def8b5fdd557fa8bc789d513f8/maven-fluido-skin/src/main/resources/images/package-x-generic.png -------------------------------------------------------------------------------- /maven-fluido-skin/src/main/resources/images/profiles/pre-release.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/maven-skins/eb1c0bf6023923def8b5fdd557fa8bc789d513f8/maven-fluido-skin/src/main/resources/images/profiles/pre-release.png -------------------------------------------------------------------------------- /maven-fluido-skin/src/main/resources/images/profiles/retired.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/maven-skins/eb1c0bf6023923def8b5fdd557fa8bc789d513f8/maven-fluido-skin/src/main/resources/images/profiles/retired.png -------------------------------------------------------------------------------- /maven-fluido-skin/src/main/resources/images/profiles/sandbox.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/maven-skins/eb1c0bf6023923def8b5fdd557fa8bc789d513f8/maven-fluido-skin/src/main/resources/images/profiles/sandbox.png -------------------------------------------------------------------------------- /maven-fluido-skin/src/main/resources/images/remove.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/maven-skins/eb1c0bf6023923def8b5fdd557fa8bc789d513f8/maven-fluido-skin/src/main/resources/images/remove.gif -------------------------------------------------------------------------------- /maven-fluido-skin/src/main/resources/images/rss.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/maven-skins/eb1c0bf6023923def8b5fdd557fa8bc789d513f8/maven-fluido-skin/src/main/resources/images/rss.png -------------------------------------------------------------------------------- /maven-fluido-skin/src/main/resources/images/update.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/maven-skins/eb1c0bf6023923def8b5fdd557fa8bc789d513f8/maven-fluido-skin/src/main/resources/images/update.gif -------------------------------------------------------------------------------- /maven-fluido-skin/src/main/resources/images/window-new.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/maven-skins/eb1c0bf6023923def8b5fdd557fa8bc789d513f8/maven-fluido-skin/src/main/resources/images/window-new.png -------------------------------------------------------------------------------- /maven-fluido-skin/src/main/resources/img/glyphicons-halflings-white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/maven-skins/eb1c0bf6023923def8b5fdd557fa8bc789d513f8/maven-fluido-skin/src/main/resources/img/glyphicons-halflings-white.png -------------------------------------------------------------------------------- /maven-fluido-skin/src/main/resources/img/glyphicons-halflings.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/maven-skins/eb1c0bf6023923def8b5fdd557fa8bc789d513f8/maven-fluido-skin/src/main/resources/img/glyphicons-halflings.png -------------------------------------------------------------------------------- /maven-fluido-skin/src/main/resources/js/fluido.js: -------------------------------------------------------------------------------- 1 | /* 2 | * Licensed to the Apache Software Foundation (ASF) under one 3 | * or more contributor license agreements. See the NOTICE file 4 | * distributed with this work for additional information 5 | * regarding copyright ownership. The ASF licenses this file 6 | * to you under the Apache License, Version 2.0 (the 7 | * "License"); you may not use this file except in compliance 8 | * with the License. You may obtain a copy of the License at 9 | * 10 | * http://www.apache.org/licenses/LICENSE-2.0 11 | * 12 | * Unless required by applicable law or agreed to in writing, 13 | * software distributed under the License is distributed on an 14 | * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY 15 | * KIND, either express or implied. See the License for the 16 | * specific language governing permissions and limitations 17 | * under the License. 18 | */ 19 | 20 | jQuery( document ).ready( function() 21 | { 22 | // initialize the dropdown menu if found 23 | $( '.topbar' ).dropdown(); 24 | 25 | prettyPrint(); 26 | 27 | } ); 28 | 29 | function asyncJs( url ) { 30 | ( function() { 31 | var s = document.createElement( 'script' ), t = document.getElementsByTagName( 'script' )[0]; 32 | s.type = 'text/javascript'; 33 | s.async = true; 34 | s.src = url; 35 | t.parentNode.insertBefore( s, t ); 36 | } )(); 37 | } -------------------------------------------------------------------------------- /maven-fluido-skin/src/misc/scripts/resize_icon.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | #------------------------------------------------------------------------------ 3 | # Licensed to the Apache Software Foundation (ASF) under one 4 | # or more contributor license agreements. See the NOTICE file 5 | # distributed with this work for additional information 6 | # regarding copyright ownership. The ASF licenses this file 7 | # to you under the Apache License, Version 2.0 (the 8 | # "License"); you may not use this file except in compliance 9 | # with the License. You may obtain a copy of the License at 10 | # 11 | # http://www.apache.org/licenses/LICENSE-2.0 12 | # 13 | # Unless required by applicable law or agreed to in writing, 14 | # software distributed under the License is distributed on an 15 | # "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY 16 | # KIND, either express or implied. See the License for the 17 | # specific language governing permissions and limitations 18 | # under the License. 19 | #------------------------------------------------------------------------------ 20 | # $Id$ 21 | 22 | convert $1 -adaptive-resize 14x14 $1 23 | -------------------------------------------------------------------------------- /maven-fluido-skin/src/misc/scripts/sprite.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | #------------------------------------------------------------------------------ 3 | # Licensed to the Apache Software Foundation (ASF) under one 4 | # or more contributor license agreements. See the NOTICE file 5 | # distributed with this work for additional information 6 | # regarding copyright ownership. The ASF licenses this file 7 | # to you under the Apache License, Version 2.0 (the 8 | # "License"); you may not use this file except in compliance 9 | # with the License. You may obtain a copy of the License at 10 | # 11 | # http://www.apache.org/licenses/LICENSE-2.0 12 | # 13 | # Unless required by applicable law or agreed to in writing, 14 | # software distributed under the License is distributed on an 15 | # "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY 16 | # KIND, either express or implied. See the License for the 17 | # specific language governing permissions and limitations 18 | # under the License. 19 | #------------------------------------------------------------------------------ 20 | # $Id$ 21 | 22 | montage window-new.png \ 23 | internet-web-browser.png \ 24 | accessories-text-editor.png \ 25 | image-x-generic.png \ 26 | package-x-generic.png \ 27 | document-properties.png \ 28 | application-certificate.png \ 29 | drive-harddisk.png \ 30 | network-server.png \ 31 | contact-new.png \ 32 | -tile 4x3 -geometry +2+2 -background none external-links.png 33 | -------------------------------------------------------------------------------- /maven-fluido-skin/src/site/resources/download.cgi: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | # 3 | # Licensed to the Apache Software Foundation (ASF) under one 4 | # or more contributor license agreements. See the NOTICE file 5 | # distributed with this work for additional information 6 | # regarding copyright ownership. The ASF licenses this file 7 | # to you under the Apache License, Version 2.0 (the 8 | # "License"); you may not use this file except in compliance 9 | # with the License. You may obtain a copy of the License at 10 | # 11 | # http://www.apache.org/licenses/LICENSE-2.0 12 | # 13 | # Unless required by applicable law or agreed to in writing, 14 | # software distributed under the License is distributed on an 15 | # "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY 16 | # KIND, either express or implied. See the License for the 17 | # specific language governing permissions and limitations 18 | # under the License. 19 | # 20 | # Just call the standard mirrors.cgi script. It will use download.html 21 | # as the input template. 22 | exec /www/www.apache.org/dyn/mirrors/mirrors.cgi $* -------------------------------------------------------------------------------- /pom.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 21 | 22 | 23 | 4.0.0 24 | 25 | 26 | org.apache.maven 27 | maven-parent 28 | 26 29 | ../pom/maven/pom.xml 30 | 31 | 32 | org.apache.maven.skins 33 | maven-skins-aggregator 34 | 1-SNAPSHOT 35 | pom 36 | 37 | Maven Skins Aggregator 38 | Maven Skins Aggregator 39 | 40 | 41 | maven-default-skin 42 | maven-fluido-skin 43 | 44 | 45 | -------------------------------------------------------------------------------- /src/site/site.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 21 | 22 | 23 | 24 | 25 | 26 | 27 | 28 | 29 | 30 | 31 | 32 | 33 | --------------------------------------------------------------------------------