Skip to content

Commit

Permalink
initial drop of the olde wiki-based user's guide
Browse files Browse the repository at this point in the history
Signed-off-by: Lukas Jungmann <lukas.jungmann@oracle.com>
  • Loading branch information
lukasj committed May 13, 2024
1 parent 75b4e7f commit cde1999
Show file tree
Hide file tree
Showing 181 changed files with 71,654 additions and 0 deletions.
97 changes: 97 additions & 0 deletions docs/docs.ug/pom.xml
Original file line number Diff line number Diff line change
@@ -0,0 +1,97 @@
<?xml version="1.0" encoding="UTF-8"?>
<!--
Copyright (c) 2024 Oracle and/or its affiliates. All rights reserved.
This program and the accompanying materials are made available under the
terms of the Eclipse Public License v. 2.0, which is available at
http://www.eclipse.org/legal/epl-2.0.
This Source Code may also be made available under the following Secondary
Licenses when the conditions for such availability set forth in the
Eclipse Public License v. 2.0 are satisfied: GNU General Public License,
version 2 with the GNU Classpath Exception, which is available at
https://www.gnu.org/software/classpath/license.html.
SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0
-->
<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/maven-v4_0_0.xsd">
<modelVersion>4.0.0</modelVersion>

<name>Documentation - Solutions</name>
<description>Documentation - User Guide (Old)</description>
<groupId>org.eclipse.persistence</groupId>
<artifactId>org.eclipse.persistence.documentation.userguide</artifactId>
<version>5.0.0-SNAPSHOT</version>
<packaging>pom</packaging>

<parent>
<groupId>org.eclipse.persistence</groupId>
<artifactId>org.eclipse.persistence.documentation</artifactId>
<version>5.0.0-SNAPSHOT</version>
<relativePath>../pom.xml</relativePath>
</parent>

<properties>
<source.document.name>main.adoc</source.document.name>
<source.document.directory>${project.basedir}/src/main/asciidoc</source.document.directory>
<output.document.name>user-guide</output.document.name>
</properties>

<build>
<plugins>
<plugin>
<artifactId>maven-resources-plugin</artifactId>
<executions>
<execution>
<id>copy-source-documents</id>
<phase>generate-resources</phase>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-dependency-plugin</artifactId>
<executions>
<execution>
<id>unpack-shared-docs</id>
<phase>generate-resources</phase>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.asciidoctor</groupId>
<artifactId>asciidoctor-maven-plugin</artifactId>
<executions>
<execution>
<id>asciidoc-to-html</id>
<phase>generate-resources</phase>
<configuration>
<outputFile>${output.document.name}.html</outputFile>
</configuration>
</execution>
<execution>
<id>asciidoc-to-html-img-text</id>
<phase>generate-resources</phase>
</execution>
<execution>
<id>asciidoc-to-pdf</id>
<phase>generate-resources</phase>
<configuration>
<outputFile>${output.document.name}.pdf</outputFile>
</configuration>
</execution>
<execution>
<id>asciidoc-to-epub</id>
<phase>generate-resources</phase>
<configuration>
<outputFile>${output.document.name}.epub</outputFile>
</configuration>
</execution>
</executions>
</plugin>
</plugins>
</build>
</project>

0 comments on commit cde1999

Please sign in to comment.