summaryrefslogtreecommitdiffstats
path: root/vespa-http-client/pom.xml
Commit message (Collapse)AuthorAgeFilesLines
* Improve maven-shade-plugin filter, and move to parent pom.gjoranv2022-02-031-11/+0
| | | | - Removes 223 build warnings (out of 562 for building non-test code)
* Revert "Exclude META-INF files and module-info.class from uber jars."Harald Musum2022-02-021-2/+4
|
* Exclude META-INF files and module-info.class from uber jars.gjoranv2022-02-021-4/+2
| | | | - Generate countless warnings for duplicates and breaking encapsulation.
* Deprecate vespa-http-clientBjørn Christian Seime2021-12-151-1/+1
|
* Use a custom property for setting relase version for clients.gjoranv2021-11-151-10/+1
| | | | | | | | | - Always set release version via maven-compiler-plugin, instead of maven property which is overridden by compiler-plugin config. - Using a custom property with self-explanatory name makes comments redundant. - Remove explicit jdkToolchain config, as these modules no longer compile with jdk pre 9, due to the --release flag.
* Revert "Remove deps to http-utils and add vespajlib where necessary."gjoranv2021-10-211-1/+1
| | | | This reverts commit fe260fe8a98c1d2d19633e16a6308857c9577878.
* Remove duplicate test util class and dependency to hamcrest-json.gjoranv2021-10-201-2/+3
|
* Update 2017 copyright notices.gjoranv2021-10-071-1/+1
|
* Optimize fat jar size by excluding unused transitive deps.gjoranv2021-09-301-0/+19
|
* Remove deps to http-utils and add vespajlib where necessary.gjoranv2021-09-301-1/+1
|
* Deploy the vespa-http-client with dependencies.Arnstein Ressem2021-03-031-0/+22
|
* Upgrade all Jackson dependencies to 2.12.1Bjørn Christian Seime2021-02-081-0/+10
|
* Generate a Vtag class in vespa-http-clientJon Bratseth2020-09-011-0/+22
|
* Revert "Revert "Bjorncs/apache commons libraries cleanup""Bjørn Christian Seime2020-01-081-6/+0
|
* Revert "Bjorncs/apache commons libraries cleanup"Harald Musum2020-01-081-0/+6
|
* Remove use of common-lang in vespa-http-clientBjørn Christian Seime2020-01-071-6/+0
|
* Use the new release option in JDK 9+ to ensure JDK 8 compability for client ↵Arnstein Ressem2019-10-221-22/+4
| | | | libraries.
* Remove findbugs annotations from code and build path.gjoranv2019-09-091-5/+0
| | | | | - jsr305 is needed by guava, which declares it as optional dep. - Remaining modules with annotations do not affect the container.
* Add Vespa TLS support to vespa-http-clientBjørn Christian Seime2019-07-191-0/+27
| | | | | | | | Use setters for directly assigning ssl context and hostname validator to client builder. This ensures that all connection settings applied to the builder are actual used to construct the client. Previously, the connection settings for timeout and total connections were ignored if ssl was configured.
* Revert "Add Vespa TLS support to vespa-http-client"Bjørn Christian Seime2019-07-181-27/+0
| | | | This reverts commit 4ed7063aa9a5c3d961231484178945ed3ecef441.
* Add Vespa TLS support to vespa-http-clientBjørn Christian Seime2019-07-171-0/+27
| | | | | | | | Use setters for directly assigning ssl context and hostname validator to client builder. This ensures that all connection settings applied to the builder are actual used to construct the client. Previously, the connection settings for timeout and total connections were ignored if ssl was configured.
* mockito-all => mockito-coreHenning Baldersheim2019-04-291-2/+1
|
* Remove duplicate declarationJon Bratseth2019-04-101-12/+5
|
* Avoid duplicationJon Bratseth2019-03-291-12/+0
|
* Add explanationJon Bratseth2019-03-291-0/+1
|
* Client-side modules should be compilable with jdk8Jon Bratseth2019-03-291-2/+44
|
* Revert "Revert "Bratseth/remove dependencies" (#8885)"Jon Bratseth2019-03-231-42/+43
| | | | This reverts commit 9379e425712abe71fcd2f406c139baf25a017108.
* Revert "Bratseth/remove dependencies" (#8885)Harald Musum2019-03-221-43/+42
|
* Correct commons lang dependency scope to testJon Bratseth2019-03-221-4/+0
|
* Correct commons lang dependency scope to testJon Bratseth2019-03-221-5/+6
|
* Correct hamcrest dependency scope to testJon Bratseth2019-03-221-5/+5
|
* Remove testutils dependencyJon Bratseth2019-03-221-22/+41
|
* Remove vespajlib dependencyJon Bratseth2019-03-221-5/+0
|
* Remove component dependencyJon Bratseth2019-03-221-5/+0
|
* Remove dependency on Vespa annotationsJon Bratseth2019-03-221-5/+0
|
* 6-SNAPSHOT -> 7-SNAPSHOTArnstein Ressem2019-01-211-2/+2
|
* Revert "Revert "Enable ABI checking on modules with public APIs""Ilpo Ruotsalainen2019-01-091-0/+4
| | | | This reverts commit cd470d8ac8a58c943748f028a37d864507628e99.
* Revert "Enable ABI checking on modules with public APIs"Håkon Hallingstad2019-01-041-4/+0
|
* Move abi-check-plugin configuration to parent.Ilpo Ruotsalainen2018-12-211-12/+0
| | | | | Instead of configuring in each module separately, put all configuration to parent and let the relevant modules just enable the plugin.
* Enable abi-check-plugin on relevant modules.Ilpo Ruotsalainen2018-12-181-0/+16
|
* Inherit apache httpcomponents version from parent.gjoranv2018-07-181-6/+0
| | | | + remove unnecessary httpcore dep (transitive from httpclient).
* Java 9: Upgrade maven-shade-plugingjoranv2018-05-031-1/+0
|
* Don't warn/fail on missing serialVersionUIDBjørn Christian Seime2018-04-031-0/+1
|
* Include version number in user agent nameBjørn Christian Seime2018-02-021-0/+5
|
* Split parent + container-dependency-versions from root pom.gjoranv2017-12-011-0/+1
| | | | | | - Add missing dependencies so that all provided non-yahoo jars are listed in container-dependency-versions. - Add relativePath for all child poms of parent.
* Revert "Gjoranv/split parent2"gjoranv2017-11-301-1/+0
|
* Split parent + container-dependency-versions from root pom.gjoranv2017-11-301-0/+1
| | | | | | - Add missing dependencies so that all provided non-yahoo jars are listed in container-dependency-versions. - Add relativePath for all child poms of parent.
* Revert "Gjoranv/split parent"gjoranv2017-11-291-1/+0
|
* Split parent + container-dependency-versions from root pom.gjoranv2017-11-291-0/+1
| | | | | | - Add missing dependencies so that all provided non-yahoo jars are listed in container-dependency-versions. - Add relativePath for all child poms of parent.
* Add dependency management for jackson-dataformat-xml.gjoranv2017-10-131-3/+0
| | | | + remove some unnecessary version from vespa-http-client pom.