summaryrefslogtreecommitdiffstats
path: root/pom.xml
Commit message (Collapse)AuthorAgeFilesLines
* Update Jetty to 9.4.30.v20200611Matthias Sohn2020-07-141-1/+1
| | | | Change-Id: I9e14502f290483ad755aac30acd1e256f8abc8f8 Signed-off-by: Matthias Sohn <matthias.sohn@sap.com>
* Upgrade maven-site-plugin to 3.9.1David Pursehouse2020-06-251-1/+1
| | | | | Change-Id: I8fd46eef2851d48429b21c543c2441efcb1378fe Signed-off-by: David Pursehouse <david.pursehouse@gmail.com>
* Upgrade build-helper-maven-plugin to 3.2.0David Pursehouse2020-06-251-1/+1
| | | | | Change-Id: I1826a1641e026320d433031c45030712977e8151 Signed-off-by: David Pursehouse <david.pursehouse@gmail.com>
* Upgrade spotbugs to 4.0.4David Pursehouse2020-06-251-1/+1
| | | | | Change-Id: I774e625efe486383c66a034091da16500677466a Signed-off-by: David Pursehouse <david.pursehouse@gmail.com>
* Upgrade ecj to 3.22.0David Pursehouse2020-06-181-1/+1
| | | | | Change-Id: I97a99f6245afb49d916e226b16a5e60927f32353 Signed-off-by: David Pursehouse <david.pursehouse@gmail.com>
* Remove workaround for signing jars using Tycho pluginsMatthias Sohn2020-06-141-12/+0
| | | | | | | | The workaround became obsolete when https://git.eclipse.org/r/#/c/16027/ was released. Change-Id: Id20f79a1059550c1e5637fec30ae09a202cb2f2a Signed-off-by: Matthias Sohn <matthias.sohn@sap.com>
* Use https for URL of jgit websiteMatthias Sohn2020-06-141-1/+1
| | | | | Change-Id: Ic9bcbac5de23f670ae6b008a201b1fe9c6478fab Signed-off-by: Matthias Sohn <matthias.sohn@sap.com>
* Fix CI information in pom.xmlMatthias Sohn2020-06-141-2/+2
| | | | Change-Id: I066702cd9f4465eff919e46fc0cc8558d3f3178b
* Use gitiles as scm url in pom.xml for browsing source codeMatthias Sohn2020-06-141-1/+1
| | | | | Change-Id: I6c18ffe822f62883d2f331ad77c28ce8afc3ebd8 Signed-off-by: Matthias Sohn <matthias.sohn@sap.com>
* Update API baseline to 5.8.0.202006091008-rMatthias Sohn2020-06-101-1/+1
| | | | | Change-Id: I3afc8a9ec5a49b9dd0b392b56fd1860a6285ec2f Signed-off-by: Matthias Sohn <matthias.sohn@sap.com>
* Prepare 5.9.0-SNAPSHOT buildsMatthias Sohn2020-06-091-1/+1
| | | | | Change-Id: Ia998e2772df1285a4c674b07201f15d53156eb78 Signed-off-by: Matthias Sohn <matthias.sohn@sap.com>
* Upgrade maven-project-info-reports-plugin to 3.1.0David Pursehouse2020-06-051-1/+1
| | | | | Change-Id: I16e24bbec033ea707cb5c5a0ff3c21859e602f39 Signed-off-by: David Pursehouse <david.pursehouse@gmail.com>
* Upgrade maven-shade-plugin to 3.2.4David Pursehouse2020-06-051-1/+1
| | | | | Change-Id: Iba47e9304b6f20e8aa4855378bc86063919bb909 Signed-off-by: David Pursehouse <david.pursehouse@gmail.com>
* Decouple JSch from JGit CoreMatthias Sohn2020-06-011-0/+2
| | | | | | | | | | | | | | | | | | | | | | | | Motivation: JSch serves as 'default' implementations of the SSH transport. If a client application does not use it then there is no need to pull in this dependency. Move the classes depending on JSch to an OSGi fragment extending the org.eclipse.jgit bundle and keep them in the same package as before since moving them to another package would break API. Defer moving them to a separate package to the next major release. Add a new feature org.eclipse.jgit.ssh.jsch feature to enable installation. With that users can now decide which of the ssh client integrations (JCraft JSch or Apache Mina SSHD) they want to install. We will remove the JCraft JSch integration in a later step due to the reasons discussed in bug 520927. Bug: 553625 Change-Id: I5979c8a9dbbe878a2e8ac0fbfde7230059d74dc2 Also-by: Michael Dardis <git@md-5.net> Signed-off-by: Michael Dardis <git@md-5.net> Signed-off-by: Matthias Sohn <matthias.sohn@sap.com> Signed-off-by: David Ostrovsky <david@ostrovsky.org>
* Decouple BouncyCastle from JGit CoreMatthias Sohn2020-06-011-1/+3
| | | | | | | | | | | | | | | | | | | | | | | | | | Motivation: BouncyCastle serves as 'default' implementation of the GPG Signer. If a client application does not use it there is no need to pull in this dependency, especially since BouncyCastle is a large library. Move the classes depending on BouncyCastle to an OSGi fragment extending the org.eclipse.jgit bundle. They are moved to a distinct internal package in order to avoid split packages. This doesn't break public API since these classes were already in an internal package before this change. Add a new feature org.eclipse.jgit.gpg.bc to enable installation. With that users can now decide if they want to install it. Attempts to sign a commit if org.eclipse.jgit.gpg.bc isn't available will result in ServiceUnavailableException being thrown. Bug: 559106 Change-Id: I42fd6c00002e17aa9a7be96ae434b538ea86ccf8 Also-by: Michael Dardis <git@md-5.net> Signed-off-by: Michael Dardis <git@md-5.net> Signed-off-by: Matthias Sohn <matthias.sohn@sap.com> Signed-off-by: David Ostrovsky <david@ostrovsky.org>
* Update jetty to 9.4.28.v20200408Matthias Sohn2020-05-271-1/+1
| | | | Change-Id: I6fe26c1efcf812de3102ee82ce67f9e0bc3b0135 Signed-off-by: Matthias Sohn <matthias.sohn@sap.com>
* Update to bouncycastle 1.65 and orbit I20200506000552Matthias Sohn2020-05-061-1/+1
| | | | | Bug: 553206 Change-Id: I867bbe88b847bf6d17f17f6cf8c565cd4a2437cc Signed-off-by: Matthias Sohn <matthias.sohn@sap.com>
* Upgrade Tycho to 1.7.0Michael Keppler2020-05-011-1/+1
| | | | | Change-Id: I41d927e53f040750bbf0160dc15d8ca8a3f9f7ca Signed-off-by: Michael Keppler <Michael.Keppler@gmx.de>
* Upgrade wagon-ssh to 3.4.0David Pursehouse2020-04-291-1/+1
| | | | | Change-Id: Id9a1bf7fcdba7c011ccff54188dfb1bef8bf8a4b Signed-off-by: David Pursehouse <david.pursehouse@gmail.com>
* Upgrade maven-antrun-plugin to 3.0.0David Pursehouse2020-04-161-1/+1
| | | | | Change-Id: I79d55d1c0b30cddfcc6a188af87ea08d802c4c3c Signed-off-by: David Pursehouse <david.pursehouse@gmail.com>
* Upgrade maven-shade-plugin to 3.2.3David Pursehouse2020-04-161-1/+1
| | | | | Change-Id: Idf84a1a22b250484db5d03cf55c5207be37511b9 Signed-off-by: David Pursehouse <david.pursehouse@gmail.com>
* Upgrade ecj to 3.21.0David Pursehouse2020-03-281-1/+1
| | | | | Change-Id: Id337a320a59a77c36866f668ea1e30780bb55f35 Signed-off-by: David Pursehouse <david.pursehouse@gmail.com>
* Update to org.apache.sshd 2.4.0Thomas Wolf2020-03-221-1/+1
| | | | | | | | | | | | | | | | | Change target platforms to Orbit I20200319180910 and regenerate them. Change package imports to [2.4.0,2.5.0); adapt code to upstream API changes. Maven build: update version in root pom. Bazel build: update version & hash in WORKSPACE file. Proxy functionality verified manually using 3proxy (HTTP & SOCKS, with basic authentication) and ssh -vvv -D7020 localhost (SOCKS, no authentication). Bug: 561078 Change-Id: I582f6b98055b013c006f2c749890fe6db801cbaa Signed-off-by: Thomas Wolf <thomas.wolf@paranor.ch>
* Upgrade spotbugs-maven-plugin to 4.0.0David Pursehouse2020-03-171-1/+1
| | | | | Change-Id: I28369d116eff053e27d6853a3df914e58120fde5 Signed-off-by: David Pursehouse <david.pursehouse@gmail.com>
* Upgrade maven-javadoc-plugin to 3.2.0David Pursehouse2020-03-171-1/+1
| | | | | Change-Id: I355ca6ad9e050bf46d49a6f91365d86213d84b94 Signed-off-by: David Pursehouse <david.pursehouse@gmail.com>
* Upgrade maven-dependency-plugin to 3.1.2David Pursehouse2020-03-171-1/+1
| | | | | Change-Id: I48b4b8366404b01e394bb2dac08e19f0eebbd759 Signed-off-by: David Pursehouse <david.pursehouse@gmail.com>
* Set baseline for japicmp to 5.7.0.202003110725-rThomas Wolf2020-03-121-1/+1
| | | | Change-Id: Ifef50c9e58c6973676fd24888344e4e1621d0427 Signed-off-by: Thomas Wolf <thomas.wolf@paranor.ch>
* Upgrade maven-site-plugin to 3.9.0David Pursehouse2020-03-111-1/+1
| | | | | Change-Id: I966a05b499d3853c39bc3da8c7e5a1abc11d398e Signed-off-by: David Pursehouse <david.pursehouse@gmail.com>
* Upgrade build-helper-maven-plugin to 3.1.0David Pursehouse2020-03-111-1/+1
| | | | | Change-Id: Iec821c7312ce185d29e64ee6f9852437e2bd99c4 Signed-off-by: David Pursehouse <david.pursehouse@gmail.com>
* Prepare 5.8.0-SNAPSHOT buildsMatthias Sohn2020-03-091-1/+1
| | | | | Change-Id: I056b45806a82eae80177932e42e3dc806015351a Signed-off-by: Matthias Sohn <matthias.sohn@sap.com>
* Upgrade plexus-compiler-{eclipse|javac|javac-errorprone} to 2.8.6David Pursehouse2020-02-171-3/+3
| | | | | Change-Id: Ie49e487a2bc10b62db623f2e128fa063bfbc77bf Signed-off-by: David Pursehouse <david.pursehouse@gmail.com>
* Upgrade maven-shade-plugin to 3.2.2David Pursehouse2020-02-171-1/+1
| | | | | Change-Id: I63bdd436f04690028ecb493efc92c603a8049eb8 Signed-off-by: David Pursehouse <david.pursehouse@gmail.com>
* Upgrade maven-pmd-plugin to 3.13.0David Pursehouse2020-02-041-1/+1
| | | | | Change-Id: I6e20b77db743cd8578aa1f8688f893b746e861d1 Signed-off-by: David Pursehouse <david.pursehouse@gmail.com>
* Update Maven pluginsMatthias Sohn2020-02-021-2/+2
| | | | | | | - maven-surefire-plugin to 3.0.0-M4 - japicmp-maven-plugin to 0.14.3 Change-Id: I9191620825e15b03a58c41cf3d3e64c6a58faf0f Signed-off-by: Matthias Sohn <matthias.sohn@sap.com>
* Remove Error-Prone ExpectedExceptionCheckerDavid Pursehouse2020-01-241-3/+0
| | | | | | | | | The checker only checks for misuse of ExpectedException. Since we've moved to JUnit 4.13 and assertThrows, ExpectedException won't be used at all, so now we can get rid of that setting. Change-Id: Ia9189936ae215110f1f5fc6459c5dbc944404ade Signed-off-by: David Pursehouse <david.pursehouse@gmail.com>
* Replace ExpectedException which was deprecated in junit 4.13Matthias Sohn2020-01-241-0/+5
| | | | | Change-Id: I64b0c057dd0a12aef2f3d56fa0c8a10e3b23fffd Signed-off-by: Matthias Sohn <matthias.sohn@sap.com>
* Update to Orbit I20200120214610 and JUnit to 4.13David Pursehouse2020-01-221-1/+1
| | | | | | | | | | Since version 4.13 JUnit has an assertThrows method. Remove the implementation in MoreAsserts and use the one from JUnit. CQ: 21439 Change-Id: I086baa94aa3069cebe87c4cbf91ed1534523c6cb Signed-off-by: David Pursehouse <david.pursehouse@gmail.com> Signed-off-by: Matthias Sohn <matthias.sohn@sap.com>
* Update to Tycho 1.6.0Michael Keppler2020-01-201-1/+1
| | | | | | | Not many changes, but might lead to shorter build times. Change-Id: I5d629e49e8bbdef7a5b116d4f28cdbf8a8528cf0 Signed-off-by: Michael Keppler <Michael.Keppler@gmx.de> Signed-off-by: Matthias Sohn <matthias.sohn@sap.com>
* Update Orbit to I20200115225246 and update dependenciesMatthias Sohn2020-01-161-4/+4
| | | | | | | | | | | | | | | | | update - javaewah to 1.1.7.v20200107-0831 - org.apache.commons.codec to 1.13.0.v20200108-0001 - org.apache.commons.compress to 1.19.0.v20200106-2343 - org.apache.httpcomponents.httpclient to 4.5.10.v20200114-1512 - org.apache.httpcomponents.httpcore to 4.4.12.v20200108-1212 CQ: 21194 CQ: 21195 CQ: 21199 CQ: 21346 CQ: 21347 Change-Id: I1943f1c3bf1bb5d71b666cb6aea6083e80ff82dc Signed-off-by: Matthias Sohn <matthias.sohn@sap.com>
* Upgrade jetty to 9.4.25.v20191220Matthias Sohn2020-01-151-1/+1
| | | | | Change-Id: I6a14c2beec3075eac5807cd639f55f38ae8c9c49 Signed-off-by: Matthias Sohn <matthias.sohn@sap.com>
* Merge branch 'stable-5.6'Matthias Sohn2020-01-091-2/+0
|\ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * stable-5.6: Fix API problem filters Fix unclosed resource warning in SmartOutputStream JschConfigSessionFactory: fix boxing warning SshSupport#runSshCommand: don't throw exception in finally block Don't override already managed maven-compiler-plugin version Remove unused import from CreateFileSnapshotBenchmark Remove duplicate ignore_optional_problems entry in .classpath Update maven-site-plugin used by benchmark module to 3.8.2 Add dependency to enable site generation for benchmark module Ignore warnings for generated source code in org.eclipse.jgit.benchmark Fix MBean registration Enhance WindowCache statistics Change-Id: I4a77c602bfffed60535d0b8fc251a552b128068d Signed-off-by: Matthias Sohn <matthias.sohn@sap.com>
| * Merge branch 'stable-5.5' into stable-5.6Matthias Sohn2020-01-091-2/+0
| |\ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * stable-5.5: Fix API problem filters Fix unclosed resource warning in SmartOutputStream JschConfigSessionFactory: fix boxing warning SshSupport#runSshCommand: don't throw exception in finally block Don't override already managed maven-compiler-plugin version Remove unused import from CreateFileSnapshotBenchmark Remove duplicate ignore_optional_problems entry in .classpath Update maven-site-plugin used by benchmark module to 3.8.2 Add dependency to enable site generation for benchmark module Ignore warnings for generated source code in org.eclipse.jgit.benchmark Fix MBean registration Enhance WindowCache statistics Change-Id: I11f9a387ac3dc7d22a4f2e70bb8d89169b4e9afe Signed-off-by: Matthias Sohn <matthias.sohn@sap.com>
| | * Merge branch 'stable-5.4' into stable-5.5Matthias Sohn2020-01-091-2/+0
| | |\ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * stable-5.4: Fix API problem filters Fix unclosed resource warning in SmartOutputStream JschConfigSessionFactory: fix boxing warning SshSupport#runSshCommand: don't throw exception in finally block Don't override already managed maven-compiler-plugin version Remove unused import from CreateFileSnapshotBenchmark Remove duplicate ignore_optional_problems entry in .classpath Update maven-site-plugin used by benchmark module to 3.8.2 Add dependency to enable site generation for benchmark module Ignore warnings for generated source code in org.eclipse.jgit.benchmark Fix MBean registration Enhance WindowCache statistics Change-Id: I78902d5feecb2c09134b64ec2f3b48b2c3bab37d Signed-off-by: Matthias Sohn <matthias.sohn@sap.com>
| | | * Merge branch 'stable-5.3' into stable-5.4Matthias Sohn2020-01-091-2/+0
| | | |\ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * stable-5.3: Fix API problem filters Fix unclosed resource warning in SmartOutputStream JschConfigSessionFactory: fix boxing warning SshSupport#runSshCommand: don't throw exception in finally block Don't override already managed maven-compiler-plugin version Remove unused import from CreateFileSnapshotBenchmark Remove duplicate ignore_optional_problems entry in .classpath Update maven-site-plugin used by benchmark module to 3.8.2 Add dependency to enable site generation for benchmark module Ignore warnings for generated source code in org.eclipse.jgit.benchmark Fix MBean registration Enhance WindowCache statistics Change-Id: I1b560b36d169cfa02cc5450ad0fa0bd85f9f42d8 Signed-off-by: Matthias Sohn <matthias.sohn@sap.com>
| | | | * Merge branch 'stable-5.2' into stable-5.3Matthias Sohn2020-01-091-2/+0
| | | | |\ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * stable-5.2: Fix API problem filters Fix unclosed resource warning in SmartOutputStream JschConfigSessionFactory: fix boxing warning SshSupport#runSshCommand: don't throw exception in finally block Don't override already managed maven-compiler-plugin version Remove unused import from CreateFileSnapshotBenchmark Remove duplicate ignore_optional_problems entry in .classpath Update maven-site-plugin used by benchmark module to 3.8.2 Add dependency to enable site generation for benchmark module Ignore warnings for generated source code in org.eclipse.jgit.benchmark Fix MBean registration Enhance WindowCache statistics Change-Id: I67a07d92718188bdf7f8a13b83e9f538ecf4b22f Signed-off-by: Matthias Sohn <matthias.sohn@sap.com>
| | | | | * Merge branch 'stable-5.1' into stable-5.2Matthias Sohn2020-01-091-2/+0
| | | | | |\ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * stable-5.1: Fix unclosed resource warning in SmartOutputStream JschConfigSessionFactory: fix boxing warning SshSupport#runSshCommand: don't throw exception in finally block Don't override already managed maven-compiler-plugin version Remove unused import from CreateFileSnapshotBenchmark Remove duplicate ignore_optional_problems entry in .classpath Update maven-site-plugin used by benchmark module to 3.8.2 Add dependency to enable site generation for benchmark module Ignore warnings for generated source code in org.eclipse.jgit.benchmark Fix MBean registration Enhance WindowCache statistics Change-Id: Ic90aacf1ea40e13dc564d4d659e79535e86d0300 Signed-off-by: Matthias Sohn <matthias.sohn@sap.com>
| | | | | | * Don't override already managed maven-compiler-plugin versionMatthias Sohn2020-01-041-2/+0
| | | | | | | | | | | | | | | | | | | | | | | | | | | | Change-Id: Ie2cb178cf8d805aadc76a2096bcdde95a146d07c Signed-off-by: Matthias Sohn <matthias.sohn@sap.com>
| * | | | | | Prepare 5.6.1-SNAPSHOT buildsMatthias Sohn2019-12-111-1/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Change-Id: Iaa72d2ea6764ccd4fb6a124b51d89fe6492c602d Signed-off-by: Matthias Sohn <matthias.sohn@sap.com>
| * | | | | | JGit v5.6.0.201912101111-rv5.6.0.201912101111-rMatthias Sohn2019-12-101-1/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Change-Id: Icbb3b46f9d04e45da53936860e07e69fde12971c Signed-off-by: Matthias Sohn <matthias.sohn@sap.com>
| * | | | | | Prepare 5.6.0-SNAPSHOT buildsMatthias Sohn2019-12-041-1/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Change-Id: I5e737ff7f262fdd43fc975a0b3594c8b33919663 Signed-off-by: Matthias Sohn <matthias.sohn@sap.com>