You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@maven.apache.org by sl...@apache.org on 2019/06/09 10:42:18 UTC

[maven-site] branch doxia-1.9 created (now f3eadf8)

This is an automated email from the ASF dual-hosted git repository.

slachiewicz pushed a change to branch doxia-1.9
in repository https://gitbox.apache.org/repos/asf/maven-site.git.


      at f3eadf8  Build site with Doxia 1.9

This branch includes the following new commits:

     new f3eadf8  Build site with Doxia 1.9

The 1 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "add" were already present in the repository and have only
been added to this reference.



[maven-site] 01/01: Build site with Doxia 1.9

Posted by sl...@apache.org.
This is an automated email from the ASF dual-hosted git repository.

slachiewicz pushed a commit to branch doxia-1.9
in repository https://gitbox.apache.org/repos/asf/maven-site.git

commit f3eadf8580c69101117947049454a6f8afa885f5
Author: Sylwester Lachiewicz <sl...@apache.org>
AuthorDate: Sun Jun 9 12:41:54 2019 +0200

    Build site with Doxia 1.9
---
 pom.xml | 59 +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
 1 file changed, 59 insertions(+)

diff --git a/pom.xml b/pom.xml
index 09fee08..d3606ac 100644
--- a/pom.xml
+++ b/pom.xml
@@ -69,6 +69,8 @@
     <versions3x>3.6.1,3.6.0,3.5.4,3.5.3,3.5.2,3.5.0,3.5.0-beta-1,3.5.0-alpha-1,3.3.9,3.3.3,3.3.1,3.2.5,3.2.3,3.2.2,3.2.1,3.1.1,3.1.0,3.1.0-alpha-1,3.0.5,3.0.4,3.0.3,3.0.2,3.0.1,3.0,3.0-beta-3,3.0-beta-2,3.0-beta-1,3.0-alpha-7,3.0-alpha-6,3.0-alpha-5,3.0-alpha-4,3.0-alpha-3</versions3x>
     <site.output>${project.build.directory}/site</site.output>
     <fluidoVersion>1.7</fluidoVersion><!-- used by src/xdoc/errors/404.xml.vm -->
+    <doxiaVersion>1.9</doxiaVersion>
+    <doxiaToolsVersion>1.9</doxiaToolsVersion>
   </properties>
 
   <repositories>
@@ -80,7 +82,17 @@
         <enabled>false</enabled>
       </releases>
     </repository>
+    <repository>
+      <id>staged-releases</id>
+      <url>https://repository.apache.org/content/repositories/maven-1509</url>
+    </repository>
   </repositories>
+  <pluginRepositories>
+    <pluginRepository>
+      <id>staged-releases</id>
+      <url>https://repository.apache.org/content/repositories/maven-1509</url>
+    </pluginRepository>
+  </pluginRepositories>
 
   <build>
     <pluginManagement>
@@ -98,6 +110,53 @@
             <siteDirectory>${project.basedir}/content</siteDirectory>
             <skipDeploy>true</skipDeploy><!-- don't deploy site with maven-site-plugin -->
           </configuration>
+          <dependencies>
+            <dependency>
+              <groupId>org.apache.maven.doxia</groupId>
+              <artifactId>doxia-sink-api</artifactId>
+              <version>${doxiaVersion}</version>
+            </dependency>
+            <dependency>
+              <groupId>org.apache.maven.doxia</groupId>
+              <artifactId>doxia-module-xhtml</artifactId>
+              <version>${doxiaVersion}</version>
+            </dependency>
+            <dependency>
+              <groupId>org.apache.maven.doxia</groupId>
+              <artifactId>doxia-module-xhtml5</artifactId>
+              <version>${doxiaVersion}</version>
+            </dependency>
+            <dependency>
+              <groupId>org.apache.maven.doxia</groupId>
+              <artifactId>doxia-module-apt</artifactId>
+              <version>${doxiaVersion}</version>
+            </dependency>
+            <dependency>
+              <groupId>org.apache.maven.doxia</groupId>
+              <artifactId>doxia-module-xdoc</artifactId>
+              <version>${doxiaVersion}</version>
+            </dependency>
+            <dependency>
+              <groupId>org.apache.maven.doxia</groupId>
+              <artifactId>doxia-module-fml</artifactId>
+              <version>${doxiaVersion}</version>
+            </dependency>
+            <dependency>
+              <groupId>org.apache.maven.doxia</groupId>
+              <artifactId>doxia-module-markdown</artifactId>
+              <version>${doxiaVersion}</version>
+            </dependency>
+            <dependency>
+              <groupId>org.apache.maven.doxia</groupId>
+              <artifactId>doxia-decoration-model</artifactId>
+              <version>${doxiaToolsVersion}</version>
+            </dependency>
+            <dependency>
+              <groupId>org.apache.maven.doxia</groupId>
+              <artifactId>doxia-site-renderer</artifactId>
+              <version>${doxiaToolsVersion}</version>
+            </dependency>
+          </dependencies>
         </plugin>
       </plugins>
     </pluginManagement>