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

问题描述 投票:0回答:1

我是 Maven 新手,我正在尝试构建我的第一个 Maven 插件, 在我的插件中,我想确定项目依赖项的路径,但我没有看到访问

localRepository
的路径。

我尝试过以下方法:

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

但是在调用

getLocalRepository()
时它们都返回null,我也在网上到处搜索但没有找到任何关于它是如何完成的线索。

这是我正在运行插件的项目的 pom:

<?xml version="1.0" encoding="UTF-8"?>
<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>

  <groupId>com.evalia.tools</groupId>
  <artifactId>evalia-project</artifactId>
  <version>1.0</version>
  <packaging>jar</packaging>
  <name>Evalia project</name>

  <properties>
    <author>Developer one</author>
  </properties>

  <dependencies>
    <dependency>
      <groupId>org.postgresql</groupId>
      <artifactId>postgresql</artifactId>
      <version>42.5.0</version>
      <scope>compile</scope>
    </dependency>
  </dependencies>

  <build>
    <plugins>
      <plugin>
        <groupId>com.evalia.tools</groupId>
        <artifactId>tools-maven-plugin</artifactId>
      </plugin>
    </plugins>
  </build>
</project>

有什么想法吗?

谢谢你。

java maven maven-plugin
1个回答
0
投票

解决方案如下:

package dummy;

import org.apache.maven.plugin.AbstractMojo;
import org.apache.maven.plugin.MojoExecutionException;
import org.apache.maven.plugin.MojoFailureException;
import org.apache.maven.plugins.annotations.Mojo;
import org.apache.maven.plugins.annotations.Parameter;
import org.eclipse.aether.RepositorySystemSession;

@Mojo(name = "dummy")
public class DummyMojo extends AbstractMojo
{
    @Parameter(defaultValue = "${repositorySystemSession}", readonly = true)
    private RepositorySystemSession repoSession;
    
    @Override
    public void execute() throws MojoExecutionException, MojoFailureException
    {
        getLog().info("" + repoSession.getLocalRepository().getBasedir());
    }
}
© www.soinside.com 2019 - 2024. All rights reserved.