java 获取maven插件中本地存储库的路径

jv4diomz  于 2024-01-05  发布在  Java
关注(0)|答案(1)|浏览(225)

我是新的maven和我试图建立我的第一个maven插件,在我的插件,我想确定的路径项目的依赖,但我没有看到无论如何访问路径的localRepository .
我尝试了以下方法:

  • MavenSession.getLocalRepository().getUrl()
  • MavenSession.getRequest().getLocalRepositoryPath().getAbsolutePath()
  • MavenSession.getRepositorySession().getLocalRepository().getBasedir().getAbsolutePath()

但是它们在调用getLocalRepository()时都返回null,我也在网上到处搜索,但没有找到任何关于它是如何完成的线索。
这里是我运行我的插件的项目的pom:

  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <project xmlns="http://maven.apache.org/POM/4.0.0"
  3. 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">
  4. <modelVersion>4.0.0</modelVersion>
  5. <groupId>com.evalia.tools</groupId>
  6. <artifactId>evalia-project</artifactId>
  7. <version>1.0</version>
  8. <packaging>jar</packaging>
  9. <name>Evalia project</name>
  10. <properties>
  11. <author>Developer one</author>
  12. </properties>
  13. <dependencies>
  14. <dependency>
  15. <groupId>org.postgresql</groupId>
  16. <artifactId>postgresql</artifactId>
  17. <version>42.5.0</version>
  18. <scope>compile</scope>
  19. </dependency>
  20. </dependencies>
  21. <build>
  22. <plugins>
  23. <plugin>
  24. <groupId>com.evalia.tools</groupId>
  25. <artifactId>tools-maven-plugin</artifactId>
  26. </plugin>
  27. </plugins>
  28. </build>
  29. </project>

字符串
这是我的基本目标,其他目标应该扩展:

  1. import java.net.URL;
  2. import java.net.URLClassLoader;
  3. import java.util.ArrayList;
  4. import java.util.List;
  5. import org.apache.maven.execution.MavenSession;
  6. import org.apache.maven.model.Dependency;
  7. import org.apache.maven.plugin.AbstractMojo;
  8. import org.apache.maven.plugin.MojoExecutionException;
  9. import org.apache.maven.plugin.MojoFailureException;
  10. import org.apache.maven.plugins.annotations.Parameter;
  11. import org.apache.maven.project.MavenProject;
  12. /**
  13. * Loads project dependencies which is run on.
  14. */
  15. public abstract class AbstractDependencyLoaderMojo extends AbstractMojo {
  16. /**
  17. * the pom model as MavenProject
  18. */
  19. @Parameter(defaultValue = "${session}", property = "session", required = true, readonly = true)
  20. private MavenSession session;
  21. /**
  22. * filters dependencies to be loaded using their groupIds
  23. */
  24. @Parameter(defaultValue = "", property = "groups", required = false)
  25. private String groupIds;
  26. /**
  27. * filters dependencies to be loaded using their artifactIds
  28. */
  29. @Parameter(defaultValue = "", property = "artifacts", required = false)
  30. private String artifactIds;
  31. private void injectDependencies(MavenProject project, String repoPath) throws MojoFailureException, MojoExecutionException {
  32. List<Dependency> dependencies = project.getDependencies();
  33. GroupIdFilter groupIdFilter = new GroupIdFilter(groupIds);
  34. ArtifactIdFilter artifactIdFilter = new ArtifactIdFilter(artifactIds);
  35. if(groupIdFilter.isPresent()){
  36. dependencies.removeIf(groupIdFilter);
  37. }
  38. if(artifactIdFilter.isPresent()){
  39. dependencies.removeIf(artifactIdFilter);
  40. }
  41. List<URL> urls = new ArrayList<>();
  42. for(Dependency dependency: dependencies){
  43. urls.add(ClasspathUtils.mapToUrl(repoPath, dependency));
  44. }
  45. updateClasspath(urls.toArray(new URL[urls.size()]));
  46. }
  47. @SuppressWarnings("resource")
  48. private void updateClasspath(URL... urls) throws MojoExecutionException{
  49. try {
  50. ClassLoader parent = Thread.currentThread().getContextClassLoader();
  51. URLClassLoader urlClassLoader = new URLClassLoader(urls, parent);
  52. Thread.currentThread().setContextClassLoader(urlClassLoader);
  53. } catch (Exception e) {
  54. throw new MojoExecutionException("Something went wrong, " +
  55. "see the below stacktrace for more information!", e);
  56. }
  57. }
  58. public void execute() throws MojoFailureException, MojoExecutionException {
  59. MavenProject project = session.getTopLevelProject();
  60. String localRepoPath = null; //Here i want to resolve the path to the local repository
  61. try {
  62. injectDependencies(project, localRepoPath);
  63. postExecute(project);
  64. } catch (Exception e) {
  65. throw new MojoFailureException("Something went wrong", e);
  66. }
  67. }
  68. public abstract void postExecute(MavenProject project) throws MojoFailureException, MojoExecutionException;
  69. }


有什么想法吗?
谢谢你

b1zrtrql

b1zrtrql1#

下面是一个解决方案:

MOJO类

  1. package com.acme;
  2. import org.apache.maven.plugin.AbstractMojo;
  3. import org.apache.maven.plugin.MojoExecutionException;
  4. import org.apache.maven.plugin.MojoFailureException;
  5. import org.apache.maven.plugins.annotations.Mojo;
  6. import org.apache.maven.plugins.annotations.Parameter;
  7. import org.eclipse.aether.RepositorySystemSession;
  8. @Mojo(name = "dummy", requiresProject = false)
  9. public class DummyMojo extends AbstractMojo
  10. {
  11. @Parameter(defaultValue = "${repositorySystemSession}", readonly = true)
  12. protected RepositorySystemSession repoSession;
  13. @Override
  14. public void execute() throws MojoExecutionException, MojoFailureException
  15. {
  16. getLog().info("" + repoSession.getLocalRepository().getBasedir());
  17. }
  18. }

字符串

POM

  1. <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">
  2. <modelVersion>4.0.0</modelVersion>
  3. <groupId>com.acme</groupId>
  4. <artifactId>dummy-maven-plugin</artifactId>
  5. <version>1-SNAPSHOT</version>
  6. <packaging>maven-plugin</packaging>
  7. <properties>
  8. <maven.compiler.source>1.8</maven.compiler.source>
  9. <maven.compiler.target>1.8</maven.compiler.target>
  10. <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
  11. </properties>
  12. <build>
  13. <defaultGoal>install</defaultGoal>
  14. <pluginManagement>
  15. <plugins>
  16. <plugin>
  17. <groupId>org.apache.maven.plugins</groupId>
  18. <artifactId>maven-compiler-plugin</artifactId>
  19. <version>3.10.1</version>
  20. </plugin>
  21. <plugin>
  22. <groupId>org.apache.maven.plugins</groupId>
  23. <artifactId>maven-plugin-plugin</artifactId>
  24. <version>3.7.1</version>
  25. </plugin>
  26. <plugin>
  27. <groupId>org.apache.maven.plugins</groupId>
  28. <artifactId>maven-resources-plugin</artifactId>
  29. <version>3.2.0</version>
  30. </plugin>
  31. </plugins>
  32. </pluginManagement>
  33. </build>
  34. <dependencies>
  35. <dependency>
  36. <groupId>org.apache.maven</groupId>
  37. <artifactId>maven-core</artifactId>
  38. <version>3.8.7</version>
  39. <scope>provided</scope>
  40. </dependency>
  41. <dependency>
  42. <groupId>org.apache.maven</groupId>
  43. <artifactId>maven-plugin-api</artifactId>
  44. <version>3.8.7</version>
  45. <scope>provided</scope>
  46. </dependency>
  47. <dependency>
  48. <groupId>org.apache.maven.plugin-tools</groupId>
  49. <artifactId>maven-plugin-annotations</artifactId>
  50. <version>3.7.0</version>
  51. <scope>provided</scope>
  52. </dependency>
  53. </dependencies>
  54. </project>


在运行mvn install之后,我可以使用mvn com.acme:dummy-maven-plugin:1-SNAPSHOT:dummy执行插件,并且它正确地输出路径到我的本地存储库。

展开查看全部

相关问题