Skip to content

Commit 9c7ebc6

Browse files
committed
Initial code dump for opensourcing of code, including multimodule pom
1 parent 4195551 commit 9c7ebc6

File tree

265 files changed

+25006
-0
lines changed

Some content is hidden

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

265 files changed

+25006
-0
lines changed

.gitignore

+22
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
target
2+
work
3+
.DS_Store
4+
5+
.idea/
6+
*.iml
7+
*.iws
8+
*.ipr
9+
.idea
10+
out
11+
12+
node/
13+
node_modules/
14+
npm-debug.log
15+
16+
ui/src/main/webapp/jsmodules
17+
18+
demo/snapshot-plugins/
19+
20+
.project
21+
.settings
22+
.classpath

pom.xml

+107
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,107 @@
1+
<?xml version="1.0" encoding="UTF-8"?>
2+
<!--
3+
~ The MIT License
4+
~
5+
~ Copyright (c) 2013-2016, CloudBees, Inc.
6+
~
7+
~ Permission is hereby granted, free of charge, to any person obtaining a copy
8+
~ of this software and associated documentation files (the "Software"), to deal
9+
~ in the Software without restriction, including without limitation the rights
10+
~ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
11+
~ copies of the Software, and to permit persons to whom the Software is
12+
~ furnished to do so, subject to the following conditions:
13+
~
14+
~ The above copyright notice and this permission notice shall be included in
15+
~ all copies or substantial portions of the Software.
16+
~
17+
~ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
18+
~ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
19+
~ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
20+
~ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
21+
~ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
22+
~ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
23+
~ THE SOFTWARE.
24+
-->
25+
<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">
26+
<modelVersion>4.0.0</modelVersion>
27+
28+
<parent>
29+
<groupId>org.jenkins-ci.plugins</groupId>
30+
<artifactId>plugin</artifactId>
31+
<version>1.609.3</version>
32+
</parent>
33+
34+
<groupId>org.jenkins-ci.plugins.pipeline-stage-view</groupId>
35+
<artifactId>parent-pom</artifactId>
36+
<version>1.0-SNAPSHOT</version>
37+
<packaging>pom</packaging>
38+
<name>Pipeline Stage View Plugin: Parent POM</name>
39+
<url>https://wiki.jenkins-ci.org/display/JENKINS/Pipeline+Stage+View+Plugin</url>
40+
41+
<scm>
42+
<connection>scm:git:git://github.com/jenkinsci/pipeline-stage-view-plugin.git</connection>
43+
<developerConnection>scm:git:[email protected]:jenkinsci/pipeline-stage-view-plugin.git</developerConnection>
44+
<url>https://github.com/jenkinsci/pipeline-stage-view-plugin</url>
45+
<tag>HEAD</tag>
46+
</scm>
47+
48+
<properties>
49+
<jenkins.version>1.609.3</jenkins.version> <!-- but see Jenkins-Version override below -->
50+
<workflow.version>1.14-beta-1</workflow.version>
51+
</properties>
52+
53+
<modules>
54+
<module>rest-api</module>
55+
<module>ui</module>
56+
</modules>
57+
58+
<dependencies>
59+
<dependency> <!-- May not need this -->
60+
<groupId>org.jenkins-ci.plugins.workflow</groupId>
61+
<artifactId>workflow-aggregator</artifactId>
62+
<version>${workflow.version}</version>
63+
</dependency>
64+
<dependency>
65+
<groupId>org.jenkins-ci.plugins.workflow</groupId>
66+
<artifactId>workflow-aggregator</artifactId>
67+
<version>${workflow.version}</version>
68+
<classifier>tests</classifier>
69+
</dependency>
70+
<dependency>
71+
<groupId>org.jenkins-ci.plugins.workflow</groupId>
72+
<artifactId>workflow-job</artifactId>
73+
<version>${workflow.version}</version>
74+
</dependency>
75+
76+
<!-- Might need this -->
77+
<!--<dependency>
78+
<groupId>org.jenkins-ci.plugins.workflow</groupId>
79+
<artifactId>workflow-cps</artifactId>
80+
<version>${workflow.version}</version>
81+
</dependency>
82+
<dependency>
83+
<groupId>org.jenkins-ci.plugins.workflow</groupId>
84+
<artifactId>workflow-cps</artifactId>
85+
<version>${workflow.version}</version>
86+
<classifier>tests</classifier>
87+
</dependency>-->
88+
<dependency>
89+
<groupId>org.jenkins-ci.plugins.workflow</groupId>
90+
<artifactId>workflow-basic-steps</artifactId>
91+
<version>${workflow.version}</version>
92+
<scope>test</scope>
93+
</dependency>
94+
<dependency>
95+
<groupId>org.jenkins-ci.plugins.workflow</groupId>
96+
<artifactId>workflow-durable-task-step</artifactId>
97+
<version>${workflow.version}</version>
98+
<scope>test</scope>
99+
</dependency>
100+
<dependency>
101+
<groupId>org.jenkins-ci.plugins.workflow</groupId>
102+
<artifactId>workflow-support</artifactId>
103+
<version>${workflow.version}</version>
104+
<classifier>tests</classifier>
105+
</dependency>
106+
</dependencies>
107+
</project>

0 commit comments

Comments
 (0)