Skip to content

Commit 869ef0c

Browse files
committed
Initial open source release.
0 parents  commit 869ef0c

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

45 files changed

+3732
-0
lines changed

.gitignore

+27
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,27 @@
1+
# Maven build files
2+
target/
3+
4+
# Jenkins plugin development
5+
work/
6+
7+
# IntelliJ project files
8+
*.iml
9+
*.ipr
10+
*.iws
11+
.idea/
12+
13+
# Eclipse project files
14+
.settings/
15+
.classpath
16+
.project
17+
.metadata
18+
.loadpath
19+
20+
# NetBeans project files
21+
nbproject/private/
22+
build/
23+
nbbuild/
24+
dist/
25+
nbdist/
26+
nbactions.xml
27+
nb-configuration.xml

pom.xml

+86
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,86 @@
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

Comments
 (0)