|
| 1 | +<?xml version="1.0" encoding="UTF-8"?> |
| 2 | +<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 https://maven.apache.org/xsd/maven-4.0.0.xsd"> |
| 3 | + <modelVersion>4.0.0</modelVersion> |
| 4 | + |
| 5 | + <parent> |
| 6 | + <groupId>org.jenkins-ci.plugins</groupId> |
| 7 | + <artifactId>plugin</artifactId> |
| 8 | + <version>4.88</version> |
| 9 | + <relativePath /> |
| 10 | + </parent> |
| 11 | + |
| 12 | + <groupId>io.jenkins.plugins</groupId> |
| 13 | + <artifactId>replace-by-api-plugin</artifactId> |
| 14 | + <version>${revision}${changelist}</version> |
| 15 | + <packaging>hpi</packaging> |
| 16 | + |
| 17 | + <name>TODO Plugin</name> |
| 18 | + <url>https://github.com/jenkinsci/${project.artifactId}-plugin</url> |
| 19 | + <licenses> |
| 20 | + <license> |
| 21 | + <name>MIT License</name> |
| 22 | + <url>https://opensource.org/license/mit/</url> |
| 23 | + </license> |
| 24 | + </licenses> |
| 25 | + <scm child.scm.connection.inherit.append.path="false" child.scm.developerConnection.inherit.append.path="false" child.scm.url.inherit.append.path="false"> |
| 26 | + <connection>scm:git:https://github.com/${gitHubRepo}</connection> |
| 27 | + <developerConnection>scm:git:https://github.com/${gitHubRepo}</developerConnection> |
| 28 | + <tag>${scmTag}</tag> |
| 29 | + <url>https://github.com/${gitHubRepo}</url> |
| 30 | + </scm> |
| 31 | + |
| 32 | + <properties> |
| 33 | + <revision>1.0</revision> |
| 34 | + <changelist>-SNAPSHOT</changelist> |
| 35 | + <!-- https://www.jenkins.io/doc/developer/plugin-development/choosing-jenkins-baseline/ --> |
| 36 | + <jenkins.baseline>2.452</jenkins.baseline> |
| 37 | + <jenkins.version>${jenkins.baseline}.4</jenkins.version> |
| 38 | + <gitHubRepo>jenkinsci/${project.artifactId}-plugin</gitHubRepo> |
| 39 | + |
| 40 | + <spotless.check.skip>false</spotless.check.skip> |
| 41 | + </properties> |
| 42 | + |
| 43 | + <dependencyManagement> |
| 44 | + <dependencies> |
| 45 | + <dependency> |
| 46 | + <groupId>io.jenkins.tools.bom</groupId> |
| 47 | + <artifactId>bom-${jenkins.baseline}.x</artifactId> |
| 48 | + <version>3814.v9563d972079a_</version> |
| 49 | + <type>pom</type> |
| 50 | + <scope>import</scope> |
| 51 | + </dependency> |
| 52 | + </dependencies> |
| 53 | + </dependencyManagement> |
| 54 | + |
| 55 | + <!-- This should be replaced --> |
| 56 | + <dependencies> |
| 57 | + <dependency> |
| 58 | + <groupId>com.google.code.gson</groupId> |
| 59 | + <artifactId>gson</artifactId> |
| 60 | + <version>2.10.1</version> |
| 61 | + </dependency> |
| 62 | + |
| 63 | + <!-- This should not be replaced --> |
| 64 | + <dependency> |
| 65 | + <groupId>org.apache.commons</groupId> |
| 66 | + <artifactId>commons-compress</artifactId> |
| 67 | + <version>1.26.1</version> |
| 68 | + </dependency> |
| 69 | + <dependency> |
| 70 | + <groupId>org.json</groupId> |
| 71 | + <artifactId>json</artifactId> |
| 72 | + <version>20240303</version> |
| 73 | + </dependency> |
| 74 | + </dependencies> |
| 75 | + |
| 76 | + <repositories> |
| 77 | + <repository> |
| 78 | + <id>repo.jenkins-ci.org</id> |
| 79 | + <url>https://repo.jenkins-ci.org/public/</url> |
| 80 | + </repository> |
| 81 | + </repositories> |
| 82 | + <pluginRepositories> |
| 83 | + <pluginRepository> |
| 84 | + <id>repo.jenkins-ci.org</id> |
| 85 | + <url>https://repo.jenkins-ci.org/public/</url> |
| 86 | + </pluginRepository> |
| 87 | + </pluginRepositories> |
| 88 | +</project> |
0 commit comments