-
Notifications
You must be signed in to change notification settings - Fork 57
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
BUGFIX: ods-deployments file repeats image in mono repository setup #1023
Changes from 11 commits
2c9d4eb
05d0b93
22b3571
f76dfba
86e1d58
0a034e4
6020434
547205a
3e8a759
f919820
4998663
0da017a
be3cb51
78a2d15
6b40e51
203db89
e014da5
06e1e65
e2273fa
c394de4
d7c0157
bf8eccb
1d36f72
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 |
---|---|---|
|
@@ -121,7 +121,6 @@ test { | |
systemProperty 'com.athaydes.spockframework.report.projectName', 'ods-jenkins-shared-library' | ||
systemProperty 'com.athaydes.spockframework.report.projectVersion', version | ||
maxHeapSize = "2048m" | ||
jvmArgs "-XX:MaxPermSize=256m" | ||
systemProperty "testRecordMode", project.findProperty('testRecordMode')?: false | ||
systemProperty "generateExpectedPdfFiles", project.findProperty('generateExpectedPdfFiles')?: false | ||
systemProperty "nexusURL", project.findProperty('nexusURL')?: "http://nexus.odsbox.lan:7990" | ||
|
@@ -137,7 +136,7 @@ test { | |
} | ||
|
||
codenarc { | ||
toolVersion = '1.5' | ||
toolVersion = '1.6' | ||
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. please note: this is unrelated to the actual changes, it wouldn't let me build without that being set. |
||
configFile = file('codenarc.groovy') | ||
maxPriority1Violations = 0 | ||
maxPriority2Violations = 1 | ||
|
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -11,6 +11,7 @@ class DocumentHistoryEntry implements Map, Serializable { | |
private final String docVersion | ||
String rational | ||
|
||
@SuppressWarnings('ParameterCount') | ||
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. Please not this is unrelated to the actual change, it was reported by codeNarc and I could get it to build without this. |
||
DocumentHistoryEntry(Map map, Long entryId, String projectVersion, | ||
String previousProjectVersion, String docVersion, String rational) { | ||
def delegate = (Map) map.clone() | ||
|
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.
See the changelog entry, the
jvmArgs "-XX:MaxPermSize=256m"
option (specificallyMaxPermSize
) has been deprecated and will prohibit a JVM from starting. It was removed somewhere between 8 and 11, if my research is correct.