Author: hboutemy
Date: Mon Oct 10 21:59:16 2011
New Revision: 1181261

URL: http://svn.apache.org/viewvc?rev=1181261&view=rev
Log: (empty)

Added:
    maven/sandbox/trunk/skin/maven-fluido-skin/src/it/
    maven/sandbox/trunk/skin/maven-fluido-skin/src/it/settings.xml   (with 
props)
    maven/sandbox/trunk/skin/maven-fluido-skin/src/it/site/
    maven/sandbox/trunk/skin/maven-fluido-skin/src/it/site/pom.xml   (with 
props)
    maven/sandbox/trunk/skin/maven-fluido-skin/src/it/site/src/
    maven/sandbox/trunk/skin/maven-fluido-skin/src/it/site/src/site/
    maven/sandbox/trunk/skin/maven-fluido-skin/src/it/site/src/site/apt/
    
maven/sandbox/trunk/skin/maven-fluido-skin/src/it/site/src/site/apt/index.apt   
(with props)
    maven/sandbox/trunk/skin/maven-fluido-skin/src/it/site/src/site/site.xml   
(with props)
Modified:
    maven/sandbox/trunk/skin/maven-fluido-skin/   (props changed)
    maven/sandbox/trunk/skin/maven-fluido-skin/pom.xml

Propchange: maven/sandbox/trunk/skin/maven-fluido-skin/
------------------------------------------------------------------------------
--- svn:ignore (original)
+++ svn:ignore Mon Oct 10 21:59:16 2011
@@ -1,2 +1,5 @@
+.classpath
+.project
+.settings
 target
 *.iml

Modified: maven/sandbox/trunk/skin/maven-fluido-skin/pom.xml
URL: 
http://svn.apache.org/viewvc/maven/sandbox/trunk/skin/maven-fluido-skin/pom.xml?rev=1181261&r1=1181260&r2=1181261&view=diff
==============================================================================
--- maven/sandbox/trunk/skin/maven-fluido-skin/pom.xml (original)
+++ maven/sandbox/trunk/skin/maven-fluido-skin/pom.xml Mon Oct 10 21:59:16 2011
@@ -27,19 +27,23 @@
   <groupId>org.apache.maven.skins</groupId>
   <artifactId>maven-fluido-skin</artifactId>
   <version>1.0-SNAPSHOT</version>
+
   <name>Apache Maven Fluido Skin</name>
   <description>The Apache Maven Fluido Skin is an Apache Maven site skin
     built on top of Twitter's bootstrap.</description>
   <inceptionYear>2011</inceptionYear>
+
   <scm>
     
<connection>scm:svn:http://svn.apache.org/repos/asf/maven/sandbox/trunk/skin/</connection>
     
<developerConnection>scm:svn:https://svn.apache.org/repos/asf/maven/sandbox/trunk/skin/</developerConnection>
     <url>http://svn.apache.org/viewvc/maven/sandbox/trunk/skin/</url>
   </scm>
+
   <!-- Workaround for SUREFIRE-300 -->
   <properties>
     <maven.test.skip>true</maven.test.skip>
   </properties>
+
   <build>
     <resources>
       <resource>
@@ -47,4 +51,55 @@
       </resource>
     </resources>
   </build>
+
+  <profiles>
+    <profile>
+      <id>run-its</id>
+      <build>
+        <plugins>
+          <plugin>
+            <groupId>org.apache.maven.plugins</groupId>
+            <artifactId>maven-invoker-plugin</artifactId>
+            <configuration>
+              <debug>true</debug>
+              <projectsDirectory>src/it</projectsDirectory>
+              <cloneProjectsTo>${project.build.directory}/it</cloneProjectsTo>
+              <preBuildHookScript>setup</preBuildHookScript>
+              <postBuildHookScript>verify</postBuildHookScript>
+              
<localRepositoryPath>${project.build.directory}/local-repo</localRepositoryPath>
+              <settingsFile>src/it/settings.xml</settingsFile>
+              <pomIncludes>
+                <pomInclude>*/pom.xml</pomInclude>
+              </pomIncludes>
+              <goals>
+                <goal>site</goal>
+              </goals>
+            </configuration>
+            <executions>
+              <execution>
+                <id>integration-test</id>
+                <goals>
+                  <goal>install</goal>
+                  <goal>integration-test</goal>
+                  <goal>verify</goal>
+                </goals>
+              </execution>
+            </executions>
+          </plugin>
+        </plugins>
+      </build>
+    </profile>
+    <profile>
+      <id>reporting</id>
+      <reporting>
+        <plugins>
+          <plugin>
+            <groupId>org.apache.maven.plugins</groupId>
+            <artifactId>maven-invoker-plugin</artifactId>
+            <version>1.5</version>
+          </plugin>
+        </plugins>
+      </reporting>
+    </profile>
+  </profiles>
 </project>

Added: maven/sandbox/trunk/skin/maven-fluido-skin/src/it/settings.xml
URL: 
http://svn.apache.org/viewvc/maven/sandbox/trunk/skin/maven-fluido-skin/src/it/settings.xml?rev=1181261&view=auto
==============================================================================
--- maven/sandbox/trunk/skin/maven-fluido-skin/src/it/settings.xml (added)
+++ maven/sandbox/trunk/skin/maven-fluido-skin/src/it/settings.xml Mon Oct 10 
21:59:16 2011
@@ -0,0 +1,64 @@
+<?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.
+-->
+
+<settings>
+  <servers>
+    <server>
+      <id>MSITE-609</id>
+      <username>exampleuser</username>
+      <filePermissions>644</filePermissions>
+      <directoryPermissions>755</directoryPermissions>
+      <configuration/>
+    </server>
+  </servers>
+  <profiles>
+    <profile>
+      <id>it-repo</id>
+      <activation>
+        <activeByDefault>true</activeByDefault>
+      </activation>
+      <repositories>
+        <repository>
+          <id>local.central</id>
+          <url>@localRepositoryUrl@</url>
+          <releases>
+            <enabled>true</enabled>
+          </releases>
+          <snapshots>
+            <enabled>true</enabled>
+          </snapshots>
+        </repository>
+      </repositories>
+      <pluginRepositories>
+        <pluginRepository>
+          <id>local.central</id>
+          <url>@localRepositoryUrl@</url>
+          <releases>
+            <enabled>true</enabled>
+          </releases>
+          <snapshots>
+            <enabled>true</enabled>
+          </snapshots>
+        </pluginRepository>
+      </pluginRepositories>
+    </profile>
+  </profiles>
+</settings>

Propchange: maven/sandbox/trunk/skin/maven-fluido-skin/src/it/settings.xml
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: maven/sandbox/trunk/skin/maven-fluido-skin/src/it/settings.xml
------------------------------------------------------------------------------
    svn:keywords = Author Date Id Revision

Propchange: maven/sandbox/trunk/skin/maven-fluido-skin/src/it/settings.xml
------------------------------------------------------------------------------
    svn:mime-type = text/plain

Added: maven/sandbox/trunk/skin/maven-fluido-skin/src/it/site/pom.xml
URL: 
http://svn.apache.org/viewvc/maven/sandbox/trunk/skin/maven-fluido-skin/src/it/site/pom.xml?rev=1181261&view=auto
==============================================================================
--- maven/sandbox/trunk/skin/maven-fluido-skin/src/it/site/pom.xml (added)
+++ maven/sandbox/trunk/skin/maven-fluido-skin/src/it/site/pom.xml Mon Oct 10 
21:59:16 2011
@@ -0,0 +1,72 @@
+<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>fluido</artifactId>
+  <version>1.0-SNAPSHOT</version>
+  <packaging>jar</packaging>
+
+  <name>maven-fluido-skin IT</name>
+  <url>http://maven.apache.org/skins/maven-fluido-skin/</url>
+
+  <properties>
+    <fluidoVersion>@project.version@</fluidoVersion>
+  </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/sandbox/trunk/skin/maven-fluido-skin/src/it/site/pom.xml
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: maven/sandbox/trunk/skin/maven-fluido-skin/src/it/site/pom.xml
------------------------------------------------------------------------------
    svn:keywords = Author Date Id Revision

Propchange: maven/sandbox/trunk/skin/maven-fluido-skin/src/it/site/pom.xml
------------------------------------------------------------------------------
    svn:mime-type = text/plain

Added: 
maven/sandbox/trunk/skin/maven-fluido-skin/src/it/site/src/site/apt/index.apt
URL: 
http://svn.apache.org/viewvc/maven/sandbox/trunk/skin/maven-fluido-skin/src/it/site/src/site/apt/index.apt?rev=1181261&view=auto
==============================================================================
--- 
maven/sandbox/trunk/skin/maven-fluido-skin/src/it/site/src/site/apt/index.apt 
(added)
+++ 
maven/sandbox/trunk/skin/maven-fluido-skin/src/it/site/src/site/apt/index.apt 
Mon Oct 10 21:59:16 2011
@@ -0,0 +1,110 @@
+                                    ------
+                                    Title
+                                    ------
+                                    Author
+                                    ------
+                                     Date
+
+  Paragraph 1, line 1.
+  Paragraph 1, line 2.
+
+  Paragraph 2, line 1.
+  Paragraph 2, line 2.
+
+Section title
+
+* Sub-section title
+
+** Sub-sub-section title
+
+*** Sub-sub-sub-section title
+
+**** Sub-sub-sub-sub-section title
+
+      * List item 1.
+
+      * List item 2.
+
+        Paragraph contained in list item 2.
+
+            * Sub-list item 1.
+
+            * Sub-list item 2.
+
+      * List item 3.
+        Force end of list:
+
+      []
+
++------------------------------------------+
+Verbatim text not contained in list item 3
++------------------------------------------+
+
+      [[1]] Numbered item 1.
+
+                [[A]] Numbered item A.
+
+                [[B]] Numbered item B.
+
+      [[2]] Numbered item 2.
+
+  List numbering schemes: [[1]], [[a]], [[A]], [[i]], [[I]].
+
+      [Defined term 1] of definition list.
+
+      [Defined term 2] of definition list.
+
++-------------------------------+
+Verbatim text
+                        in a box        
++-------------------------------+
+
+  --- instead of +-- suppresses the box around verbatim text.
+
+[figure] Figure caption
+
+*----------*--------------+----------------:
+| Centered | Left-aligned | Right-aligned  |
+| cell 1,1 | cell 1,2     | cell 1,3       |
+*----------*--------------+----------------:
+| cell 2,1 | cell 2,2     | cell 2,3       |
+*----------*--------------+----------------:
+Table caption
+
+  No grid, no caption:
+
+*-----*------*
+ cell | cell
+*-----*------*
+ cell | cell
+*-----*------*
+
+*---------*---------*
+|| header || header |
+*---------*---------*
+|  cell   |  cell   |
+*---------*---------*
+
+  Horizontal line:
+
+=======================================================================
+
+
+  New page.
+
+  <Italic> font. <<Bold>> font. <<<Monospaced>>> font.
+
+  {Anchor}. Link to {{Anchor}}. Link to {{http://www.pixware.fr}}. 
+  Link to {{{Anchor}showing alternate text}}.
+  Link to {{{http://www.pixware.fr}Pixware home page}}.
+
+  Force line\
+  break.
+
+  Non\ breaking\ space.
+
+  Escaped special characters: \~, \=, \-, \+, \*, \[, \], \<, \>, \{, \}, \\.
+
+  Copyright symbol: \251, \xA9, \u00a9.
+
+~~Commented out.

Propchange: 
maven/sandbox/trunk/skin/maven-fluido-skin/src/it/site/src/site/apt/index.apt
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: 
maven/sandbox/trunk/skin/maven-fluido-skin/src/it/site/src/site/apt/index.apt
------------------------------------------------------------------------------
    svn:keywords = Author Date Id Revision

Added: maven/sandbox/trunk/skin/maven-fluido-skin/src/it/site/src/site/site.xml
URL: 
http://svn.apache.org/viewvc/maven/sandbox/trunk/skin/maven-fluido-skin/src/it/site/src/site/site.xml?rev=1181261&view=auto
==============================================================================
--- maven/sandbox/trunk/skin/maven-fluido-skin/src/it/site/src/site/site.xml 
(added)
+++ maven/sandbox/trunk/skin/maven-fluido-skin/src/it/site/src/site/site.xml 
Mon Oct 10 21:59:16 2011
@@ -0,0 +1,51 @@
+<?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="APT">
+
+  <skin>
+    <groupId>org.apache.maven.skins</groupId>
+    <artifactId>maven-fluido-skin</artifactId>
+    <version>${fluidoVersion}</version>
+  </skin>
+
+  <publishDate format="yyyy-MM-dd" position="right" />
+  <version position="right" />
+
+  <body>
+    <breadcrumbs>
+      <item name="skins" href="/skins/"/>
+      <item name="fluido" href="/skins/fluido/"/>
+    </breadcrumbs>
+
+    <menu name="Overview">
+      <item name="Introduction" href="index.html"/>
+    </menu>
+
+    <menu ref="reports"/>
+
+  </body>
+
+</project>
\ No newline at end of file

Propchange: 
maven/sandbox/trunk/skin/maven-fluido-skin/src/it/site/src/site/site.xml
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: 
maven/sandbox/trunk/skin/maven-fluido-skin/src/it/site/src/site/site.xml
------------------------------------------------------------------------------
    svn:keywords = Author Date Id Revision

Propchange: 
maven/sandbox/trunk/skin/maven-fluido-skin/src/it/site/src/site/site.xml
------------------------------------------------------------------------------
    svn:mime-type = text/plain


Reply via email to