summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDavid Pursehouse <dpursehouse@collab.net>2020-03-19 16:35:45 +0900
committerDavid Pursehouse <dpursehouse@collab.net>2020-03-19 16:37:24 +0900
commit59f8b6d522aefe55131b9b18513fc0e31071af0e (patch)
tree3477e77a4a4d851fc6aa9e251d798f8af0dd9a9a
parent8eb05d340163ff19dedbd0786190145aea037425 (diff)
Documentation: Remove obsolete dev-release-jgit.txt
Since JGit is now consumed as a git submodule, we don't need to build custom artifacts for JGit, and this documentation is not needed. It is no longer linked from anywhere and can be simply removed. Change-Id: I98f2062d1cac3c99181923ceb439bc6de0c002ab
-rw-r--r--Documentation/dev-release-jgit.txt52
1 files changed, 0 insertions, 52 deletions
diff --git a/Documentation/dev-release-jgit.txt b/Documentation/dev-release-jgit.txt
deleted file mode 100644
index 1a8b501a3c..0000000000
--- a/Documentation/dev-release-jgit.txt
+++ /dev/null
@@ -1,52 +0,0 @@
-= Making a Snapshot Release of JGit
-
-This step is only necessary if we need to create an unofficial JGit
-snapshot release and publish it to the
-link:https://developers.google.com/storage/[Google Cloud Storage].
-
-[[prepare-environment]]
-== Prepare the Maven Environment
-
-First, make sure you have done the necessary
-link:dev-release-deploy-config.html#deploy-configuration-settings-xml[
-configuration in Maven `settings.xml`].
-
-To apply the necessary settings in JGit's `pom.xml`, follow the instructions
-in link:dev-release-deploy-config.html#deploy-configuration-subprojects[
-Configuration for Subprojects in `pom.xml`], or apply the provided diff by
-executing the following command in the JGit workspace:
-
-----
- git apply /path/to/gerrit/tools/jgit-snapshot-deploy-pom.diff
-----
-
-[[prepare-release]]
-== Prepare the Release
-
-Since JGit has its own release process we do not push any release tags. Instead
-we will use the output of `git describe` as the version of the current JGit
-snapshot.
-
-In the JGit workspace, execute the following command:
-
-----
- ./tools/version.sh --release $(git describe)
-----
-
-[[publish-release]]
-== Publish the Release
-
-To deploy the new snapshot, execute the following command in the JGit
-workspace:
-
-----
- mvn deploy
-----
-
-
-GERRIT
-------
-Part of link:index.html[Gerrit Code Review]
-
-SEARCHBOX
----------