maven 如何从jenkins作业中运行位于本地驱动器中的jar?

n6lpvg4x  于 2023-10-17  发布在  Maven
关注(0)|答案(1)|浏览(118)

我创建了一个作业,它使用maven创建一个jar &这个jar存储在本地驱动器中。我想创建一个运行该jar的新作业。
pom.xml供参考:

<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>org.example</groupId>
  <artifactId>Backend_Automation</artifactId>
  <version>1.0-SNAPSHOT</version>
  <build>
    <plugins>
      <plugin>
        <groupId>org.apache.maven.plugins</groupId>
        <artifactId>maven-compiler-plugin</artifactId>
        <configuration>
          <source>11</source>
          <target>11</target>
        </configuration>
      </plugin>
      <plugin>
        <groupId>org.apache.maven.plugins</groupId>
        <artifactId>maven-assembly-plugin</artifactId>
        <configuration>
          <descriptorRefs>
            <descriptorRef>jar-with-dependencies</descriptorRef>
          </descriptorRefs>
          <archive>
            <manifest>
              <mainClass>com.vodafone.hackathon.runner.CoreRunner</mainClass>
            </manifest>
          </archive>
        </configuration>
        <executions>
          <execution>
            <id>make-assembly</id>
            <phase>package</phase>
            <goals>
              <goal>single</goal>
            </goals>
          </execution>
        </executions>
      </plugin>

    </plugins>
  </build>
  <packaging>jar</packaging>

  <name>Backend_Automation</name>
  <url>http://maven.apache.org</url>

  <properties>
    <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
  </properties>

  <dependencies>
    <dependency>
      <groupId>junit</groupId>
      <artifactId>junit</artifactId>
      <version>3.8.1</version>
    </dependency>
    
  </dependencies>
</project>

这个项目在github repository上签入。第一个作业从github仓库构建项目,并在作业中提到的本地位置构建项目和创建jar。我尝试添加shell命令,但它不起作用。

5vf7fwbs

5vf7fwbs1#

如果jar安装在运行jenkins作业的同一台机器上,那么您可以使用硬编码路径调用shell。
例如

pipeline {
  agent { label '...' }    <-- Need to specify agent that has the jar
  stages {
    stage('Run Jar') {
       sh "java /var/lib/mylib/mylib-1.0.0.jar ..."
    }
  }
}

但最佳实践是让一个作业运行“mvn clean deploy”将jar文件上传到远程存储库(nexus或artifactory),然后让另一个作业将jar工件下载到其工作区并执行jar:

pipeline {
  agent { label 'os-linux' }   <-- any agent running linux
  stages {
    stage('Install Jar') {
      ... download jar from artifactory to e.g. ${WORKSPACE}/mylib.jar ..  
    }
    stage('Run Jar') {
      sh "java ${WORKSPACE}/mylib.jar ..."
    }
  }
}

这将允许jenkins作业在多个代理上运行(而不是上面第一个示例中非常特定的单个代理)。
“download jar from artifactory”注解可以使用curl命令实现,或者您可以使用artifactory插件来定义下载规范等。

相关问题