|
| 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 http://maven.apache.org/maven-v4_0_0.xsd"> |
| 3 | + <modelVersion>4.0.0</modelVersion> |
| 4 | + <parent> |
| 5 | + <groupId>org.jenkins-ci.plugins</groupId> |
| 6 | + <artifactId>plugin</artifactId> |
| 7 | + <version>1.480.3</version> |
| 8 | + </parent> |
| 9 | + <artifactId>cloudbees-folder</artifactId> |
| 10 | + <version>4.0-SNAPSHOT</version> |
| 11 | + <packaging>hpi</packaging> |
| 12 | + <name>CloudBees Folders Plugin</name> |
| 13 | + <description>This plugin allows users to create "folders" to organize jobs. Users can define custom taxonomies (like by project type, organization type etc). Folders are nestable and you can define views within folders.</description> |
| 14 | + <url>https://wiki.jenkins-ci.org/display/JENKINS/CloudBees+Folders+Plugin</url> |
| 15 | + <scm> |
| 16 | + <connection>scm:git:git://github.com/jenkinsci/${project.artifactId}-plugin.git</connection> |
| 17 | + < developerConnection>scm:git: [email protected]:jenkinsci/ ${project.artifactId}-plugin.git</ developerConnection> |
| 18 | + <url>https://github.com/jenkinsci/${project.artifactId}-plugin</url> |
| 19 | + </scm> |
| 20 | + <licenses> |
| 21 | + <license> |
| 22 | + <name>MIT</name> |
| 23 | + <url>http://www.opensource.org/licenses/mit-license.php</url> |
| 24 | + </license> |
| 25 | + </licenses> |
| 26 | + <repositories> |
| 27 | + <repository> |
| 28 | + <id>repo.jenkins-ci.org</id> |
| 29 | + <url>http://repo.jenkins-ci.org/public/</url> |
| 30 | + </repository> |
| 31 | + </repositories> |
| 32 | + <pluginRepositories> |
| 33 | + <pluginRepository> |
| 34 | + <id>repo.jenkins-ci.org</id> |
| 35 | + <url>http://repo.jenkins-ci.org/public/</url> |
| 36 | + </pluginRepository> |
| 37 | + </pluginRepositories> |
| 38 | + <dependencies> |
| 39 | + <dependency> |
| 40 | + <groupId>com.github.stephenc.findbugs</groupId> |
| 41 | + <artifactId>findbugs-annotations</artifactId> |
| 42 | + <version>1.3.9-1</version> |
| 43 | + <scope>provided</scope> |
| 44 | + <optional>true</optional> |
| 45 | + </dependency> |
| 46 | + <dependency> |
| 47 | + <groupId>org.jenkins-ci.plugins</groupId> |
| 48 | + <artifactId>credentials</artifactId> |
| 49 | + <version>1.8.3</version> |
| 50 | + <optional>true</optional> |
| 51 | + </dependency> |
| 52 | + <dependency> |
| 53 | + <groupId>org.jenkins-ci.plugins</groupId> |
| 54 | + <artifactId>matrix-auth</artifactId> |
| 55 | + <version>1.0.2</version> |
| 56 | + <optional>true</optional> |
| 57 | + </dependency> |
| 58 | + <dependency> |
| 59 | + <groupId>org.jenkins-ci.plugins</groupId> |
| 60 | + <artifactId>jobConfigHistory</artifactId> |
| 61 | + <version>2.4</version> |
| 62 | + <optional>true</optional> |
| 63 | + </dependency> |
| 64 | + </dependencies> |
| 65 | + <build> |
| 66 | + <plugins> |
| 67 | + <plugin> |
| 68 | + <artifactId>maven-jar-plugin</artifactId> |
| 69 | + <executions> |
| 70 | + <execution> |
| 71 | + <goals> |
| 72 | + <goal>test-jar</goal> |
| 73 | + </goals> |
| 74 | + </execution> |
| 75 | + </executions> |
| 76 | + </plugin> |
| 77 | + <plugin> |
| 78 | + <groupId>org.jenkins-ci.tools</groupId> |
| 79 | + <artifactId>maven-hpi-plugin</artifactId> |
| 80 | + <configuration> |
| 81 | + <compatibleSinceVersion>4.0</compatibleSinceVersion> |
| 82 | + </configuration> |
| 83 | + </plugin> |
| 84 | + </plugins> |
| 85 | + </build> |
| 86 | +</project> |
0 commit comments