gpt4 book ai didi

java - CI/CD 上的 Maven 初始化

转载 作者:行者123 更新时间:2023-12-02 10:05:49 26 4
gpt4 key购买 nike

嗨,我已将 oracle jdbc jar 添加到我的 Spring Boot 项目中。这个想法是 jar 应该自动添加到 m2 中。我们应该运行该项目并进行构建。我们按照第一种方法自动安装jar。

http://roufid.com/3-ways-to-add-local-jar-to-maven-project/

它就像一个魅力。但是当我们在 bitbucket 管道中运行它时。我们收到 oracle dependency not found 错误。由于 Maven 未初始化。

<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>

.....

<dependency>
<groupId>com.oracle</groupId>
<artifactId>ojdbc7</artifactId>
<version>12.1.0.2</version>
</dependency>
.......

</dependencies>
<build>
<pluginManagement>
<plugins>
<plugin>
<groupId>org.eclipse.m2e</groupId>
<artifactId>lifecycle-mapping</artifactId>
<version>1.0.0</version>
<configuration>
<lifecycleMappingMetadata>
<pluginExecutions>
<pluginExecution>
<pluginExecutionFilter>
<groupId>org.codehaus.mojo</groupId>
<artifactId>aspectj-maven-plugin</artifactId>
<versionRange>[1.0,)</versionRange>
<goals>
<goal>test-compile</goal>
<goal>compile</goal>
</goals>
</pluginExecutionFilter>
<action>
<execute />
</action>
</pluginExecution>
<pluginExecution>
<pluginExecutionFilter>
<groupId>
org.apache.maven.plugins
</groupId>
<artifactId>
maven-install-plugin
</artifactId>
<versionRange>
[2.5,)
</versionRange>
<goals>
<goal>install-file</goal>
</goals>
</pluginExecutionFilter>
<action>
<execute>
<runOnIncremental>false</runOnIncremental>
</execute>
</action>
</pluginExecution>
</pluginExecutions>
</lifecycleMappingMetadata>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-install-plugin</artifactId>
<version>2.5</version>
<executions>
<execution>
<phase>initialize</phase>
<goals>
<goal>install-file</goal>
</goals>
<configuration>
<groupId>com.oracle</groupId>
<artifactId>ojdbc7</artifactId>
<version>12.1.0.2</version>
<packaging>jar</packaging>
<file>${project.basedir}/lib/ojdbc7-12.1.0.2.jar</file>
</configuration>
</execution>
</executions>
</plugin>
....
</plugins>
</pluginManagement>
</build>

我尝试在进行 mvn build 时添加以下 -U 。但没有成功。是否可以从命令触发maven初始化?

mvn -U -f pom.xml clean install

mvn dependency:resolve -U
mvn -f pom.xml clean install

最佳答案

最好的解决方案是拥有自己的 Nexus/Artifactory 服务器来管理所有 Artifact 。那么您就不需要进行 Artifact 的本地安装。

关于java - CI/CD 上的 Maven 初始化,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/55341434/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com