-
Notifications
You must be signed in to change notification settings - Fork 73
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
Generified Flow Search Algorithms #2
Changes from all commits
5f996d5
ddb608d
2b51497
bb0864e
f4de174
d414723
4c8faa4
eaf4769
0ed42f8
7f4d488
deb585b
72e49df
eb48552
e640fd3
7c1e6df
6dfbb2d
ae9581b
1331ddd
a307266
211f297
c714502
94857ac
94845a1
f4ebc6e
8e8ddfb
b90e878
b44f402
366e080
233107f
2bf2829
733ab4a
7c31794
a1ceb70
11be993
b1f0976
e598a91
7173c9c
2707059
21c6623
13ec682
4ee5cec
6e28d68
0cddee1
09a5d21
5a77748
8bb6e6a
10e2eb4
389543b
bd426b3
2efcba4
8ebbdc9
f97a08f
13ef687
094cb36
2116580
698d0d3
b8ac909
64ec619
9efad20
1338b64
6c4b8e3
0237e96
abdf296
a955451
6eb3705
ac2609d
e8e6203
b5c2b9d
866e21d
cd6e3dd
84656e5
55dc020
4af21f5
1627155
e1988cd
606de64
c9f2444
a53b13e
aa18ee5
f22aba6
9880dc8
700d009
586979c
7bb581c
7b9faca
ae47cc2
d21d67a
1678b7d
2030360
6b6eba7
33e079e
56e42eb
94e9169
6cd4215
9d05aa6
d332d8c
9067f00
8ed03ee
80b7ad4
cf4d5ac
4f1575c
0bc9ffe
4cc9206
2bcfd8b
34483c3
78e8d2c
8abdf34
3d3bf57
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 |
---|---|---|
@@ -1,4 +1,28 @@ | ||
target | ||
work | ||
.idea | ||
|
||
# IntelliJ project files | ||
*.iml | ||
*.iws | ||
*.ipr | ||
.idea | ||
out | ||
|
||
# eclipse project file | ||
.settings | ||
.classpath | ||
.project | ||
build | ||
|
||
# vim | ||
*~ | ||
*.swp | ||
|
||
# ctags | ||
tags | ||
|
||
# OS X | ||
.DS_Store | ||
|
||
# mvn versions:set | ||
pom.xml.versionsBackup |
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -48,7 +48,7 @@ | |
<developerConnection>scm:git:git@github.com:jenkinsci/${project.artifactId}-plugin.git</developerConnection> | ||
<url>https://github.com/jenkinsci/${project.artifactId}-plugin</url> | ||
<tag>HEAD</tag> | ||
</scm> | ||
</scm> | ||
<repositories> | ||
<repository> | ||
<id>repo.jenkins-ci.org</id> | ||
|
@@ -70,5 +70,23 @@ | |
<artifactId>workflow-step-api</artifactId> | ||
<version>1.15</version> | ||
</dependency> | ||
<dependency> | ||
<groupId>${project.groupId}</groupId> | ||
<artifactId>workflow-job</artifactId> | ||
<version>1.15</version> | ||
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. 🐜 use 2.x for all new dependencies (I am anyway migrating to 2.x for existing dependencies) |
||
<scope>test</scope> | ||
</dependency> | ||
<dependency> | ||
<groupId>${project.groupId}</groupId> | ||
<artifactId>workflow-cps</artifactId> | ||
<version>2.2</version> | ||
<scope>test</scope> | ||
</dependency> | ||
<dependency> | ||
<groupId>${project.groupId}</groupId> | ||
<artifactId>workflow-basic-steps</artifactId> | ||
<version>1.15</version> | ||
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. Why not 2.x? 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. No response... 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. @oleg-nenashev It did not require a bump -- if we auto-bump to 2.x, it makes sense to do that separately. |
||
<scope>test</scope> | ||
</dependency> | ||
</dependencies> | ||
</project> |
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.
On my personal TODO list for years:
In short: this was not a human mistake, and (last I checked) fixes will not “stick”.