1
在詹金斯「Plugin tutorial」頁寫入,要建立你需要編輯Maven的設置(Setting Up Environment部分)的插件。 是否有可能不改變Maven設置,但編輯pom文件或做這樣的事情而不是它?配置構建詹金斯
謝謝!
在詹金斯「Plugin tutorial」頁寫入,要建立你需要編輯Maven的設置(Setting Up Environment部分)的插件。 是否有可能不改變Maven設置,但編輯pom文件或做這樣的事情而不是它?配置構建詹金斯
謝謝!
修改pom.xml的是也沒關係。 e.g,
<?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/maven-v4_0_0.xsd">
<modelVersion>4.0.0</modelVersion>
<parent>
<groupId>org.jenkins-ci.plugins</groupId>
<artifactId>plugin</artifactId>
<!-- Baseline Jenkins version you use to build and test the plugin. Users
must have this version or newer to run. -->
<version>1.589</version>
<relativePath />
</parent>
<groupId>com.xxx.xxx</groupId>
<artifactId>foo</artifactId>
<version>1.0.0</version>
<packaging>hpi</packaging>
<name>bar</name>
<description>xxx xxx xxx xxx xxx</description>
<licenses>
<license>
<name>MIT License</name>
<url>http://opensource.org/licenses/MIT</url>
</license>
</licenses>
<repositories>
<repository>
<id>repo.jenkins-ci.org</id>
<url>http://repo.jenkins-ci.org/public/</url>
</repository>
</repositories>
<pluginRepositories>
<pluginRepository>
<id>repo.jenkins-ci.org</id>
<url>http://repo.jenkins-ci.org/public/</url>
</pluginRepository>
</pluginRepositories>
<dependencies>
<dependency>
<groupId>com.google.code.gson</groupId>
<artifactId>gson</artifactId>
<version>2.3.1</version>
</dependency>
</dependencies>
這似乎是我想要的東西!請告訴我,是否需要在pom文件中聲明''和'',或者沒有其中一個就可以? –