RyanSkraba commented on a change in pull request #63: Hadoop Slides URL: https://github.com/apache/incubator-training/pull/63#discussion_r346768500
########## File path: content/ApacheHadoop/pom.xml ########## @@ -0,0 +1,235 @@ +<?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</groupId> + <artifactId>apache</artifactId> + <version>21</version> + </parent> + + <groupId>org.apache.training</groupId> + <artifactId>apache-test</artifactId> + <version>1.0.0-SNAPSHOT</version> + <packaging>war</packaging> + + <name>Apache Hadoop Slides</name> + <description></description> + + <properties> + <project.slides.directory>${project.build.directory}/generated-slides</project.slides.directory> + <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> + <asciidoctor.maven.plugin.version>2.0.0-RC.1</asciidoctor.maven.plugin.version> + <asciidoctorj.version>2.0.0-RC.2</asciidoctorj.version> + <revealjs.version>3.7.0</revealjs.version> + <asciidoctor-revealjs.version>2.0.0</asciidoctor-revealjs.version> + <maven-resources-plugin.version>3.1.0</maven-resources-plugin.version> + </properties> + + <build> + <plugins> + <!-- Check if all source files have the required apache license headers --> + <plugin> + <groupId>org.apache.rat</groupId> + <artifactId>apache-rat-plugin</artifactId> + <executions> + <execution> + <id>license-check</id> + <phase>verify</phase> + <goals> + <goal>check</goal> + </goals> + </execution> + </executions> + </plugin> + + <plugin> + <groupId>com.googlecode.maven-download-plugin</groupId> + <artifactId>download-maven-plugin</artifactId> + <version>1.4.1</version> + <executions> + <execution> + <id>install-asciidoctor-revealjs</id> + <phase>generate-resources</phase> + <goals> + <goal>wget</goal> + </goals> + <configuration> + <url>https://github.com/asciidoctor/asciidoctor-reveal.js/archive/v${asciidoctor-revealjs.version}.zip</url> + <unpack>true</unpack> + <outputFileName>asciidoctor-reveal.js-${asciidoctor-revealjs.version}.zip</outputFileName> + <outputDirectory>${project.build.directory}</outputDirectory> + </configuration> + </execution> + <execution> + <id>install-revealjs</id> + <phase>generate-resources</phase> + <goals> + <goal>wget</goal> + </goals> + <configuration> + <url>https://github.com/hakimel/reveal.js/archive/${revealjs.version}.zip</url> + <unpack>true</unpack> + <outputFileName>reveal.js-${revealjs.version}.zip</outputFileName> + <outputDirectory>${project.slides.directory}</outputDirectory> + </configuration> + </execution> + <execution> + <id>download-c3-css</id> + <phase>generate-resources</phase> + <goals> + <goal>wget</goal> + </goals> + <configuration> + <url>https://cdnjs.cloudflare.com/ajax/libs/c3/0.6.12/c3.min.css</url> + <outputDirectory>${project.slides.directory}/css</outputDirectory> + </configuration> + </execution> + <execution> + <id>download-c3-js</id> + <phase>generate-resources</phase> + <goals> + <goal>wget</goal> + </goals> + <configuration> + <url>https://cdnjs.cloudflare.com/ajax/libs/c3/0.6.12/c3.min.js</url> + <outputDirectory>${project.slides.directory}/js</outputDirectory> + </configuration> + </execution> + <execution> + <id>download-d3-js</id> + <phase>generate-resources</phase> + <goals> + <goal>wget</goal> + </goals> + <configuration> + <url>https://cdnjs.cloudflare.com/ajax/libs/d3/5.7.0/d3.min.js</url> + <outputDirectory>${project.slides.directory}/js</outputDirectory> + </configuration> + </execution> + </executions> + </plugin> + <plugin> + <groupId>org.asciidoctor</groupId> + <artifactId>asciidoctor-maven-plugin</artifactId> + <version>${asciidoctor.maven.plugin.version}</version> + <configuration> + <!-- Tell asciidoctor to use the reveal.js backend and not the default html --> + <backend>revealjs</backend> + <!-- Configure where are all the asciidoc source files located --> + <sourceDirectory>src/main/asciidoc</sourceDirectory> + <!-- Configure the target director to where will the output be generated --> + <outputDirectory>${project.slides.directory}</outputDirectory> + <attributes> + <icons>font</icons> + </attributes> + <!-- output file--> + <outputFile>index.html</outputFile> + <!-- This has to point to the asciidoctor-revealjs directory which contains all the "slim" files --> + <templateDir>${project.build.directory}/asciidoctor-reveal.js-${asciidoctor-revealjs.version}/templates</templateDir> + <attributes> + <!-- + Tell the system the relative path to the reveal.js files + inside the generated-slides directory. + --> + <revealjsdir>reveal.js-${revealjs.version}</revealjsdir> + <!-- + Use our custom theme, which is defined by src/main/theme/apache.css + and copied inside the reveal.js installation by the resources plugin a few lines + up inside this pom. + --> + <revealjs_theme>apache</revealjs_theme> + </attributes> + </configuration> + <executions> + <execution> + <id>generate-slides</id> + <phase>process-resources</phase> + <goals> + <goal>process-asciidoc</goal> + </goals> + + </execution> + </executions> + <dependencies> + <dependency> + <groupId>org.asciidoctor</groupId> + <artifactId>asciidoctorj</artifactId> + <version>${asciidoctorj.version}</version> + </dependency> + </dependencies> + </plugin> + <plugin> + <groupId>org.apache.maven.plugins</groupId> + <artifactId>maven-resources-plugin</artifactId> + <version>${maven-resources-plugin.version}</version> + <executions> + <execution> + <id>copy-resources</id> + <phase>generate-resources</phase> + <goals> + <goal>copy-resources</goal> + </goals> + <configuration> + <outputDirectory>${project.build.directory}</outputDirectory> + <resources> + <!-- Copy the normal resources into the root of the slides directory --> + <resource> + <directory>src/main/resources</directory> + <targetPath>${project.slides.directory}</targetPath> + </resource> + <!-- Copy our css-theme to the reveal.js theme directory --> + <resource> + <directory>src/main/theme</directory> + <filtering>true</filtering> + <targetPath>${project.slides.directory}/reveal.js-${revealjs.version}/css/theme</targetPath> + </resource> + </resources> + </configuration> + </execution> + </executions> + </plugin> + <plugin> + <groupId>org.apache.maven.plugins</groupId> + <artifactId>maven-war-plugin</artifactId> + <version>3.2.2</version> + <configuration> + <failOnMissingWebXml>false</failOnMissingWebXml> + <warSourceDirectory>src/target/generated-slides</warSourceDirectory> + </configuration> + </plugin> + <plugin> + <groupId>org.eclipse.jetty</groupId> + <artifactId>jetty-maven-plugin</artifactId> + <version>9.4.14.v20181114</version> + </plugin> + </plugins> + </build> + + <dependencies> + <dependency> + <groupId>org.apache.ignite</groupId> + <artifactId>ignite-core</artifactId> Review comment: Probably not necessary here! ---------------------------------------------------------------- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. For queries about this service, please contact Infrastructure at: us...@infra.apache.org With regards, Apache Git Services