You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@maven.apache.org by si...@apache.org on 2011/12/28 18:37:53 UTC

svn commit: r1225245 - in /maven/skins/trunk/maven-fluido-skin/src/it/mskins-22_default: ./ pom.xml src/ src/site/ src/site/apt/ src/site/apt/index.apt.vm src/site/site.xml

Author: simonetripodi
Date: Wed Dec 28 17:37:52 2011
New Revision: 1225245

URL: http://svn.apache.org/viewvc?rev=1225245&view=rev
Log:
added test for testing MSKINS-22 default settings

Added:
    maven/skins/trunk/maven-fluido-skin/src/it/mskins-22_default/
    maven/skins/trunk/maven-fluido-skin/src/it/mskins-22_default/pom.xml   (with props)
    maven/skins/trunk/maven-fluido-skin/src/it/mskins-22_default/src/
    maven/skins/trunk/maven-fluido-skin/src/it/mskins-22_default/src/site/
    maven/skins/trunk/maven-fluido-skin/src/it/mskins-22_default/src/site/apt/
    maven/skins/trunk/maven-fluido-skin/src/it/mskins-22_default/src/site/apt/index.apt.vm   (with props)
    maven/skins/trunk/maven-fluido-skin/src/it/mskins-22_default/src/site/site.xml   (with props)

Added: maven/skins/trunk/maven-fluido-skin/src/it/mskins-22_default/pom.xml
URL: http://svn.apache.org/viewvc/maven/skins/trunk/maven-fluido-skin/src/it/mskins-22_default/pom.xml?rev=1225245&view=auto
==============================================================================
--- maven/skins/trunk/maven-fluido-skin/src/it/mskins-22_default/pom.xml (added)
+++ maven/skins/trunk/maven-fluido-skin/src/it/mskins-22_default/pom.xml Wed Dec 28 17:37:52 2011
@@ -0,0 +1,93 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!--
+   Licensed to the Apache Software Foundation (ASF) under one or more
+   contributor license agreements.  See the NOTICE file distributed with
+   this work for additional information regarding copyright ownership.
+   The ASF licenses this file to You under the Apache License, Version 2.0
+   (the "License"); you may not use this file except in compliance with
+   the License.  You may obtain a copy of the License at
+
+       http://www.apache.org/licenses/LICENSE-2.0
+
+   Unless required by applicable law or agreed to in writing, software
+   distributed under the License is distributed on an "AS IS" BASIS,
+   WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+   See the License for the specific language governing permissions and
+   limitations under the License.
+-->
+<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
+  xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
+  <modelVersion>4.0.0</modelVersion>
+  <parent>
+    <groupId>org.apache.maven</groupId>
+    <artifactId>maven-parent</artifactId>
+    <version>21</version>
+  </parent>
+
+  <groupId>org.apache.maven.skins.its</groupId>
+  <artifactId>@project.artifactId@-sidebar</artifactId>
+  <version>1.0-SNAPSHOT</version>
+  <packaging>jar</packaging>
+
+  <name>@project.name@ IT, sidebar layout</name>
+  <url>http://maven.apache.org/skins/@project.artifactId@/sidebar/</url>
+
+  <properties>
+    <skinName>@project.name@</skinName>
+    <skinDescription>@project.description@</skinDescription>
+    <skinGroupId>@project.groupId@</skinGroupId>
+    <skinArtifactId>@project.artifactId@</skinArtifactId>
+    <skinVersion>@project.version@</skinVersion>
+  </properties>
+
+  <dependencies>
+    <dependency>
+      <groupId>junit</groupId>
+      <artifactId>junit</artifactId>
+      <version>3.8.2</version>
+      <scope>test</scope>
+    </dependency>
+  </dependencies>
+
+  <build>
+    <plugins>
+      <plugin>
+        <groupId>org.apache.maven.plugins</groupId>
+        <artifactId>maven-site-plugin</artifactId>
+        <version>3.0</version>
+      </plugin>
+    </plugins>
+  </build>
+
+  <reporting>
+    <plugins>
+      <plugin>
+        <groupId>org.apache.maven.plugins</groupId>
+        <artifactId>maven-project-info-reports-plugin</artifactId>
+        <version>2.4</version>
+        <configuration>
+          <dependencyDetailsEnabled>false</dependencyDetailsEnabled>
+          <dependencyLocationsEnabled>false</dependencyLocationsEnabled>
+        </configuration>
+        <reportSets>
+          <reportSet>
+            <reports>
+              <report>index</report>
+              <report>summary</report>
+              <report>license</report>
+              <report>project-team</report>
+              <report>scm</report>
+              <report>issue-tracking</report>
+              <report>mailing-list</report>
+              <report>dependencies</report>
+              <report>cim</report>
+              <report>plugin-management</report>
+              <report>plugins</report>
+            </reports>
+          </reportSet>
+        </reportSets>
+      </plugin>
+    </plugins>
+  </reporting>
+
+</project>

Propchange: maven/skins/trunk/maven-fluido-skin/src/it/mskins-22_default/pom.xml
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: maven/skins/trunk/maven-fluido-skin/src/it/mskins-22_default/pom.xml
------------------------------------------------------------------------------
    svn:keywords = Date Revision Author HeadURL Id

Propchange: maven/skins/trunk/maven-fluido-skin/src/it/mskins-22_default/pom.xml
------------------------------------------------------------------------------
    svn:mime-type = text/xml

Added: maven/skins/trunk/maven-fluido-skin/src/it/mskins-22_default/src/site/apt/index.apt.vm
URL: http://svn.apache.org/viewvc/maven/skins/trunk/maven-fluido-skin/src/it/mskins-22_default/src/site/apt/index.apt.vm?rev=1225245&view=auto
==============================================================================
--- maven/skins/trunk/maven-fluido-skin/src/it/mskins-22_default/src/site/apt/index.apt.vm (added)
+++ maven/skins/trunk/maven-fluido-skin/src/it/mskins-22_default/src/site/apt/index.apt.vm Wed Dec 28 17:37:52 2011
@@ -0,0 +1,16 @@
+ ------
+ ${project.name}
+ ------
+ Simo
+ ------
+ 2011-12-26
+ ------
+
+${project.name}
+
+ This is a test for ${skinName} with GitHub ribbon enabled.
+ ${skinDescription}
+
+* Actual configuration
+
+%{snippet|id=skin-custom-config|file=${project.basedir}/src/site/site.xml}

Propchange: maven/skins/trunk/maven-fluido-skin/src/it/mskins-22_default/src/site/apt/index.apt.vm
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: maven/skins/trunk/maven-fluido-skin/src/it/mskins-22_default/src/site/apt/index.apt.vm
------------------------------------------------------------------------------
    svn:keywords = Date Author Id Revision HeadURL

Propchange: maven/skins/trunk/maven-fluido-skin/src/it/mskins-22_default/src/site/apt/index.apt.vm
------------------------------------------------------------------------------
    svn:mime-type = text/plain

Added: maven/skins/trunk/maven-fluido-skin/src/it/mskins-22_default/src/site/site.xml
URL: http://svn.apache.org/viewvc/maven/skins/trunk/maven-fluido-skin/src/it/mskins-22_default/src/site/site.xml?rev=1225245&view=auto
==============================================================================
--- maven/skins/trunk/maven-fluido-skin/src/it/mskins-22_default/src/site/site.xml (added)
+++ maven/skins/trunk/maven-fluido-skin/src/it/mskins-22_default/src/site/site.xml Wed Dec 28 17:37:52 2011
@@ -0,0 +1,85 @@
+<?xml version="1.0" encoding="UTF-8"?>
+
+<!--
+/*
+ * Licensed to the Apache Software Foundation (ASF) under one
+ * or more contributor license agreements.  See the NOTICE file
+ * distributed with this work for additional information
+ * regarding copyright ownership.  The ASF licenses this file
+ * to you under the Apache License, Version 2.0 (the
+ * "License"); you may not use this file except in compliance
+ * with the License.  You may obtain a copy of the License at
+ *
+ *   http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing,
+ * software distributed under the License is distributed on an
+ * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+ * KIND, either express or implied.  See the License for the
+ * specific language governing permissions and limitations
+ * under the License.
+ */
+ -->
+
+<project xmlns="http://maven.apache.org/DECORATION/1.1.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
+  xsi:schemaLocation="http://maven.apache.org/DECORATION/1.1.0 http://maven.apache.org/xsd/decoration-1.1.0.xsd"
+  name="${skinName}">
+
+  <skin>
+    <groupId>${skinGroupId}</groupId>
+    <artifactId>${skinArtifactId}</artifactId>
+    <version>${skinVersion}</version>
+  </skin>
+
+  <!-- START SNIPPET: skin-custom-config -->
+  <custom>
+    <fluidoSkin>
+      <gitHub>
+        <projectId>99soft/backport-spi</projectId>
+      </gitHub>
+    </fluidoSkin>
+  </custom>
+  <!-- END SNIPPET: skin-custom-config -->
+
+  <publishDate format="yyyy-MM-dd" position="right" />
+  <version position="right" />
+
+  <body>
+    <breadcrumbs>
+      <item name="skins" href="/skins/"/>
+      <item name="${skinArtifactId}" href="/skins/${skinArtifactId}/"/>
+    </breadcrumbs>
+
+    <menu name="Overview">
+      <item name="Introduction" href="index.html"/>
+    </menu>
+
+    <menu ref="reports"/>
+
+    <footer>
+      <div class="row span16">Apache Maven, Apache @project.name@, Apache, the Apache feather logo, and the Apache Maven project logos are trademarks of The Apache Software Foundation.
+      All other marks mentioned may be trademarks or registered trademarks of their respective owners.</div>
+      <div class="row span16">
+        <div class="span4">
+          <address>
+            <strong>The Apache Software Foundation</strong><br/>
+            <i>Dept. 9660</i><br/>
+            <i>Los Angeles, CA 90084-9660</i><br/>
+            <i>USA</i><br/>
+            <abbr title="Fax">Fax:</abbr> <i>+1.919.573.9199</i>
+          </address>
+        </div>
+        <div class="span4">
+          <address>
+            <strong>The Apache Software Foundation</strong><br/>
+            <i>1901 Munsey Drive</i><br/>
+            <i>Forest Hill, MD 21050-2747</i><br/>
+            <i>USA</i><br/>
+            <a href="mailto:apache at apache dot org">apache at apache dot org</a>
+          </address>
+        </div>
+      </div>
+    </footer>
+  </body>
+
+</project>
\ No newline at end of file

Propchange: maven/skins/trunk/maven-fluido-skin/src/it/mskins-22_default/src/site/site.xml
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: maven/skins/trunk/maven-fluido-skin/src/it/mskins-22_default/src/site/site.xml
------------------------------------------------------------------------------
    svn:keywords = Date Revision Author HeadURL Id

Propchange: maven/skins/trunk/maven-fluido-skin/src/it/mskins-22_default/src/site/site.xml
------------------------------------------------------------------------------
    svn:mime-type = text/xml