Skip to content

Commit

Permalink
Fix #244 Move LicenseDownloader to org.codehaus.mojo.license.download
Browse files Browse the repository at this point in the history
  • Loading branch information
ppalaga committed Feb 8, 2019
1 parent 57e0963 commit 9d60d50
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -37,12 +37,12 @@
import org.codehaus.mojo.license.api.ResolvedProjectDependencies;
import org.codehaus.mojo.license.download.Cache;
import org.codehaus.mojo.license.download.FileNameEntry;
import org.codehaus.mojo.license.download.LicenseDownloader;
import org.codehaus.mojo.license.download.PreferredFileNames;
import org.codehaus.mojo.license.download.LicenseDownloader.LicenseDownloadResult;
import org.codehaus.mojo.license.model.ProjectLicense;
import org.codehaus.mojo.license.model.ProjectLicenseInfo;
import org.codehaus.mojo.license.utils.FileUtil;
import org.codehaus.mojo.license.utils.LicenseDownloader;
import org.codehaus.mojo.license.utils.LicenseDownloader.LicenseDownloadResult;
import org.codehaus.mojo.license.utils.LicenseSummaryReader;
import org.codehaus.mojo.license.utils.LicenseSummaryWriter;
import org.codehaus.mojo.license.utils.MojoHelper;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@
import java.util.Map;
import java.util.Map.Entry;

import org.codehaus.mojo.license.utils.LicenseDownloader.LicenseDownloadResult;
import org.codehaus.mojo.license.download.LicenseDownloader.LicenseDownloadResult;

/**
* A simple {@link HashMap} based in-memory cache for storing {@link LicenseDownloadResult}s.
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package org.codehaus.mojo.license.utils;
package org.codehaus.mojo.license.download;

/*
* #%L
Expand Down Expand Up @@ -63,7 +63,7 @@
import org.apache.maven.plugin.MojoFailureException;
import org.apache.maven.plugin.logging.Log;
import org.apache.maven.settings.Proxy;
import org.codehaus.mojo.license.download.FileNameEntry;
import org.codehaus.mojo.license.utils.FileUtil;

/**
* Utilities for downloading remote license files.
Expand Down

0 comments on commit 9d60d50

Please sign in to comment.