Skip to content

Commit

Permalink
skip building javadoc and sources jars on a developer build
Browse files Browse the repository at this point in the history
(auto-submit 113155 after successfully running remote remote.full)
Job ID: job.9.20250103184600.10079

[git-p4: depot-paths = "//dev/coherence-ce/release/coherence-ce-v14.1.2.0/": change = 113165]
  • Loading branch information
fryp committed Jan 3, 2025
1 parent 0019d31 commit f4c431b
Showing 1 changed file with 8 additions and 1 deletion.
9 changes: 8 additions & 1 deletion prj/coherence-dependencies/pom.xml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<?xml version="1.0" encoding="UTF-8"?>
<!--
Copyright (c) 2000, 2024, Oracle and/or its affiliates.
Copyright (c) 2000, 2025, Oracle and/or its affiliates.
Licensed under the Universal Permissive License v 1.0 as shown at
https://oss.oracle.com/licenses/upl.
Expand Down Expand Up @@ -1225,6 +1225,13 @@
props.setProperty("project.timestamp", timestamp)
desc = "(dev-" + System.getProperty("user.name") + ")"
}
props.setProperty("skip.docs", "true")
props.setProperty("skip.sources", "true")
}
else
{
props.setProperty("skip.docs", "false")
props.setProperty("skip.sources", "false")
}
props.setProperty("project.impl.description", desc)
Expand Down

0 comments on commit f4c431b

Please sign in to comment.