-
-
Notifications
You must be signed in to change notification settings - Fork 20
Add Pipeline support && generic update #2
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Changes from 12 commits
f73a403
4c8b0ff
e6aa1f3
0118dbc
c6d7cfd
d78ebf1
6395d78
85bbc99
4bce27e
c5290e4
4693fa0
b336d13
74fd64c
b730e12
04e987c
a3d50b6
948d746
76a43c9
0b98b1a
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -4,7 +4,7 @@ | |
| <parent> | ||
| <groupId>org.jenkins-ci.plugins</groupId> | ||
| <artifactId>plugin</artifactId> | ||
| <version>1.400</version> | ||
| <version>2.32</version> | ||
| </parent> | ||
|
|
||
| <groupId>hudson.plugins.filesystem_scm</groupId> | ||
|
|
@@ -16,6 +16,10 @@ | |
| <description>Using File System as SCM, done by checking file system last modified date.</description> | ||
| <url>http://wiki.jenkins-ci.org/display/JENKINS/File+System+SCM</url> | ||
|
|
||
| <properties> | ||
| <jenkins.version>1.642.3</jenkins.version> | ||
| </properties> | ||
|
|
||
| <developers> | ||
| <developer> | ||
| <id>samngms</id> | ||
|
|
@@ -31,6 +35,14 @@ | |
| </developer> | ||
| </developers> | ||
|
|
||
| <licenses> | ||
| <license> | ||
| <name>MIT License</name> | ||
| <url>http://www.opensource.org/licenses/mit-license.php</url> | ||
| <distribution>repo</distribution> | ||
| </license> | ||
| </licenses> | ||
|
|
||
| <!-- get every artifact through maven.glassfish.org, which proxies all | ||
| the artifacts that we need --> | ||
| <repositories> | ||
|
|
@@ -46,7 +58,33 @@ | |
| <url>http://repo.jenkins-ci.org/public/</url> | ||
| </pluginRepository> | ||
| </pluginRepositories> | ||
|
|
||
| <dependencies> | ||
| <dependency> | ||
| <groupId>org.jenkins-ci.plugins.workflow</groupId> | ||
| <artifactId>workflow-aggregator</artifactId> | ||
|
Member
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Do not use this plugin as a dependency even for tests. Specify |
||
| <version>2.4</version> | ||
| <scope>test</scope> | ||
| </dependency> | ||
| <!-- Transient upper bound dependencies --> | ||
|
Member
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Transitive? |
||
| <dependency> | ||
| <groupId>org.jenkins-ci.plugins</groupId> | ||
| <artifactId>scm-api</artifactId> | ||
| <version>1.3</version> | ||
| <scope>test</scope> | ||
| </dependency> | ||
| <dependency> | ||
| <groupId>org.jenkins-ci.plugins</groupId> | ||
| <artifactId>structs</artifactId> | ||
|
Member
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Make a |
||
| <version>1.5</version> | ||
| <scope>test</scope> | ||
| </dependency> | ||
| <dependency> <!-- The core will override it anyway, no? --> | ||
| <groupId>org.jenkins-ci</groupId> | ||
| <artifactId>annotation-indexer</artifactId> | ||
| <version>1.9</version> | ||
| <scope>test</scope> | ||
| </dependency> | ||
| </dependencies> | ||
|
|
||
| <scm> | ||
|
|
||
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
or just https://opensource.org/licenses/MIT
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Does Netbeans already autoresolve it?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Yes I think so.