diff options
author | Masaya Suzuki <masayasuzuki@google.com> | 2016-08-23 17:57:59 -0700 |
---|---|---|
committer | Masaya Suzuki <masayasuzuki@google.com> | 2016-08-23 18:06:51 -0700 |
commit | c4e209b20fe519f419be0300ed414350649df88f (patch) | |
tree | 2b9505f07f466d698b3615117a8061597642c8f2 /org.eclipse.jgit/pom.xml | |
parent | 1096652e71257720fcf5bc90ccfa367293bd8ce2 (diff) | |
download | jgit-c4e209b20fe519f419be0300ed414350649df88f.tar.gz jgit-c4e209b20fe519f419be0300ed414350649df88f.zip |
Add HTTP status code to ServiceMayNotContinueException
The exception can be thrown in a various reason, and sometimes 403
Forbidden is not appropriate. Make the HTTP status code customizable.
Change-Id: If2ef6f454f7479158a4e28a12909837db483521c
Signed-off-by: Masaya Suzuki <masayasuzuki@google.com>
Diffstat (limited to 'org.eclipse.jgit/pom.xml')
-rw-r--r-- | org.eclipse.jgit/pom.xml | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/org.eclipse.jgit/pom.xml b/org.eclipse.jgit/pom.xml index 1f8907e4ff..e8a3213b85 100644 --- a/org.eclipse.jgit/pom.xml +++ b/org.eclipse.jgit/pom.xml @@ -88,6 +88,12 @@ <groupId>org.slf4j</groupId> <artifactId>slf4j-api</artifactId> </dependency> + + <dependency> + <groupId>javax.servlet</groupId> + <artifactId>javax.servlet-api</artifactId> + <scope>provided</scope> + </dependency> </dependencies> <build> |