Added: dev/commons/commons-release-plugin/1.3-RC1/site/jacoco/org.apache.commons.release.plugin.mojos/CommonsDistributionStagingMojo.java.html ============================================================================== --- dev/commons/commons-release-plugin/1.3-RC1/site/jacoco/org.apache.commons.release.plugin.mojos/CommonsDistributionStagingMojo.java.html (added) +++ dev/commons/commons-release-plugin/1.3-RC1/site/jacoco/org.apache.commons.release.plugin.mojos/CommonsDistributionStagingMojo.java.html Fri Jun 15 16:12:15 2018 @@ -0,0 +1,454 @@ +<?xml version="1.0" encoding="ISO-8859-1"?><!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"><html xmlns="http://www.w3.org/1999/xhtml" lang="en"><head><meta http-equiv="Content-Type" content="text/html;charset=UTF-8"/><link rel="stylesheet" href="../jacoco-resources/report.css" type="text/css"/><link rel="shortcut icon" href="../jacoco-resources/report.gif" type="image/gif"/><title>CommonsDistributionStagingMojo.java</title><link rel="stylesheet" href="../jacoco-resources/prettify.css" type="text/css"/><script type="text/javascript" src="../jacoco-resources/prettify.js"></script></head><body onload="window['PR_TAB_WIDTH']=4;prettyPrint()"><div class="breadcrumb" id="breadcrumb"><span class="info"><a href="../jacoco-sessions.html" class="el_session">Sessions</a></span><a href="../index.html" class="el_report">Apache Commons Release Plugin</a> > <a href="index.source.html" class="el_package">org.apache.commons.release.plug in.mojos</a> > <span class="el_source">CommonsDistributionStagingMojo.java</span></div><h1>CommonsDistributionStagingMojo.java</h1><pre class="source lang-java linenums">/* + * 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. + */ +package org.apache.commons.release.plugin.mojos; + +import org.apache.commons.io.FileUtils; +import org.apache.commons.lang3.StringUtils; +import org.apache.commons.release.plugin.SharedFunctions; +import org.apache.commons.release.plugin.velocity.HeaderHtmlVelocityDelegate; +import org.apache.commons.release.plugin.velocity.ReadmeHtmlVelocityDelegate; +import org.apache.maven.plugin.AbstractMojo; +import org.apache.maven.plugin.MojoExecutionException; +import org.apache.maven.plugin.MojoFailureException; +import org.apache.maven.plugin.logging.Log; +import org.apache.maven.plugins.annotations.LifecyclePhase; +import org.apache.maven.plugins.annotations.Mojo; +import org.apache.maven.plugins.annotations.Parameter; +import org.apache.maven.project.MavenProject; +import org.apache.maven.scm.ScmException; +import org.apache.maven.scm.ScmFileSet; +import org.apache.maven.scm.command.add.AddScmResult; +import org.apache.maven.scm.command.checkin.CheckInScmResult; +import org.apache.maven.scm.manager.BasicScmManager; +import org.apache.maven.scm.manager.ScmManager; +import org.apache.maven.scm.provider.ScmProvider; +import org.apache.maven.scm.provider.svn.repository.SvnScmProviderRepository; +import org.apache.maven.scm.provider.svn.svnexe.SvnExeScmProvider; +import org.apache.maven.scm.repository.ScmRepository; + +import java.io.File; +import java.io.FileOutputStream; +import java.io.IOException; +import java.io.OutputStreamWriter; +import java.io.Writer; +import java.util.ArrayList; +import java.util.Arrays; +import java.util.List; + +/** + * This class checks out the dev distribution location, copies the distributions into that directory + * structure under the <code>target/commons-release-plugin/scm</code> directory. Then commits the + * distributions back up to SVN. Also, we include the built and zipped site as well as the RELEASE-NOTES.txt. + * + * @author chtompki + * @since 1.0 + */ +@Mojo(name = "stage-distributions", + defaultPhase = LifecyclePhase.DEPLOY, + threadSafe = true, + aggregator = true) +<span class="fc" id="L64">public class CommonsDistributionStagingMojo extends AbstractMojo {</span> + + /** The name of file generated from the README.vm velocity template to be checked into the dist svn repo. */ + private static final String README_FILE_NAME = "README.html"; + /** The name of file generated from the HEADER.vm velocity template to be checked into the dist svn repo. */ + private static final String HEADER_FILE_NAME = "HEADER.html"; + + /** + * The {@link MavenProject} object is essentially the context of the maven build at + * a given time. + */ + @Parameter(defaultValue = "${project}", required = true) + private MavenProject project; + + /** + * The {@link File} that contains a file to the root directory of the working project. Typically + * this directory is where the <code>pom.xml</code> resides. + */ + @Parameter(defaultValue = "${basedir}") + private File baseDir; + + /** The location to which the site gets built during running <code>mvn site</code>. */ + @Parameter(defaultValue = "${project.build.directory}/site", property = "commons.siteOutputDirectory") + private File siteDirectory; + + /** + * The main working directory for the plugin, namely <code>target/commons-release-plugin</code>, but + * that assumes that we're using the default maven <code>${project.build.directory}</code>. + */ + @Parameter(defaultValue = "${project.build.directory}/commons-release-plugin", property = "commons.outputDirectory") + private File workingDirectory; + + /** + * The location to which to checkout the dist subversion repository under our working directory, which + * was given above. + */ + @Parameter(defaultValue = "${project.build.directory}/commons-release-plugin/scm", + property = "commons.distCheckoutDirectory") + private File distCheckoutDirectory; + + /** + * The location of the RELEASE-NOTES.txt file such that multi-module builds can configure it. + */ + @Parameter(defaultValue = "${basedir}/RELEASE-NOTES.txt", property = "commons.releaseNotesLocation") + private File releaseNotesFile; + + /** + * A boolean that determines whether or not we actually commit the files up to the subversion repository. + * If this is set to <code>true</code>, we do all but make the commits. We do checkout the repository in question + * though. + */ + @Parameter(property = "commons.release.dryRun", defaultValue = "false") + private Boolean dryRun; + + /** + * The url of the subversion repository to which we wish the artifacts to be staged. Typically this would need to + * be of the form: <code>scm:svn:https://dist.apache.org/repos/dist/dev/commons/foo/version-RC#</code>. Note. that + * the prefix to the substring <code>https</code> is a requirement. + */ + @Parameter(defaultValue = "", property = "commons.distSvnStagingUrl") + private String distSvnStagingUrl; + + /** + * A parameter to generally avoid running unless it is specifically turned on by the consuming module. + */ + @Parameter(defaultValue = "false", property = "commons.release.isDistModule") + private Boolean isDistModule; + + /** + * The release version of the artifact to be built. + */ + @Parameter(property = "commons.release.version") + private String commonsReleaseVersion; + + /** + * The RC version of the release. For example the first voted on candidate would be "RC1". + */ + @Parameter(property = "commons.rc.version") + private String commonsRcVersion; + + /** + * The username for the distribution subversion repository. This is typically your Apache id. + */ + @Parameter(property = "user.name") + private String username; + + /** + * The password associated with {@link CommonsDistributionStagingMojo#username}. + */ + @Parameter(property = "user.password") + private String password; + + /** + * A subdirectory of the dist directory into which we are going to stage the release candidate. We + * build this up in the {@link CommonsDistributionStagingMojo#execute()} method. And, for example, + * the directory should look like <code>https://https://dist.apache.org/repos/dist/dev/commons/text/1.4-RC1</code>. + */ + private File distVersionRcVersionDirectory; + + @Override + public void execute() throws MojoExecutionException, MojoFailureException { +<span class="fc bfc" id="L165" title="All 2 branches covered."> if (!isDistModule) {</span> +<span class="fc" id="L166"> getLog().info("This module is marked as a non distribution "</span> + + "or assembly module, and the plugin will not run."); +<span class="fc" id="L168"> return;</span> + } +<span class="pc bpc" id="L170" title="1 of 2 branches missed."> if (StringUtils.isEmpty(distSvnStagingUrl)) {</span> +<span class="nc" id="L171"> getLog().warn("commons.distSvnStagingUrl is not set, the commons-release-plugin will not run.");</span> +<span class="nc" id="L172"> return;</span> + } +<span class="pc bpc" id="L174" title="1 of 2 branches missed."> if (!workingDirectory.exists()) {</span> +<span class="nc" id="L175"> getLog().info("Current project contains no distributions. Not executing.");</span> +<span class="nc" id="L176"> return;</span> + } +<span class="fc" id="L178"> getLog().info("Preparing to stage distributions");</span> + try { +<span class="fc" id="L180"> ScmManager scmManager = new BasicScmManager();</span> +<span class="fc" id="L181"> scmManager.setScmProvider("svn", new SvnExeScmProvider());</span> +<span class="fc" id="L182"> ScmRepository repository = scmManager.makeScmRepository(distSvnStagingUrl);</span> +<span class="fc" id="L183"> ScmProvider provider = scmManager.getProviderByRepository(repository);</span> +<span class="fc" id="L184"> SvnScmProviderRepository providerRepository = (SvnScmProviderRepository) repository.getProviderRepository();</span> +<span class="fc" id="L185"> providerRepository.setUser(username);</span> +<span class="fc" id="L186"> providerRepository.setPassword(password);</span> +<span class="fc" id="L187"> distVersionRcVersionDirectory =</span> + new File(distCheckoutDirectory, commonsReleaseVersion + "-" + commonsRcVersion); +<span class="pc bpc" id="L189" title="1 of 2 branches missed."> if (!distCheckoutDirectory.exists()) {</span> +<span class="fc" id="L190"> SharedFunctions.initDirectory(getLog(), distCheckoutDirectory);</span> + } +<span class="fc" id="L192"> ScmFileSet scmFileSet = new ScmFileSet(distCheckoutDirectory);</span> +<span class="fc" id="L193"> getLog().info("Checking out dist from: " + distSvnStagingUrl);</span> +<span class="fc" id="L194"> provider.checkOut(repository, scmFileSet);</span> +<span class="fc" id="L195"> File copiedReleaseNotes = copyReleaseNotesToWorkingDirectory();</span> +<span class="fc" id="L196"> copyDistributionsIntoScmDirectoryStructureAndAddToSvn(copiedReleaseNotes,</span> + provider, repository); +<span class="fc" id="L198"> List<File> filesToAdd = new ArrayList<>();</span> +<span class="fc" id="L199"> listNotHiddenFilesAndDirectories(distCheckoutDirectory, filesToAdd);</span> +<span class="pc bpc" id="L200" title="1 of 2 branches missed."> if (!dryRun) {</span> +<span class="nc" id="L201"> ScmFileSet fileSet = new ScmFileSet(distCheckoutDirectory, filesToAdd);</span> +<span class="nc" id="L202"> AddScmResult addResult = provider.add(</span> + repository, + fileSet + ); +<span class="nc bnc" id="L206" title="All 2 branches missed."> if (!addResult.isSuccess()) {</span> +<span class="nc" id="L207"> throw new MojoExecutionException("Failed to add files to scm");</span> + } +<span class="nc" id="L209"> getLog().info("Staging release: " + project.getArtifactId() + ", version: " + project.getVersion());</span> +<span class="nc" id="L210"> CheckInScmResult checkInResult = provider.checkIn(</span> + repository, + fileSet, +<span class="nc" id="L213"> "Staging release: " + project.getArtifactId() + ", version: " + project.getVersion()</span> + ); +<span class="nc bnc" id="L215" title="All 2 branches missed."> if (!checkInResult.isSuccess()) {</span> +<span class="nc" id="L216"> getLog().error("Committing dist files failed: " + checkInResult.getCommandOutput());</span> +<span class="nc" id="L217"> throw new MojoExecutionException(</span> +<span class="nc" id="L218"> "Committing dist files failed: " + checkInResult.getCommandOutput()</span> + ); + } +<span class="nc" id="L221"> getLog().info("Committed revision " + checkInResult.getScmRevision());</span> +<span class="nc" id="L222"> } else {</span> +<span class="fc" id="L223"> getLog().info("[Dry run] Would have committed to: " + distSvnStagingUrl);</span> +<span class="fc" id="L224"> getLog().info(</span> +<span class="fc" id="L225"> "[Dry run] Staging release: " + project.getArtifactId() + ", version: " + project.getVersion());</span> + } +<span class="nc" id="L227"> } catch (ScmException e) {</span> +<span class="nc" id="L228"> getLog().error("Could not commit files to dist: " + distSvnStagingUrl, e);</span> +<span class="nc" id="L229"> throw new MojoExecutionException("Could not commit files to dist: " + distSvnStagingUrl, e);</span> +<span class="fc" id="L230"> }</span> +<span class="fc" id="L231"> }</span> + + /** + * Lists all directories and files to a flat list. + * @param directory {@link File} containing directory to list + * @param files a {@link List} of {@link File} to which to append the files. + */ + private void listNotHiddenFilesAndDirectories(File directory, List<File> files) { + // Get all the files and directories from a directory. +<span class="fc" id="L240"> File[] fList = directory.listFiles();</span> +<span class="fc bfc" id="L241" title="All 2 branches covered."> for (File file : fList) {</span> +<span class="pc bpc" id="L242" title="1 of 4 branches missed."> if (file.isFile() && !file.isHidden()) {</span> +<span class="fc" id="L243"> files.add(file);</span> +<span class="pc bpc" id="L244" title="2 of 4 branches missed."> } else if (file.isDirectory() && !file.isHidden()) {</span> +<span class="fc" id="L245"> files.add(file);</span> +<span class="fc" id="L246"> listNotHiddenFilesAndDirectories(file, files);</span> + } + } +<span class="fc" id="L249"> }</span> + + /** + * A utility method that takes the <code>RELEASE-NOTES.txt</code> file from the base directory of the + * project and copies it into {@link CommonsDistributionStagingMojo#workingDirectory}. + * + * @return the RELEASE-NOTES.txt file that exists in the <code>target/commons-release-notes/scm</code> + * directory for the purpose of adding it to the scm change set in the method + * {@link CommonsDistributionStagingMojo#copyDistributionsIntoScmDirectoryStructureAndAddToSvn(File, + * ScmProvider, ScmRepository)}. + * @throws MojoExecutionException if an {@link IOException} occurs as a wrapper so that maven + * can properly handle the exception. + */ + private File copyReleaseNotesToWorkingDirectory() throws MojoExecutionException { +<span class="fc" id="L263"> SharedFunctions.initDirectory(getLog(), distVersionRcVersionDirectory);</span> +<span class="fc" id="L264"> getLog().info("Copying RELEASE-NOTES.txt to working directory.");</span> +<span class="fc" id="L265"> File copiedReleaseNotes = new File(distVersionRcVersionDirectory, releaseNotesFile.getName());</span> +<span class="fc" id="L266"> SharedFunctions.copyFile(getLog(), releaseNotesFile, copiedReleaseNotes);</span> +<span class="fc" id="L267"> return copiedReleaseNotes;</span> + } + + /** + * Copies the list of files at the root of the {@link CommonsDistributionStagingMojo#workingDirectory} into + * the directory structure of the distribution staging repository. Specifically: + * <ul> + * <li>root: + * <ul> + * <li>site</li> + * <li>site.zip</li> + * <li>RELEASE-NOTES.txt</li> + * <li>source: + * <ul> + * <li>-src artifacts....</li> + * </ul> + * </li> + * <li>binaries: + * <ul> + * <li>-bin artifacts....</li> + * </ul> + * </li> + * </ul> + * </li> + * </ul> + * + * @param copiedReleaseNotes is the RELEASE-NOTES.txt file that exists in the + * <code>target/commons-release-plugin/scm</code> directory. + * @param provider is the {@link ScmProvider} that we will use for adding the files we wish to commit. + * @param repository is the {@link ScmRepository} that we will use for adding the files that we wish to commit. + * @return a {@link List} of {@link File}'s in the directory for the purpose of adding them to the maven + * {@link ScmFileSet}. + * @throws MojoExecutionException if an {@link IOException} occurs so that Maven can handle it properly. + */ + private List<File> copyDistributionsIntoScmDirectoryStructureAndAddToSvn(File copiedReleaseNotes, + ScmProvider provider, + ScmRepository repository) + throws MojoExecutionException { +<span class="fc" id="L305"> List<File> workingDirectoryFiles = Arrays.asList(workingDirectory.listFiles());</span> +<span class="fc" id="L306"> List<File> filesForMavenScmFileSet = new ArrayList<>();</span> +<span class="fc" id="L307"> File scmBinariesRoot = new File(distVersionRcVersionDirectory, "binaries");</span> +<span class="fc" id="L308"> File scmSourceRoot = new File(distVersionRcVersionDirectory, "source");</span> +<span class="fc" id="L309"> SharedFunctions.initDirectory(getLog(), scmBinariesRoot);</span> +<span class="fc" id="L310"> SharedFunctions.initDirectory(getLog(), scmSourceRoot);</span> + File copy; +<span class="fc bfc" id="L312" title="All 2 branches covered."> for (File file : workingDirectoryFiles) {</span> +<span class="fc bfc" id="L313" title="All 2 branches covered."> if (file.getName().contains("src")) {</span> +<span class="fc" id="L314"> copy = new File(scmSourceRoot, file.getName());</span> +<span class="fc" id="L315"> SharedFunctions.copyFile(getLog(), file, copy);</span> +<span class="fc" id="L316"> filesForMavenScmFileSet.add(file);</span> +<span class="fc bfc" id="L317" title="All 2 branches covered."> } else if (file.getName().contains("bin")) {</span> +<span class="fc" id="L318"> copy = new File(scmBinariesRoot, file.getName());</span> +<span class="fc" id="L319"> SharedFunctions.copyFile(getLog(), file, copy);</span> +<span class="fc" id="L320"> filesForMavenScmFileSet.add(file);</span> +<span class="pc bpc" id="L321" title="1 of 2 branches missed."> } else if (StringUtils.containsAny(file.getName(), "scm", "sha1.properties", "sha256.properties")) {</span> +<span class="fc" id="L322"> getLog().debug("Not copying scm directory over to the scm directory because it is the scm directory.");</span> + //do nothing because we are copying into scm + } else { +<span class="nc" id="L325"> copy = new File(distCheckoutDirectory.getAbsolutePath(), file.getName());</span> +<span class="nc" id="L326"> SharedFunctions.copyFile(getLog(), file, copy);</span> +<span class="nc" id="L327"> filesForMavenScmFileSet.add(file);</span> + } +<span class="fc" id="L329"> }</span> +<span class="fc" id="L330"> filesForMavenScmFileSet.addAll(buildReadmeAndHeaderHtmlFiles());</span> +<span class="fc" id="L331"> filesForMavenScmFileSet.addAll(copySiteToScmDirectory());</span> +<span class="fc" id="L332"> return filesForMavenScmFileSet;</span> + } + + /** + * Copies <code>${basedir}/target/site</code> to <code>${basedir}/target/commons-release-plugin/scm/site</code>. + * + * @return the {@link List} of {@link File}'s contained in + * <code>${basedir}/target/commons-release-plugin/scm/site</code>, after the copy is complete. + * @throws MojoExecutionException if the site copying fails for some reason. + */ + private List<File> copySiteToScmDirectory() throws MojoExecutionException { +<span class="pc bpc" id="L343" title="1 of 2 branches missed."> if (!siteDirectory.exists()) {</span> +<span class="nc" id="L344"> getLog().error("\"mvn site\" was not run before this goal, or a siteDirectory did not exist.");</span> +<span class="nc" id="L345"> throw new MojoExecutionException(</span> + "\"mvn site\" was not run before this goal, or a siteDirectory did not exist." + ); + } + try { +<span class="fc" id="L350"> FileUtils.copyDirectoryToDirectory(siteDirectory, distVersionRcVersionDirectory);</span> +<span class="nc" id="L351"> } catch (IOException e) {</span> +<span class="nc" id="L352"> throw new MojoExecutionException("Site copying failed", e);</span> +<span class="fc" id="L353"> }</span> +<span class="fc" id="L354"> File siteInScm = new File(distVersionRcVersionDirectory, "site");</span> +<span class="fc" id="L355"> return new ArrayList<>(FileUtils.listFiles(siteInScm, null, true));</span> + } + + /** + * Builds up <code>README.html</code> and <code>HEADER.html</code> that reside in following. + * <ul> + * <li>distRoot + * <ul> + * <li>binaries/HEADER.html (symlink)</li> + * <li>binaries/README.html (symlink)</li> + * <li>source/HEADER.html (symlink)</li> + * <li>source/README.html (symlink)</li> + * <li>HEADER.html</li> + * <li>README.html</li> + * </ul> + * </li> + * </ul> + * @return the {@link List} of created files above + * @throws MojoExecutionException if an {@link IOException} occurs in the creation of these + * files fails. + */ + private List<File> buildReadmeAndHeaderHtmlFiles() throws MojoExecutionException { +<span class="fc" id="L377"> List<File> headerAndReadmeFiles = new ArrayList<>();</span> +<span class="fc" id="L378"> File headerFile = new File(distVersionRcVersionDirectory, HEADER_FILE_NAME);</span> + // + // HEADER file + // +<span class="fc" id="L382"> try (Writer headerWriter = new OutputStreamWriter(new FileOutputStream(headerFile), "UTF-8")) {</span> +<span class="fc" id="L383"> HeaderHtmlVelocityDelegate.builder().build().render(headerWriter);</span> +<span class="nc" id="L384"> } catch (IOException e) {</span> +<span class="nc" id="L385"> final String message = "Could not build HEADER html file " + headerFile;</span> +<span class="nc" id="L386"> getLog().error(message, e);</span> +<span class="nc" id="L387"> throw new MojoExecutionException(message, e);</span> +<span class="fc" id="L388"> }</span> +<span class="fc" id="L389"> headerAndReadmeFiles.add(headerFile);</span> + // + // README file + // +<span class="fc" id="L393"> File readmeFile = new File(distVersionRcVersionDirectory, README_FILE_NAME);</span> +<span class="fc" id="L394"> try (Writer readmeWriter = new OutputStreamWriter(new FileOutputStream(readmeFile), "UTF-8")) {</span> + // @formatter:off +<span class="fc" id="L396"> ReadmeHtmlVelocityDelegate readmeHtmlVelocityDelegate = ReadmeHtmlVelocityDelegate.builder()</span> +<span class="fc" id="L397"> .withArtifactId(project.getArtifactId())</span> +<span class="fc" id="L398"> .withVersion(project.getVersion())</span> +<span class="fc" id="L399"> .withSiteUrl(project.getUrl())</span> +<span class="fc" id="L400"> .build();</span> + // @formatter:on +<span class="fc" id="L402"> readmeHtmlVelocityDelegate.render(readmeWriter);</span> +<span class="nc" id="L403"> } catch (IOException e) {</span> +<span class="nc" id="L404"> final String message = "Could not build README html file " + readmeFile;</span> +<span class="nc" id="L405"> getLog().error(message, e);</span> +<span class="nc" id="L406"> throw new MojoExecutionException(message, e);</span> +<span class="fc" id="L407"> }</span> +<span class="fc" id="L408"> headerAndReadmeFiles.add(readmeFile);</span> +<span class="fc" id="L409"> headerAndReadmeFiles.addAll(copyHeaderAndReadmeToSubdirectories(headerFile, readmeFile));</span> +<span class="fc" id="L410"> return headerAndReadmeFiles;</span> + } + + /** + * Copies <code>README.html</code> and <code>HEADER.html</code> to the source and binaries + * directories. + * + * @param headerFile The originally created <code>HEADER.html</code> file. + * @param readmeFile The originally created <code>README.html</code> file. + * @return a {@link List} of created files. + * @throws MojoExecutionException if the {@link SharedFunctions#copyFile(Log, File, File)} + * fails. + */ + private List<File> copyHeaderAndReadmeToSubdirectories(File headerFile, File readmeFile) + throws MojoExecutionException { +<span class="fc" id="L425"> List<File> symbolicLinkFiles = new ArrayList<>();</span> +<span class="fc" id="L426"> File sourceRoot = new File(distVersionRcVersionDirectory, "source");</span> +<span class="fc" id="L427"> File binariesRoot = new File(distVersionRcVersionDirectory, "binaries");</span> +<span class="fc" id="L428"> File sourceHeaderFile = new File(sourceRoot, HEADER_FILE_NAME);</span> +<span class="fc" id="L429"> File sourceReadmeFile = new File(sourceRoot, README_FILE_NAME);</span> +<span class="fc" id="L430"> File binariesHeaderFile = new File(binariesRoot, HEADER_FILE_NAME);</span> +<span class="fc" id="L431"> File binariesReadmeFile = new File(binariesRoot, README_FILE_NAME);</span> +<span class="fc" id="L432"> SharedFunctions.copyFile(getLog(), headerFile, sourceHeaderFile);</span> +<span class="fc" id="L433"> symbolicLinkFiles.add(sourceHeaderFile);</span> +<span class="fc" id="L434"> SharedFunctions.copyFile(getLog(), readmeFile, sourceReadmeFile);</span> +<span class="fc" id="L435"> symbolicLinkFiles.add(sourceReadmeFile);</span> +<span class="fc" id="L436"> SharedFunctions.copyFile(getLog(), headerFile, binariesHeaderFile);</span> +<span class="fc" id="L437"> symbolicLinkFiles.add(binariesHeaderFile);</span> +<span class="fc" id="L438"> SharedFunctions.copyFile(getLog(), readmeFile, binariesReadmeFile);</span> +<span class="fc" id="L439"> symbolicLinkFiles.add(binariesReadmeFile);</span> +<span class="fc" id="L440"> return symbolicLinkFiles;</span> + } + + /** + * This method is the setter for the {@link CommonsDistributionStagingMojo#baseDir} field, specifically + * for the usage in the unit tests. + * + * @param baseDir is the {@link File} to be used as the project's root directory when this mojo + * is invoked. + */ + protected void setBaseDir(File baseDir) { +<span class="fc" id="L451"> this.baseDir = baseDir;</span> +<span class="fc" id="L452"> }</span> +} +</pre><div class="footer"><span class="right">Created with <a href="http://www.jacoco.org/jacoco">JaCoCo</a> 0.8.0.201801022044</span></div></body></html> \ No newline at end of file
Added: dev/commons/commons-release-plugin/1.3-RC1/site/jacoco/org.apache.commons.release.plugin.mojos/CommonsSiteCompressionMojo.html ============================================================================== --- dev/commons/commons-release-plugin/1.3-RC1/site/jacoco/org.apache.commons.release.plugin.mojos/CommonsSiteCompressionMojo.html (added) +++ dev/commons/commons-release-plugin/1.3-RC1/site/jacoco/org.apache.commons.release.plugin.mojos/CommonsSiteCompressionMojo.html Fri Jun 15 16:12:15 2018 @@ -0,0 +1 @@ +<?xml version="1.0" encoding="ISO-8859-1"?><!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"><html xmlns="http://www.w3.org/1999/xhtml" lang="en"><head><meta http-equiv="Content-Type" content="text/html;charset=UTF-8"/><link rel="stylesheet" href="../jacoco-resources/report.css" type="text/css"/><link rel="shortcut icon" href="../jacoco-resources/report.gif" type="image/gif"/><title>CommonsSiteCompressionMojo</title><script type="text/javascript" src="../jacoco-resources/sort.js"></script></head><body onload="initialSort(['breadcrumb'])"><div class="breadcrumb" id="breadcrumb"><span class="info"><a href="../jacoco-sessions.html" class="el_session">Sessions</a></span><a href="../index.html" class="el_report">Apache Commons Release Plugin</a> > <a href="index.html" class="el_package">org.apache.commons.release.plugin.mojos</a> > <span class="el_class">CommonsSiteCompressionMojo</span></div><h1>CommonsSiteCompressionMojo< /h1><table class="coverage" cellspacing="0" id="coveragetable"><thead><tr><td class="sortable" id="a" onclick="toggleSort(this)">Element</td><td class="down sortable bar" id="b" onclick="toggleSort(this)">Missed Instructions</td><td class="sortable ctr2" id="c" onclick="toggleSort(this)">Cov.</td><td class="sortable bar" id="d" onclick="toggleSort(this)">Missed Branches</td><td class="sortable ctr2" id="e" onclick="toggleSort(this)">Cov.</td><td class="sortable ctr1" id="f" onclick="toggleSort(this)">Missed</td><td class="sortable ctr2" id="g" onclick="toggleSort(this)">Cxty</td><td class="sortable ctr1" id="h" onclick="toggleSort(this)">Missed</td><td class="sortable ctr2" id="i" onclick="toggleSort(this)">Lines</td><td class="sortable ctr1" id="j" onclick="toggleSort(this)">Missed</td><td class="sortable ctr2" id="k" onclick="toggleSort(this)">Methods</td></tr></thead><tfoot><tr><td>Total</td><td class="bar">42 of 197</td><td class="ctr2">78%</td><td class="bar">4 of 16</td><td cl ass="ctr2">75%</td><td class="ctr1">4</td><td class="ctr2">13</td><td class="ctr1">9</td><td class="ctr2">42</td><td class="ctr1">0</td><td class="ctr2">5</td></tr></tfoot><tbody><tr><td id="a2"><a href="CommonsSiteCompressionMojo.java.html#L100" class="el_method">execute()</a></td><td class="bar" id="b0"><img src="../jacoco-resources/redbar.gif" width="51" height="10" title="38" alt="38"/><img src="../jacoco-resources/greenbar.gif" width="68" height="10" title="51" alt="51"/></td><td class="ctr2" id="c4">57%</td><td class="bar" id="d0"><img src="../jacoco-resources/redbar.gif" width="30" height="10" title="2" alt="2"/><img src="../jacoco-resources/greenbar.gif" width="90" height="10" title="6" alt="6"/></td><td class="ctr2" id="e0">75%</td><td class="ctr1" id="f0">2</td><td class="ctr2" id="g0">5</td><td class="ctr1" id="h0">8</td><td class="ctr2" id="i0">21</td><td class="ctr1" id="j0">0</td><td class="ctr2" id="k0">1</td></tr><tr><td id="a3"><a href="CommonsSiteCompressionMojo.ja va.html#L140" class="el_method">getAllSiteFiles(File, List)</a></td><td class="bar" id="b1"><img src="../jacoco-resources/redbar.gif" width="5" height="10" title="4" alt="4"/><img src="../jacoco-resources/greenbar.gif" width="36" height="10" title="27" alt="27"/></td><td class="ctr2" id="c3">87%</td><td class="bar" id="d1"><img src="../jacoco-resources/redbar.gif" width="15" height="10" title="1" alt="1"/><img src="../jacoco-resources/greenbar.gif" width="45" height="10" title="3" alt="3"/></td><td class="ctr2" id="e1">75%</td><td class="ctr1" id="f1">1</td><td class="ctr2" id="g1">3</td><td class="ctr1" id="h1">1</td><td class="ctr2" id="i3">6</td><td class="ctr1" id="j1">0</td><td class="ctr2" id="k1">1</td></tr><tr><td id="a4"><a href="CommonsSiteCompressionMojo.java.html#L161" class="el_method">writeZipFile(File, File, List)</a></td><td class="bar" id="b2"><img src="../jacoco-resources/greenbar.gif" width="56" height="10" title="42" alt="42"/></td><td class="ctr2" id="c0">100%</ td><td class="bar" id="d2"><img src="../jacoco-resources/redbar.gif" width="15" height="10" title="1" alt="1"/><img src="../jacoco-resources/greenbar.gif" width="45" height="10" title="3" alt="3"/></td><td class="ctr2" id="e2">75%</td><td class="ctr1" id="f2">1</td><td class="ctr2" id="g2">3</td><td class="ctr1" id="h2">0</td><td class="ctr2" id="i1">7</td><td class="ctr1" id="j2">0</td><td class="ctr2" id="k2">1</td></tr><tr><td id="a0"><a href="CommonsSiteCompressionMojo.java.html#L182" class="el_method">addToZip(File, File, ZipOutputStream)</a></td><td class="bar" id="b3"><img src="../jacoco-resources/greenbar.gif" width="43" height="10" title="32" alt="32"/></td><td class="ctr2" id="c1">100%</td><td class="bar" id="d3"/><td class="ctr2" id="e3">n/a</td><td class="ctr1" id="f3">0</td><td class="ctr2" id="g3">1</td><td class="ctr1" id="h3">0</td><td class="ctr2" id="i2">7</td><td class="ctr1" id="j3">0</td><td class="ctr2" id="k3">1</td></tr><tr><td id="a1"><a href="CommonsSiteCom pressionMojo.java.html#L53" class="el_method">CommonsSiteCompressionMojo()</a></td><td class="bar" id="b4"><img src="../jacoco-resources/greenbar.gif" width="4" height="10" title="3" alt="3"/></td><td class="ctr2" id="c2">100%</td><td class="bar" id="d4"/><td class="ctr2" id="e4">n/a</td><td class="ctr1" id="f4">0</td><td class="ctr2" id="g4">1</td><td class="ctr1" id="h4">0</td><td class="ctr2" id="i4">1</td><td class="ctr1" id="j4">0</td><td class="ctr2" id="k4">1</td></tr></tbody></table><div class="footer"><span class="right">Created with <a href="http://www.jacoco.org/jacoco">JaCoCo</a> 0.8.0.201801022044</span></div></body></html> \ No newline at end of file Added: dev/commons/commons-release-plugin/1.3-RC1/site/jacoco/org.apache.commons.release.plugin.mojos/CommonsSiteCompressionMojo.java.html ============================================================================== --- dev/commons/commons-release-plugin/1.3-RC1/site/jacoco/org.apache.commons.release.plugin.mojos/CommonsSiteCompressionMojo.java.html (added) +++ dev/commons/commons-release-plugin/1.3-RC1/site/jacoco/org.apache.commons.release.plugin.mojos/CommonsSiteCompressionMojo.java.html Fri Jun 15 16:12:15 2018 @@ -0,0 +1,193 @@ +<?xml version="1.0" encoding="ISO-8859-1"?><!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"><html xmlns="http://www.w3.org/1999/xhtml" lang="en"><head><meta http-equiv="Content-Type" content="text/html;charset=UTF-8"/><link rel="stylesheet" href="../jacoco-resources/report.css" type="text/css"/><link rel="shortcut icon" href="../jacoco-resources/report.gif" type="image/gif"/><title>CommonsSiteCompressionMojo.java</title><link rel="stylesheet" href="../jacoco-resources/prettify.css" type="text/css"/><script type="text/javascript" src="../jacoco-resources/prettify.js"></script></head><body onload="window['PR_TAB_WIDTH']=4;prettyPrint()"><div class="breadcrumb" id="breadcrumb"><span class="info"><a href="../jacoco-sessions.html" class="el_session">Sessions</a></span><a href="../index.html" class="el_report">Apache Commons Release Plugin</a> > <a href="index.source.html" class="el_package">org.apache.commons.release.plugin.m ojos</a> > <span class="el_source">CommonsSiteCompressionMojo.java</span></div><h1>CommonsSiteCompressionMojo.java</h1><pre class="source lang-java linenums">/* + * 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. + */ +package org.apache.commons.release.plugin.mojos; + +import java.io.File; +import java.io.FileInputStream; +import java.io.FileOutputStream; +import java.io.IOException; +import java.util.ArrayList; +import java.util.List; +import java.util.zip.ZipEntry; +import java.util.zip.ZipOutputStream; + +import org.apache.commons.compress.archivers.zip.ParallelScatterZipCreator; +import org.apache.commons.compress.archivers.zip.ScatterZipOutputStream; +import org.apache.commons.io.IOUtils; +import org.apache.commons.lang3.StringUtils; +import org.apache.maven.plugin.AbstractMojo; +import org.apache.maven.plugin.MojoExecutionException; +import org.apache.maven.plugin.MojoFailureException; +import org.apache.maven.plugins.annotations.LifecyclePhase; +import org.apache.maven.plugins.annotations.Mojo; +import org.apache.maven.plugins.annotations.Parameter; + +/** + * Takes the built <code>./target/site</code> directory and compresses it to + * <code>./target/commons-release-plugin/site.zip</code>. + * + * @author chtompki + * @since 1.0 + * @deprecated - as we no longer wish to compress the site, we are going to put this functionality in the + * {@link CommonsDistributionStagingMojo}. + */ +@Deprecated +@Mojo(name = "compress-site", + defaultPhase = LifecyclePhase.POST_SITE, + threadSafe = true, + aggregator = true) +<span class="fc" id="L53">public class CommonsSiteCompressionMojo extends AbstractMojo {</span> + + /** + * The working directory for the plugin which, assuming the maven uses the default + * <code>${project.build.directory}</code>, this becomes <code>target/commons-release-plugin</code>. + */ + @Parameter(defaultValue = "${project.build.directory}/commons-release-plugin", + property = "commons.outputDirectory") + private File workingDirectory; + + /** + */ + @Parameter(defaultValue = "${project.build.directory}/site", property = "commons.siteOutputDirectory") + private File siteDirectory; + + /** + * The url of the subversion repository to which we wish the artifacts to be staged. Typicallly + * this would need to be of the form: + * <code>scm:svn:https://dist.apache.org/repos/dist/dev/commons/foo</code>. Note. that the prefix to the + * substring <code>https</code> is a requirement. + */ + @Parameter(defaultValue = "", property = "commons.distSvnStagingUrl") + private String distSvnStagingUrl; + + /** + * A parameter to generally avoid running unless it is specifically turned on by the consuming module. + */ + @Parameter(defaultValue = "false", property = "commons.release.isDistModule") + private Boolean isDistModule; + + /** + * A variable for the process of creating the site.zip file. + */ + private ScatterZipOutputStream dirs; + + /** + * A second variable for the process of creating the site.zip file. + */ + private ParallelScatterZipCreator scatterZipCreator; + + /** + * The list of files to compress into the site.zip file. + */ + private List<File> filesToCompress; + + @Override + public void execute() throws MojoExecutionException, MojoFailureException { +<span class="pc bpc" id="L100" title="1 of 2 branches missed."> if (!isDistModule) {</span> +<span class="nc" id="L101"> getLog().info("This module is marked as a non distribution "</span> + + "or assembly module, and the plugin will not run."); +<span class="nc" id="L103"> return;</span> + } +<span class="pc bpc" id="L105" title="1 of 2 branches missed."> if (StringUtils.isEmpty(distSvnStagingUrl)) {</span> +<span class="nc" id="L106"> getLog().warn("commons.distSvnStagingUrl is not set, the commons-release-plugin will not run.");</span> +<span class="nc" id="L107"> return;</span> + } +<span class="fc bfc" id="L109" title="All 2 branches covered."> if (!siteDirectory.exists()) {</span> +<span class="fc" id="L110"> getLog().error("\"mvn site\" was not run before this goal, or a siteDirectory did not exist.");</span> +<span class="fc" id="L111"> throw new MojoFailureException(</span> + "\"mvn site\" was not run before this goal, or a siteDirectory did not exist." + ); + } +<span class="fc bfc" id="L115" title="All 2 branches covered."> if (!workingDirectory.exists()) {</span> +<span class="fc" id="L116"> getLog().info("Current project contains no distributions. Not executing.");</span> +<span class="fc" id="L117"> return;</span> + } + try { +<span class="fc" id="L120"> filesToCompress = new ArrayList<>();</span> +<span class="fc" id="L121"> getAllSiteFiles(siteDirectory, filesToCompress);</span> +<span class="fc" id="L122"> writeZipFile(workingDirectory, siteDirectory, filesToCompress);</span> +<span class="nc" id="L123"> } catch (IOException e) {</span> +<span class="nc" id="L124"> getLog().error("Failed to create ./target/commons-release-plugin/site.zip: " + e.getMessage(), e);</span> +<span class="nc" id="L125"> throw new MojoExecutionException(</span> +<span class="nc" id="L126"> "Failed to create ./target/commons-release-plugin/site.zip: " + e.getMessage(),</span> + e + ); +<span class="fc" id="L129"> }</span> +<span class="fc" id="L130"> }</span> + + /** + * By default this method iterates across the <code>target/site</code> directory and adds all of the files + * to the {@link CommonsSiteCompressionMojo#filesToCompress} {@link List}. + * + * @param siteDirectory the {@link File} that represents the <code>target/site</code> directory. + * @param filesToCompress the {@link List} to which to add all the files. + */ + private void getAllSiteFiles(File siteDirectory, List<File> filesToCompress) { +<span class="fc" id="L140"> File[] files = siteDirectory.listFiles();</span> +<span class="fc bfc" id="L141" title="All 2 branches covered."> for (File file : files) {</span> +<span class="fc" id="L142"> filesToCompress.add(file);</span> +<span class="pc bpc" id="L143" title="1 of 2 branches missed."> if (file.isDirectory()) {</span> +<span class="nc" id="L144"> getAllSiteFiles(file, filesToCompress);</span> + } + } +<span class="fc" id="L147"> }</span> + + /** + * A helper method for writing all of the files in our <code>fileList</code> to a <code>site.zip</code> file + * in the <code>workingDirectory</code>. + * + * @param outputDirectory is a {@link File} representing the place to put the site.zip file. + * @param directoryToZip is a {@link File} representing the directory of the site (normally + * <code>target/site</code>). + * @param fileList the list of files to be zipped up, generally generated by + * {@link CommonsSiteCompressionMojo#getAllSiteFiles(File, List)}. + * @throws IOException when the copying of the files goes incorrectly. + */ + private void writeZipFile(File outputDirectory, File directoryToZip, List<File> fileList) throws IOException { +<span class="fc" id="L161"> try (FileOutputStream fos = new FileOutputStream(outputDirectory.getAbsolutePath() + "/site.zip");</span> +<span class="fc" id="L162"> ZipOutputStream zos = new ZipOutputStream(fos)) {</span> +<span class="fc bfc" id="L163" title="All 2 branches covered."> for (File file : fileList) {</span> +<span class="pc bpc" id="L164" title="1 of 2 branches missed."> if (!file.isDirectory()) { // we only zip files, not directories</span> +<span class="fc" id="L165"> addToZip(directoryToZip, file, zos);</span> + } +<span class="fc" id="L167"> }</span> + } +<span class="fc" id="L169"> }</span> + + /** + * Given the <code>directoryToZip</code> we add the <code>file</code> to the zip archive represented by + * <code>zos</code>. + * + * @param directoryToZip a {@link File} representing the directory from which the file exists that we are + * compressing. Generally this is <code>target/site</code>. + * @param file a {@link File} to add to the {@link ZipOutputStream} <code>zos</code>. + * @param zos the {@link ZipOutputStream} to which to add our <code>file</code>. + * @throws IOException if adding the <code>file</code> doesn't work out properly. + */ + private void addToZip(File directoryToZip, File file, ZipOutputStream zos) throws IOException { +<span class="fc" id="L182"> try (FileInputStream fis = new FileInputStream(file)) {</span> + // we want the zipEntry's path to be a relative path that is relative + // to the directory being zipped, so chop off the rest of the path +<span class="fc" id="L185"> String zipFilePath = file.getCanonicalPath().substring(directoryToZip.getCanonicalPath().length() + 1,</span> +<span class="fc" id="L186"> file.getCanonicalPath().length());</span> +<span class="fc" id="L187"> ZipEntry zipEntry = new ZipEntry(zipFilePath);</span> +<span class="fc" id="L188"> zos.putNextEntry(zipEntry);</span> +<span class="fc" id="L189"> IOUtils.copy(fis, zos);</span> + } +<span class="fc" id="L191"> }</span> +} +</pre><div class="footer"><span class="right">Created with <a href="http://www.jacoco.org/jacoco">JaCoCo</a> 0.8.0.201801022044</span></div></body></html> \ No newline at end of file Added: dev/commons/commons-release-plugin/1.3-RC1/site/jacoco/org.apache.commons.release.plugin.mojos/index.html ============================================================================== --- dev/commons/commons-release-plugin/1.3-RC1/site/jacoco/org.apache.commons.release.plugin.mojos/index.html (added) +++ dev/commons/commons-release-plugin/1.3-RC1/site/jacoco/org.apache.commons.release.plugin.mojos/index.html Fri Jun 15 16:12:15 2018 @@ -0,0 +1 @@ +<?xml version="1.0" encoding="ISO-8859-1"?><!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"><html xmlns="http://www.w3.org/1999/xhtml" lang="en"><head><meta http-equiv="Content-Type" content="text/html;charset=UTF-8"/><link rel="stylesheet" href="../jacoco-resources/report.css" type="text/css"/><link rel="shortcut icon" href="../jacoco-resources/report.gif" type="image/gif"/><title>org.apache.commons.release.plugin.mojos</title><script type="text/javascript" src="../jacoco-resources/sort.js"></script></head><body onload="initialSort(['breadcrumb', 'coveragetable'])"><div class="breadcrumb" id="breadcrumb"><span class="info"><a href="index.source.html" class="el_source">Source Files</a><a href="../jacoco-sessions.html" class="el_session">Sessions</a></span><a href="../index.html" class="el_report">Apache Commons Release Plugin</a> > <span class="el_package">org.apache.commons.release.plugin.mojos</span></div><h1>org.apach e.commons.release.plugin.mojos</h1><table class="coverage" cellspacing="0" id="coveragetable"><thead><tr><td class="sortable" id="a" onclick="toggleSort(this)">Element</td><td class="down sortable bar" id="b" onclick="toggleSort(this)">Missed Instructions</td><td class="sortable ctr2" id="c" onclick="toggleSort(this)">Cov.</td><td class="sortable bar" id="d" onclick="toggleSort(this)">Missed Branches</td><td class="sortable ctr2" id="e" onclick="toggleSort(this)">Cov.</td><td class="sortable ctr1" id="f" onclick="toggleSort(this)">Missed</td><td class="sortable ctr2" id="g" onclick="toggleSort(this)">Cxty</td><td class="sortable ctr1" id="h" onclick="toggleSort(this)">Missed</td><td class="sortable ctr2" id="i" onclick="toggleSort(this)">Lines</td><td class="sortable ctr1" id="j" onclick="toggleSort(this)">Missed</td><td class="sortable ctr2" id="k" onclick="toggleSort(this)">Methods</td><td class="sortable ctr1" id="l" onclick="toggleSort(this)">Missed</td><td class="sortable ctr2" id="m" onclick="toggleSort(this)">Classes</td></tr></thead><tfoot><tr><td>Total</td><td class="bar">386 of 1,568</td><td class="ctr2">75%</td><td class="bar">21 of 72</td><td class="ctr2">70%</td><td class="ctr1">20</td><td class="ctr2">63</td><td class="ctr1">72</td><td class="ctr2">311</td><td class="ctr1">1</td><td class="ctr2">27</td><td class="ctr1">0</td><td class="ctr2">3</td></tr></tfoot><tbody><tr><td id="a1"><a href="CommonsDistributionStagingMojo.html" class="el_class">CommonsDistributionStagingMojo</a></td><td class="bar" id="b0"><img src="../jacoco-resources/redbar.gif" width="33" height="10" title="215" alt="215"/><img src="../jacoco-resources/greenbar.gif" width="86" height="10" title="545" alt="545"/></td><td class="ctr2" id="c2">71%</td><td class="bar" id="d0"><img src="../jacoco-resources/redbar.gif" width="45" height="10" title="13" alt="13"/><img src="../jacoco-resources/greenbar.gif" width="74" height="10" title="21" alt="21"/></td><td class="ctr2" id="e2">61%< /td><td class="ctr1" id="f0">11</td><td class="ctr2" id="g0">26</td><td class="ctr1" id="h0">35</td><td class="ctr2" id="i0">140</td><td class="ctr1" id="j1">0</td><td class="ctr2" id="k1">9</td><td class="ctr1" id="l0">0</td><td class="ctr2" id="m0">1</td></tr><tr><td id="a0"><a href="CommonsDistributionDetachmentMojo.html" class="el_class">CommonsDistributionDetachmentMojo</a></td><td class="bar" id="b1"><img src="../jacoco-resources/redbar.gif" width="20" height="10" title="129" alt="129"/><img src="../jacoco-resources/greenbar.gif" width="76" height="10" title="482" alt="482"/></td><td class="ctr2" id="c0">78%</td><td class="bar" id="d1"><img src="../jacoco-resources/redbar.gif" width="14" height="10" title="4" alt="4"/><img src="../jacoco-resources/greenbar.gif" width="63" height="10" title="18" alt="18"/></td><td class="ctr2" id="e0">81%</td><td class="ctr1" id="f1">5</td><td class="ctr2" id="g1">24</td><td class="ctr1" id="h1">28</td><td class="ctr2" id="i1">129</td><td class ="ctr1" id="j0">1</td><td class="ctr2" id="k0">13</td><td class="ctr1" id="l1">0</td><td class="ctr2" id="m1">1</td></tr><tr><td id="a2"><a href="CommonsSiteCompressionMojo.html" class="el_class">CommonsSiteCompressionMojo</a></td><td class="bar" id="b2"><img src="../jacoco-resources/redbar.gif" width="6" height="10" title="42" alt="42"/><img src="../jacoco-resources/greenbar.gif" width="24" height="10" title="155" alt="155"/></td><td class="ctr2" id="c1">78%</td><td class="bar" id="d2"><img src="../jacoco-resources/redbar.gif" width="14" height="10" title="4" alt="4"/><img src="../jacoco-resources/greenbar.gif" width="42" height="10" title="12" alt="12"/></td><td class="ctr2" id="e1">75%</td><td class="ctr1" id="f2">4</td><td class="ctr2" id="g2">13</td><td class="ctr1" id="h2">9</td><td class="ctr2" id="i2">42</td><td class="ctr1" id="j2">0</td><td class="ctr2" id="k2">5</td><td class="ctr1" id="l2">0</td><td class="ctr2" id="m2">1</td></tr></tbody></table><div class="footer"><spa n class="right">Created with <a href="http://www.jacoco.org/jacoco">JaCoCo</a> 0.8.0.201801022044</span></div></body></html> \ No newline at end of file Added: dev/commons/commons-release-plugin/1.3-RC1/site/jacoco/org.apache.commons.release.plugin.mojos/index.source.html ============================================================================== --- dev/commons/commons-release-plugin/1.3-RC1/site/jacoco/org.apache.commons.release.plugin.mojos/index.source.html (added) +++ dev/commons/commons-release-plugin/1.3-RC1/site/jacoco/org.apache.commons.release.plugin.mojos/index.source.html Fri Jun 15 16:12:15 2018 @@ -0,0 +1 @@ +<?xml version="1.0" encoding="ISO-8859-1"?><!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"><html xmlns="http://www.w3.org/1999/xhtml" lang="en"><head><meta http-equiv="Content-Type" content="text/html;charset=UTF-8"/><link rel="stylesheet" href="../jacoco-resources/report.css" type="text/css"/><link rel="shortcut icon" href="../jacoco-resources/report.gif" type="image/gif"/><title>org.apache.commons.release.plugin.mojos</title><script type="text/javascript" src="../jacoco-resources/sort.js"></script></head><body onload="initialSort(['breadcrumb', 'coveragetable'])"><div class="breadcrumb" id="breadcrumb"><span class="info"><a href="index.html" class="el_class">Classes</a><a href="../jacoco-sessions.html" class="el_session">Sessions</a></span><a href="../index.html" class="el_report">Apache Commons Release Plugin</a> > <span class="el_package">org.apache.commons.release.plugin.mojos</span></div><h1>org.apache.commons.rel ease.plugin.mojos</h1><table class="coverage" cellspacing="0" id="coveragetable"><thead><tr><td class="sortable" id="a" onclick="toggleSort(this)">Element</td><td class="down sortable bar" id="b" onclick="toggleSort(this)">Missed Instructions</td><td class="sortable ctr2" id="c" onclick="toggleSort(this)">Cov.</td><td class="sortable bar" id="d" onclick="toggleSort(this)">Missed Branches</td><td class="sortable ctr2" id="e" onclick="toggleSort(this)">Cov.</td><td class="sortable ctr1" id="f" onclick="toggleSort(this)">Missed</td><td class="sortable ctr2" id="g" onclick="toggleSort(this)">Cxty</td><td class="sortable ctr1" id="h" onclick="toggleSort(this)">Missed</td><td class="sortable ctr2" id="i" onclick="toggleSort(this)">Lines</td><td class="sortable ctr1" id="j" onclick="toggleSort(this)">Missed</td><td class="sortable ctr2" id="k" onclick="toggleSort(this)">Methods</td><td class="sortable ctr1" id="l" onclick="toggleSort(this)">Missed</td><td class="sortable ctr2" id="m" oncli ck="toggleSort(this)">Classes</td></tr></thead><tfoot><tr><td>Total</td><td class="bar">386 of 1,568</td><td class="ctr2">75%</td><td class="bar">21 of 72</td><td class="ctr2">70%</td><td class="ctr1">20</td><td class="ctr2">63</td><td class="ctr1">72</td><td class="ctr2">311</td><td class="ctr1">1</td><td class="ctr2">27</td><td class="ctr1">0</td><td class="ctr2">3</td></tr></tfoot><tbody><tr><td id="a1"><a href="CommonsDistributionStagingMojo.java.html" class="el_source">CommonsDistributionStagingMojo.java</a></td><td class="bar" id="b0"><img src="../jacoco-resources/redbar.gif" width="33" height="10" title="215" alt="215"/><img src="../jacoco-resources/greenbar.gif" width="86" height="10" title="545" alt="545"/></td><td class="ctr2" id="c2">71%</td><td class="bar" id="d0"><img src="../jacoco-resources/redbar.gif" width="45" height="10" title="13" alt="13"/><img src="../jacoco-resources/greenbar.gif" width="74" height="10" title="21" alt="21"/></td><td class="ctr2" id="e2">61%</t d><td class="ctr1" id="f0">11</td><td class="ctr2" id="g0">26</td><td class="ctr1" id="h0">35</td><td class="ctr2" id="i0">140</td><td class="ctr1" id="j1">0</td><td class="ctr2" id="k1">9</td><td class="ctr1" id="l0">0</td><td class="ctr2" id="m0">1</td></tr><tr><td id="a0"><a href="CommonsDistributionDetachmentMojo.java.html" class="el_source">CommonsDistributionDetachmentMojo.java</a></td><td class="bar" id="b1"><img src="../jacoco-resources/redbar.gif" width="20" height="10" title="129" alt="129"/><img src="../jacoco-resources/greenbar.gif" width="76" height="10" title="482" alt="482"/></td><td class="ctr2" id="c0">78%</td><td class="bar" id="d1"><img src="../jacoco-resources/redbar.gif" width="14" height="10" title="4" alt="4"/><img src="../jacoco-resources/greenbar.gif" width="63" height="10" title="18" alt="18"/></td><td class="ctr2" id="e0">81%</td><td class="ctr1" id="f1">5</td><td class="ctr2" id="g1">24</td><td class="ctr1" id="h1">28</td><td class="ctr2" id="i1">129</td> <td class="ctr1" id="j0">1</td><td class="ctr2" id="k0">13</td><td class="ctr1" id="l1">0</td><td class="ctr2" id="m1">1</td></tr><tr><td id="a2"><a href="CommonsSiteCompressionMojo.java.html" class="el_source">CommonsSiteCompressionMojo.java</a></td><td class="bar" id="b2"><img src="../jacoco-resources/redbar.gif" width="6" height="10" title="42" alt="42"/><img src="../jacoco-resources/greenbar.gif" width="24" height="10" title="155" alt="155"/></td><td class="ctr2" id="c1">78%</td><td class="bar" id="d2"><img src="../jacoco-resources/redbar.gif" width="14" height="10" title="4" alt="4"/><img src="../jacoco-resources/greenbar.gif" width="42" height="10" title="12" alt="12"/></td><td class="ctr2" id="e1">75%</td><td class="ctr1" id="f2">4</td><td class="ctr2" id="g2">13</td><td class="ctr1" id="h2">9</td><td class="ctr2" id="i2">42</td><td class="ctr1" id="j2">0</td><td class="ctr2" id="k2">5</td><td class="ctr1" id="l2">0</td><td class="ctr2" id="m2">1</td></tr></tbody></table><div class="footer"><span class="right">Created with <a href="http://www.jacoco.org/jacoco">JaCoCo</a> 0.8.0.201801022044</span></div></body></html> \ No newline at end of file Added: dev/commons/commons-release-plugin/1.3-RC1/site/jacoco/org.apache.commons.release.plugin.velocity/HeaderHtmlVelocityDelegate$HeaderHtmlVelocityDelegateBuilder.html ============================================================================== --- dev/commons/commons-release-plugin/1.3-RC1/site/jacoco/org.apache.commons.release.plugin.velocity/HeaderHtmlVelocityDelegate$HeaderHtmlVelocityDelegateBuilder.html (added) +++ dev/commons/commons-release-plugin/1.3-RC1/site/jacoco/org.apache.commons.release.plugin.velocity/HeaderHtmlVelocityDelegate$HeaderHtmlVelocityDelegateBuilder.html Fri Jun 15 16:12:15 2018 @@ -0,0 +1 @@ +<?xml version="1.0" encoding="ISO-8859-1"?><!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"><html xmlns="http://www.w3.org/1999/xhtml" lang="en"><head><meta http-equiv="Content-Type" content="text/html;charset=UTF-8"/><link rel="stylesheet" href="../jacoco-resources/report.css" type="text/css"/><link rel="shortcut icon" href="../jacoco-resources/report.gif" type="image/gif"/><title>HeaderHtmlVelocityDelegate.HeaderHtmlVelocityDelegateBuilder</title><script type="text/javascript" src="../jacoco-resources/sort.js"></script></head><body onload="initialSort(['breadcrumb'])"><div class="breadcrumb" id="breadcrumb"><span class="info"><a href="../jacoco-sessions.html" class="el_session">Sessions</a></span><a href="../index.html" class="el_report">Apache Commons Release Plugin</a> > <a href="index.html" class="el_package">org.apache.commons.release.plugin.velocity</a> > <span class="el_class">HeaderHtmlVelocityDelegate.Header HtmlVelocityDelegateBuilder</span></div><h1>HeaderHtmlVelocityDelegate.HeaderHtmlVelocityDelegateBuilder</h1><table class="coverage" cellspacing="0" id="coveragetable"><thead><tr><td class="sortable" id="a" onclick="toggleSort(this)">Element</td><td class="down sortable bar" id="b" onclick="toggleSort(this)">Missed Instructions</td><td class="sortable ctr2" id="c" onclick="toggleSort(this)">Cov.</td><td class="sortable bar" id="d" onclick="toggleSort(this)">Missed Branches</td><td class="sortable ctr2" id="e" onclick="toggleSort(this)">Cov.</td><td class="sortable ctr1" id="f" onclick="toggleSort(this)">Missed</td><td class="sortable ctr2" id="g" onclick="toggleSort(this)">Cxty</td><td class="sortable ctr1" id="h" onclick="toggleSort(this)">Missed</td><td class="sortable ctr2" id="i" onclick="toggleSort(this)">Lines</td><td class="sortable ctr1" id="j" onclick="toggleSort(this)">Missed</td><td class="sortable ctr2" id="k" onclick="toggleSort(this)">Methods</td></tr></thead><tfoot><t r><td>Total</td><td class="bar">0 of 5</td><td class="ctr2">100%</td><td class="bar">0 of 0</td><td class="ctr2">n/a</td><td class="ctr1">0</td><td class="ctr2">1</td><td class="ctr1">0</td><td class="ctr2">1</td><td class="ctr1">0</td><td class="ctr2">1</td></tr></tfoot><tbody><tr><td id="a0"><a href="HeaderHtmlVelocityDelegate.java.html#L85" class="el_method">build()</a></td><td class="bar" id="b0"><img src="../jacoco-resources/greenbar.gif" width="120" height="10" title="5" alt="5"/></td><td class="ctr2" id="c0">100%</td><td class="bar" id="d0"/><td class="ctr2" id="e0">n/a</td><td class="ctr1" id="f0">0</td><td class="ctr2" id="g0">1</td><td class="ctr1" id="h0">0</td><td class="ctr2" id="i0">1</td><td class="ctr1" id="j0">0</td><td class="ctr2" id="k0">1</td></tr></tbody></table><div class="footer"><span class="right">Created with <a href="http://www.jacoco.org/jacoco">JaCoCo</a> 0.8.0.201801022044</span></div></body></html> \ No newline at end of file Added: dev/commons/commons-release-plugin/1.3-RC1/site/jacoco/org.apache.commons.release.plugin.velocity/HeaderHtmlVelocityDelegate.html ============================================================================== --- dev/commons/commons-release-plugin/1.3-RC1/site/jacoco/org.apache.commons.release.plugin.velocity/HeaderHtmlVelocityDelegate.html (added) +++ dev/commons/commons-release-plugin/1.3-RC1/site/jacoco/org.apache.commons.release.plugin.velocity/HeaderHtmlVelocityDelegate.html Fri Jun 15 16:12:15 2018 @@ -0,0 +1 @@ +<?xml version="1.0" encoding="ISO-8859-1"?><!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"><html xmlns="http://www.w3.org/1999/xhtml" lang="en"><head><meta http-equiv="Content-Type" content="text/html;charset=UTF-8"/><link rel="stylesheet" href="../jacoco-resources/report.css" type="text/css"/><link rel="shortcut icon" href="../jacoco-resources/report.gif" type="image/gif"/><title>HeaderHtmlVelocityDelegate</title><script type="text/javascript" src="../jacoco-resources/sort.js"></script></head><body onload="initialSort(['breadcrumb'])"><div class="breadcrumb" id="breadcrumb"><span class="info"><a href="../jacoco-sessions.html" class="el_session">Sessions</a></span><a href="../index.html" class="el_report">Apache Commons Release Plugin</a> > <a href="index.html" class="el_package">org.apache.commons.release.plugin.velocity</a> > <span class="el_class">HeaderHtmlVelocityDelegate</span></div><h1>HeaderHtmlVelocityDelega te</h1><table class="coverage" cellspacing="0" id="coveragetable"><thead><tr><td class="sortable" id="a" onclick="toggleSort(this)">Element</td><td class="down sortable bar" id="b" onclick="toggleSort(this)">Missed Instructions</td><td class="sortable ctr2" id="c" onclick="toggleSort(this)">Cov.</td><td class="sortable bar" id="d" onclick="toggleSort(this)">Missed Branches</td><td class="sortable ctr2" id="e" onclick="toggleSort(this)">Cov.</td><td class="sortable ctr1" id="f" onclick="toggleSort(this)">Missed</td><td class="sortable ctr2" id="g" onclick="toggleSort(this)">Cxty</td><td class="sortable ctr1" id="h" onclick="toggleSort(this)">Missed</td><td class="sortable ctr2" id="i" onclick="toggleSort(this)">Lines</td><td class="sortable ctr1" id="j" onclick="toggleSort(this)">Missed</td><td class="sortable ctr2" id="k" onclick="toggleSort(this)">Methods</td></tr></thead><tfoot><tr><td>Total</td><td class="bar">0 of 34</td><td class="ctr2">100%</td><td class="bar">0 of 0</td><td c lass="ctr2">n/a</td><td class="ctr1">0</td><td class="ctr2">2</td><td class="ctr1">0</td><td class="ctr2">9</td><td class="ctr1">0</td><td class="ctr2">2</td></tr></tfoot><tbody><tr><td id="a1"><a href="HeaderHtmlVelocityDelegate.java.html#L58" class="el_method">render(Writer)</a></td><td class="bar" id="b0"><img src="../jacoco-resources/greenbar.gif" width="120" height="10" title="29" alt="29"/></td><td class="ctr2" id="c0">100%</td><td class="bar" id="d0"/><td class="ctr2" id="e0">n/a</td><td class="ctr1" id="f0">0</td><td class="ctr2" id="g0">1</td><td class="ctr1" id="h0">0</td><td class="ctr2" id="i0">8</td><td class="ctr1" id="j0">0</td><td class="ctr2" id="k0">1</td></tr><tr><td id="a0"><a href="HeaderHtmlVelocityDelegate.java.html#L48" class="el_method">builder()</a></td><td class="bar" id="b1"><img src="../jacoco-resources/greenbar.gif" width="20" height="10" title="5" alt="5"/></td><td class="ctr2" id="c1">100%</td><td class="bar" id="d1"/><td class="ctr2" id="e1">n/a</td> <td class="ctr1" id="f1">0</td><td class="ctr2" id="g1">1</td><td class="ctr1" id="h1">0</td><td class="ctr2" id="i1">1</td><td class="ctr1" id="j1">0</td><td class="ctr2" id="k1">1</td></tr></tbody></table><div class="footer"><span class="right">Created with <a href="http://www.jacoco.org/jacoco">JaCoCo</a> 0.8.0.201801022044</span></div></body></html> \ No newline at end of file Added: dev/commons/commons-release-plugin/1.3-RC1/site/jacoco/org.apache.commons.release.plugin.velocity/HeaderHtmlVelocityDelegate.java.html ============================================================================== --- dev/commons/commons-release-plugin/1.3-RC1/site/jacoco/org.apache.commons.release.plugin.velocity/HeaderHtmlVelocityDelegate.java.html (added) +++ dev/commons/commons-release-plugin/1.3-RC1/site/jacoco/org.apache.commons.release.plugin.velocity/HeaderHtmlVelocityDelegate.java.html Fri Jun 15 16:12:15 2018 @@ -0,0 +1,89 @@ +<?xml version="1.0" encoding="ISO-8859-1"?><!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"><html xmlns="http://www.w3.org/1999/xhtml" lang="en"><head><meta http-equiv="Content-Type" content="text/html;charset=UTF-8"/><link rel="stylesheet" href="../jacoco-resources/report.css" type="text/css"/><link rel="shortcut icon" href="../jacoco-resources/report.gif" type="image/gif"/><title>HeaderHtmlVelocityDelegate.java</title><link rel="stylesheet" href="../jacoco-resources/prettify.css" type="text/css"/><script type="text/javascript" src="../jacoco-resources/prettify.js"></script></head><body onload="window['PR_TAB_WIDTH']=4;prettyPrint()"><div class="breadcrumb" id="breadcrumb"><span class="info"><a href="../jacoco-sessions.html" class="el_session">Sessions</a></span><a href="../index.html" class="el_report">Apache Commons Release Plugin</a> > <a href="index.source.html" class="el_package">org.apache.commons.release.plugin.v elocity</a> > <span class="el_source">HeaderHtmlVelocityDelegate.java</span></div><h1>HeaderHtmlVelocityDelegate.java</h1><pre class="source lang-java linenums">/* + * 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. + */ +package org.apache.commons.release.plugin.velocity; + +import java.io.Writer; +import org.apache.velocity.Template; +import org.apache.velocity.VelocityContext; +import org.apache.velocity.app.VelocityEngine; +import org.apache.velocity.runtime.RuntimeConstants; +import org.apache.velocity.runtime.resource.loader.ClasspathResourceLoader; + +/** + * This class' purpose is to generate the <code>HEADER.html</code> that moves along with the + * release for the sake of downloading the release from the distribution area. + * + * @author chtompki + * @since 1.3 + */ +public class HeaderHtmlVelocityDelegate { + /** The location of the velocity tempate for this class. */ + private static final String TEMPLATE = "resources/org/apache/commons/release/plugin" + + "/velocity/HEADER.vm"; + /** The private constructor to be used by the {@link HeaderHtmlVelocityDelegateBuilder}. */ + private HeaderHtmlVelocityDelegate() { + super(); + } + + /** + * For instantiating our {@link HeaderHtmlVelocityDelegate} using the {@link HeaderHtmlVelocityDelegateBuilder}. + * + * @return a {@link HeaderHtmlVelocityDelegateBuilder}. + */ + public static HeaderHtmlVelocityDelegateBuilder builder() { +<span class="fc" id="L48"> return new HeaderHtmlVelocityDelegateBuilder();</span> + } + + /** + * Builds the HEADER.vm velocity template to the writer passed in. + * + * @param writer any {@link Writer} that we wish to have the filled velocity template written to. + * @return the {@link Writer} that we've filled out the template into. + */ + public Writer render(Writer writer) { +<span class="fc" id="L58"> VelocityEngine ve = new VelocityEngine();</span> +<span class="fc" id="L59"> ve.setProperty(RuntimeConstants.RESOURCE_LOADER, "classpath");</span> +<span class="fc" id="L60"> ve.setProperty("classpath.resource.loader.class", ClasspathResourceLoader.class.getName());</span> +<span class="fc" id="L61"> ve.init();</span> +<span class="fc" id="L62"> Template template = ve.getTemplate(TEMPLATE);</span> +<span class="fc" id="L63"> VelocityContext context = new VelocityContext();</span> +<span class="fc" id="L64"> template.merge(context, writer);</span> +<span class="fc" id="L65"> return writer;</span> + } + + /** + * A builder class for instantiation of the {@link HeaderHtmlVelocityDelegate}. + */ + public static class HeaderHtmlVelocityDelegateBuilder { + + /** + * Private constructor so that we can have a proper builder pattern. + */ + private HeaderHtmlVelocityDelegateBuilder() { + super(); + } + + /** + * Builds up the {@link ReadmeHtmlVelocityDelegate} from the previously set parameters. + * @return a new {@link ReadmeHtmlVelocityDelegate}. + */ + public HeaderHtmlVelocityDelegate build() { +<span class="fc" id="L85"> return new HeaderHtmlVelocityDelegate();</span> + } + } +} +</pre><div class="footer"><span class="right">Created with <a href="http://www.jacoco.org/jacoco">JaCoCo</a> 0.8.0.201801022044</span></div></body></html> \ No newline at end of file Added: dev/commons/commons-release-plugin/1.3-RC1/site/jacoco/org.apache.commons.release.plugin.velocity/ReadmeHtmlVelocityDelegate$ReadmeHtmlVelocityDelegateBuilder.html ============================================================================== --- dev/commons/commons-release-plugin/1.3-RC1/site/jacoco/org.apache.commons.release.plugin.velocity/ReadmeHtmlVelocityDelegate$ReadmeHtmlVelocityDelegateBuilder.html (added) +++ dev/commons/commons-release-plugin/1.3-RC1/site/jacoco/org.apache.commons.release.plugin.velocity/ReadmeHtmlVelocityDelegate$ReadmeHtmlVelocityDelegateBuilder.html Fri Jun 15 16:12:15 2018 @@ -0,0 +1 @@ +<?xml version="1.0" encoding="ISO-8859-1"?><!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"><html xmlns="http://www.w3.org/1999/xhtml" lang="en"><head><meta http-equiv="Content-Type" content="text/html;charset=UTF-8"/><link rel="stylesheet" href="../jacoco-resources/report.css" type="text/css"/><link rel="shortcut icon" href="../jacoco-resources/report.gif" type="image/gif"/><title>ReadmeHtmlVelocityDelegate.ReadmeHtmlVelocityDelegateBuilder</title><script type="text/javascript" src="../jacoco-resources/sort.js"></script></head><body onload="initialSort(['breadcrumb'])"><div class="breadcrumb" id="breadcrumb"><span class="info"><a href="../jacoco-sessions.html" class="el_session">Sessions</a></span><a href="../index.html" class="el_report">Apache Commons Release Plugin</a> > <a href="index.html" class="el_package">org.apache.commons.release.plugin.velocity</a> > <span class="el_class">ReadmeHtmlVelocityDelegate.Readme HtmlVelocityDelegateBuilder</span></div><h1>ReadmeHtmlVelocityDelegate.ReadmeHtmlVelocityDelegateBuilder</h1><table class="coverage" cellspacing="0" id="coveragetable"><thead><tr><td class="sortable" id="a" onclick="toggleSort(this)">Element</td><td class="down sortable bar" id="b" onclick="toggleSort(this)">Missed Instructions</td><td class="sortable ctr2" id="c" onclick="toggleSort(this)">Cov.</td><td class="sortable bar" id="d" onclick="toggleSort(this)">Missed Branches</td><td class="sortable ctr2" id="e" onclick="toggleSort(this)">Cov.</td><td class="sortable ctr1" id="f" onclick="toggleSort(this)">Missed</td><td class="sortable ctr2" id="g" onclick="toggleSort(this)">Cxty</td><td class="sortable ctr1" id="h" onclick="toggleSort(this)">Missed</td><td class="sortable ctr2" id="i" onclick="toggleSort(this)">Lines</td><td class="sortable ctr1" id="j" onclick="toggleSort(this)">Missed</td><td class="sortable ctr2" id="k" onclick="toggleSort(this)">Methods</td></tr></thead><tfoot><t r><td>Total</td><td class="bar">0 of 26</td><td class="ctr2">100%</td><td class="bar">0 of 0</td><td class="ctr2">n/a</td><td class="ctr1">0</td><td class="ctr2">4</td><td class="ctr1">0</td><td class="ctr2">7</td><td class="ctr1">0</td><td class="ctr2">4</td></tr></tfoot><tbody><tr><td id="a0"><a href="ReadmeHtmlVelocityDelegate.java.html#L151" class="el_method">build()</a></td><td class="bar" id="b0"><img src="../jacoco-resources/greenbar.gif" width="120" height="10" title="11" alt="11"/></td><td class="ctr2" id="c0">100%</td><td class="bar" id="d0"/><td class="ctr2" id="e0">n/a</td><td class="ctr1" id="f0">0</td><td class="ctr2" id="g0">1</td><td class="ctr1" id="h0">0</td><td class="ctr2" id="i3">1</td><td class="ctr1" id="j0">0</td><td class="ctr2" id="k0">1</td></tr><tr><td id="a1"><a href="ReadmeHtmlVelocityDelegate.java.html#L122" class="el_method">withArtifactId(String)</a></td><td class="bar" id="b1"><img src="../jacoco-resources/greenbar.gif" width="54" height="10" title= "5" alt="5"/></td><td class="ctr2" id="c1">100%</td><td class="bar" id="d1"/><td class="ctr2" id="e1">n/a</td><td class="ctr1" id="f1">0</td><td class="ctr2" id="g1">1</td><td class="ctr1" id="h1">0</td><td class="ctr2" id="i0">2</td><td class="ctr1" id="j1">0</td><td class="ctr2" id="k1">1</td></tr><tr><td id="a3"><a href="ReadmeHtmlVelocityDelegate.java.html#L132" class="el_method">withVersion(String)</a></td><td class="bar" id="b2"><img src="../jacoco-resources/greenbar.gif" width="54" height="10" title="5" alt="5"/></td><td class="ctr2" id="c2">100%</td><td class="bar" id="d2"/><td class="ctr2" id="e2">n/a</td><td class="ctr1" id="f2">0</td><td class="ctr2" id="g2">1</td><td class="ctr1" id="h2">0</td><td class="ctr2" id="i1">2</td><td class="ctr1" id="j2">0</td><td class="ctr2" id="k2">1</td></tr><tr><td id="a2"><a href="ReadmeHtmlVelocityDelegate.java.html#L142" class="el_method">withSiteUrl(String)</a></td><td class="bar" id="b3"><img src="../jacoco-resources/greenbar.gif" wi dth="54" height="10" title="5" alt="5"/></td><td class="ctr2" id="c3">100%</td><td class="bar" id="d3"/><td class="ctr2" id="e3">n/a</td><td class="ctr1" id="f3">0</td><td class="ctr2" id="g3">1</td><td class="ctr1" id="h3">0</td><td class="ctr2" id="i2">2</td><td class="ctr1" id="j3">0</td><td class="ctr2" id="k3">1</td></tr></tbody></table><div class="footer"><span class="right">Created with <a href="http://www.jacoco.org/jacoco">JaCoCo</a> 0.8.0.201801022044</span></div></body></html> \ No newline at end of file Added: dev/commons/commons-release-plugin/1.3-RC1/site/jacoco/org.apache.commons.release.plugin.velocity/ReadmeHtmlVelocityDelegate.html ============================================================================== --- dev/commons/commons-release-plugin/1.3-RC1/site/jacoco/org.apache.commons.release.plugin.velocity/ReadmeHtmlVelocityDelegate.html (added) +++ dev/commons/commons-release-plugin/1.3-RC1/site/jacoco/org.apache.commons.release.plugin.velocity/ReadmeHtmlVelocityDelegate.html Fri Jun 15 16:12:15 2018 @@ -0,0 +1 @@ +<?xml version="1.0" encoding="ISO-8859-1"?><!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"><html xmlns="http://www.w3.org/1999/xhtml" lang="en"><head><meta http-equiv="Content-Type" content="text/html;charset=UTF-8"/><link rel="stylesheet" href="../jacoco-resources/report.css" type="text/css"/><link rel="shortcut icon" href="../jacoco-resources/report.gif" type="image/gif"/><title>ReadmeHtmlVelocityDelegate</title><script type="text/javascript" src="../jacoco-resources/sort.js"></script></head><body onload="initialSort(['breadcrumb'])"><div class="breadcrumb" id="breadcrumb"><span class="info"><a href="../jacoco-sessions.html" class="el_session">Sessions</a></span><a href="../index.html" class="el_report">Apache Commons Release Plugin</a> > <a href="index.html" class="el_package">org.apache.commons.release.plugin.velocity</a> > <span class="el_class">ReadmeHtmlVelocityDelegate</span></div><h1>ReadmeHtmlVelocityDelega te</h1><table class="coverage" cellspacing="0" id="coveragetable"><thead><tr><td class="sortable" id="a" onclick="toggleSort(this)">Element</td><td class="down sortable bar" id="b" onclick="toggleSort(this)">Missed Instructions</td><td class="sortable ctr2" id="c" onclick="toggleSort(this)">Cov.</td><td class="sortable bar" id="d" onclick="toggleSort(this)">Missed Branches</td><td class="sortable ctr2" id="e" onclick="toggleSort(this)">Cov.</td><td class="sortable ctr1" id="f" onclick="toggleSort(this)">Missed</td><td class="sortable ctr2" id="g" onclick="toggleSort(this)">Cxty</td><td class="sortable ctr1" id="h" onclick="toggleSort(this)">Missed</td><td class="sortable ctr2" id="i" onclick="toggleSort(this)">Lines</td><td class="sortable ctr1" id="j" onclick="toggleSort(this)">Missed</td><td class="sortable ctr2" id="k" onclick="toggleSort(this)">Methods</td></tr></thead><tfoot><tr><td>Total</td><td class="bar">0 of 101</td><td class="ctr2">100%</td><td class="bar">0 of 0</td><td class="ctr2">n/a</td><td class="ctr1">0</td><td class="ctr2">3</td><td class="ctr1">0</td><td class="ctr2">25</td><td class="ctr1">0</td><td class="ctr2">3</td></tr></tfoot><tbody><tr><td id="a2"><a href="ReadmeHtmlVelocityDelegate.java.html#L75" class="el_method">render(Writer)</a></td><td class="bar" id="b0"><img src="../jacoco-resources/greenbar.gif" width="120" height="10" title="84" alt="84"/></td><td class="ctr2" id="c0">100%</td><td class="bar" id="d0"/><td class="ctr2" id="e0">n/a</td><td class="ctr1" id="f0">0</td><td class="ctr2" id="g0">1</td><td class="ctr1" id="h0">0</td><td class="ctr2" id="i0">19</td><td class="ctr1" id="j0">0</td><td class="ctr2" id="k0">1</td></tr><tr><td id="a1"><a href="ReadmeHtmlVelocityDelegate.java.html#L52" class="el_method">ReadmeHtmlVelocityDelegate(String, String, String)</a></td><td class="bar" id="b1"><img src="../jacoco-resources/greenbar.gif" width="17" height="10" title="12" alt="12"/></td><td class="ctr2" id="c1">100%</td><td class="b ar" id="d1"/><td class="ctr2" id="e1">n/a</td><td class="ctr1" id="f1">0</td><td class="ctr2" id="g1">1</td><td class="ctr1" id="h1">0</td><td class="ctr2" id="i1">5</td><td class="ctr1" id="j1">0</td><td class="ctr2" id="k1">1</td></tr><tr><td id="a0"><a href="ReadmeHtmlVelocityDelegate.java.html#L64" class="el_method">builder()</a></td><td class="bar" id="b2"><img src="../jacoco-resources/greenbar.gif" width="7" height="10" title="5" alt="5"/></td><td class="ctr2" id="c2">100%</td><td class="bar" id="d2"/><td class="ctr2" id="e2">n/a</td><td class="ctr1" id="f2">0</td><td class="ctr2" id="g2">1</td><td class="ctr1" id="h2">0</td><td class="ctr2" id="i2">1</td><td class="ctr1" id="j2">0</td><td class="ctr2" id="k2">1</td></tr></tbody></table><div class="footer"><span class="right">Created with <a href="http://www.jacoco.org/jacoco">JaCoCo</a> 0.8.0.201801022044</span></div></body></html> \ No newline at end of file