IDE

stock-crop-provider-clm

nl.cloudfarming.client : stock-crop-provider-clm

AgroSense stock CLM - contains client for CLM service containing crop lists and crop protection

Last Version: 13.03-beta

Release Date:

jdbc-identity-store

org.sterl.identitystore.jdbc : jdbc-identity-store

Sonatype helps open source projects to set up Maven repositories on https://oss.sonatype.org/

Last Version: 0.1.4

Release Date:

Last Version: 0.1.0

Release Date:

Last Version: 5.6.13

Release Date:

Last Version: 0.4.0

Release Date:

Ant Fin Tech API SDK

cn.com.antcloud.api : antcloud-api-provider-risk_control

Ant Fin Tech API SDK For Java Copyright (c) 2015-present Alipay.com, https://www.alipay.com

Last Version: 1.1.0

Release Date:

Arquillian Pact Provider ftest container

org.arquillian.pact : arquillian-pact-provider-ftest-container

Arquillian Pact Extension to run consumer-driven contracts with Pact

Last Version: 1.0.0.Alpha4

Release Date:

jclouds savvis-vpdc vpdc

org.jclouds.provider : savvis-symphonyvpdc

jclouds components to access Savvis Symphony VPDC

Last Version: 1.6.0-alpha.4

Release Date:

Last Version: 0.1.1

Release Date:

samples

com.danidemi.jlubricant : jlubricant-samples

JLubricant samples as they appear in the documentation.

Last Version: 0.0.15

Release Date:

Last Version: 1.3.2

Release Date:

TextureVideoView for Android - Sample

com.sprylab.android.texturevideoview : sample

A VideoView based on the official Android 6.0.1_r10 sources using a TextureView instead of a SurfaceView.

Last Version: 1.2.1

Release Date:

Last Version: 1.1.2

Release Date:

tabitha-json

com.widen : tabitha-json

Tabitha plugins for line-separated JSON.

Last Version: 0.5.2

Release Date:

CQ Actions Websocket

com.cognifide.cq.actions : com.cognifide.cq.actions.msg.websocket

Web socket messages implementation of the CQ Actions

Last Version: 6.4.0

Release Date:

WSO2 Carbon - SAML2 SSO Outbound Authentication Module

org.wso2.carbon.identity.authenticator.outbound.saml2sso : identity-auth-outbound-saml2sso

WSO2 is an open source application development software company focused on providing service-oriented architecture solutions for professional developers.

Last Version: 6.0.2

Release Date:

org.opencms.ade.editprovider

org.opencms.modules : org.opencms.ade.editprovider

OpenCms-Module 'org.opencms.ade.editprovider'. This module contains an edit provider for the original Direct Edit which has a number of features from ADE.<br> <i>(c) 2013 by Alkacon Software GmbH (http://www.alkacon.com).</i> OpenCms is a Content Management System that is based on Open Source Software. Complex Intranet and Internet websites can be quickly and cost-effectively created, maintained and managed.

Last Version: 8.5.2

Release Date:

RoboPods Fabric Digits iOS

com.mobidevelop.robovm : robopods-fabric-ios-digits

RoboPods provides bindings to popular 3rd party libraries.

Last Version: 2.2.3

Release Date:

hal-data-provider-common

com.dell.cpsd : hal-data-provider-common

This repository contains the source code for the capability registry API. This API exposes the interface through which a consumer or provider interacts with the capability registry.

Last Version: 1.0.0

Release Date:

Last Version: 2.0.8

Release Date:

Last Version: 1.0.0

Release Date:

Jssor Slider

org.webjars : slider.js

WebJar for Jssor slider

Last Version: 17.0

Release Date:

Last Version: 2.5.0

Release Date:

pact-jvm-provider-lein_2.11

au.com.dius : pact-jvm-provider-lein_2.11

# Leiningen plugin to verify a provider [version 2.2.14+, 3.0.3+] Leiningen plugin for verifying pacts against a provider. The plugin provides a `pact-verify` task which will verify all configured pacts against your provider. ## To Use It ### 1. Add the plugin to your project plugins, preferably in it&apos;s own profile. ```clojure :profiles { :pact { :plugins [[au.com.dius/pact-jvm-provider-lein_2.11 &quot;3.2.11&quot; :exclusions [commons-logging]]] :dependencies [[ch.qos.logback/logback-core &quot;1.1.3&quot;] [ch.qos.logback/logback-classic &quot;1.1.3&quot;] [org.apache.httpcomponents/httpclient &quot;4.4.1&quot;]] }}} ``` ### 2. Define the pacts between your consumers and providers You define all the providers and consumers within the `:pact` configuration element of your project. ```clojure :pact { :service-providers { ; You can define as many as you need, but each must have a unique name :provider1 { ; All the provider properties are optional, and have sensible defaults (shown below) :protocol &quot;http&quot; :host &quot;localhost&quot; :port 8080 :path &quot;/&quot; :has-pact-with { ; Again, you can define as many consumers for each provider as you need, but each must have a unique name :consumer1 { ; pact file can be either a path or an URL :pact-file &quot;path/to/provider1-consumer1-pact.json&quot; } } } } } ``` ### 3. Execute `lein with-profile pact pact-verify` You will have to have your provider running for this to pass. ## Enabling insecure SSL For providers that are running on SSL with self-signed certificates, you need to enable insecure SSL mode by setting `:insecure true` on the provider. ```clojure :pact { :service-providers { :provider1 { :protocol &quot;https&quot; :host &quot;localhost&quot; :port 8443 :insecure true :has-pact-with { :consumer1 { :pact-file &quot;path/to/provider1-consumer1-pact.json&quot; } } } } } ``` ## Specifying a custom trust store For environments that are running their own certificate chains: ```clojure :pact { :service-providers { :provider1 { :protocol &quot;https&quot; :host &quot;localhost&quot; :port 8443 :trust-store &quot;relative/path/to/trustStore.jks&quot; :trust-store-password &quot;changeme&quot; :has-pact-with { :consumer1 { :pact-file &quot;path/to/provider1-consumer1-pact.json&quot; } } } } } ``` `:trust-store` is relative to the current working (build) directory. `:trust-store-password` defaults to `changeit`. NOTE: The hostname will still be verified against the certificate. ## Modifying the requests before they are sent Sometimes you may need to add things to the requests that can&apos;t be persisted in a pact file. Examples of these would be authentication tokens, which have a small life span. The Leiningen plugin provides a request filter that can be set to an anonymous function on the provider that will be called before the request is made. This function will receive the HttpRequest object as a parameter. ```clojure :pact { :service-providers { :provider1 { ; function that adds an Authorization header to each request :request-filter #(.addHeader % &quot;Authorization&quot; &quot;oauth-token eyJhbGciOiJSUzI1NiIsIm...&quot;) :has-pact-with { :consumer1 { :pact-file &quot;path/to/provider1-consumer1-pact.json&quot; } } } } } ``` __*Important Note:*__ You should only use this feature for things that can not be persisted in the pact file. By modifying the request, you are potentially modifying the contract from the consumer tests! ## Modifying the HTTP Client Used The default HTTP client is used for all requests to providers (created with a call to `HttpClients.createDefault()`). This can be changed by specifying a function assigned to `:create-client` on the provider that returns a `CloseableHttpClient`. The function will receive the provider info as a parameter. ## Turning off URL decoding of the paths in the pact file [version 3.3.3+] By default the paths loaded from the pact file will be decoded before the request is sent to the provider. To turn this behaviour off, set the system property `pact.verifier.disableUrlPathDecoding` to `true`. __*Important Note:*__ If you turn off the url path decoding, you need to ensure that the paths in the pact files are correctly encoded. The verifier will not be able to make a request with an invalid encoded path. ## Plugin Properties The following plugin options can be specified on the command line: |Property|Description| |--------|-----------| |:pact.showStacktrace|This turns on stacktrace printing for each request. It can help with diagnosing network errors| |:pact.showFullDiff|This turns on displaying the full diff of the expected versus actual bodies [version 3.3.6+]| |:pact.filter.consumers|Comma seperated list of consumer names to verify| |:pact.filter.description|Only verify interactions whose description match the provided regular expression| |:pact.filter.providerState|Only verify interactions whose provider state match the provided regular expression. An empty string matches interactions that have no state| |:pact.verifier.publishResults|Publishing of verification results will be skipped unless this property is set to &apos;true&apos; [version 3.5.18+]| |:pact.matching.wildcard|Enables matching of map values ignoring the keys when this property is set to &apos;true&apos;| Example, to run verification only for a particular consumer: ``` $ lein with-profile pact pact-verify :pact.filter.consumers=consumer2 ``` ## Provider States For each provider you can specify a state change URL to use to switch the state of the provider. This URL will receive the `providerState` description from the pact file before each interaction via a POST. The `:state-change-uses-body` controls if the state is passed in the request body or as a query parameter. These values can be set at the provider level, or for a specific consumer. Consumer values take precedent if both are given. ```clojure :pact { :service-providers { :provider1 { :state-change-url &quot;http://localhost:8080/tasks/pactStateChange&quot; :state-change-uses-body false ; defaults to true :has-pact-with { :consumer1 { :pact-file &quot;path/to/provider1-consumer1-pact.json&quot; } } } } } ``` If the `:state-change-uses-body` is not specified, or is set to true, then the provider state description will be sent as JSON in the body of the request. If it is set to false, it will passed as a query parameter. As for normal requests (see Modifying the requests before they are sent), a state change request can be modified before it is sent. Set `:state-change-request-filter` to an anonymous function on the provider that will be called before the request is made. ## Filtering the interactions that are verified You can filter the interactions that are run using three properties: `:pact.filter.consumers`, `:pact.filter.description` and `:pact.filter.providerState`. Adding `:pact.filter.consumers=consumer1,consumer2` to the command line will only run the pact files for those consumers (consumer1 and consumer2). Adding `:pact.filter.description=a request for payment.*` will only run those interactions whose descriptions start with &apos;a request for payment&apos;. `:pact.filter.providerState=.*payment` will match any interaction that has a provider state that ends with payment, and `:pact.filter.providerState=` will match any interaction that does not have a provider state. ## Starting and shutting down your provider For the pact verification to run, the provider needs to be running. Leiningen provides a `do` task that can chain tasks together. So, by creating a `start-app` and `terminate-app` alias, you could so something like: $ lein with-profile pact do start-app, pact-verify, terminate-app However, if the pact verification fails the build will abort without running the `terminate-app` task. To have the start and terminate tasks always run regardless of the state of the verification, you can assign them to `:start-provider-task` and `:terminate-provider-task` on the provider. ```clojure :aliases {&quot;start-app&quot; ^{:doc &quot;Starts the app&quot;} [&quot;tasks to start app ...&quot;] ; insert tasks to start the app here &quot;terminate-app&quot; ^{:doc &quot;Kills the app&quot;} [&quot;tasks to terminate app ...&quot;] ; insert tasks to stop the app here } :pact { :service-providers { :provider1 { :start-provider-task &quot;start-app&quot; :terminate-provider-task &quot;terminate-app&quot; :has-pact-with { :consumer1 { :pact-file &quot;path/to/provider1-consumer1-pact.json&quot; } } } } } ``` Then you can just run: $ lein with-profile pact pact-verify and the `start-app` and `terminate-app` tasks will run before and after the provider verification. ## Specifying the provider hostname at runtime [3.0.4+] If you need to calculate the provider hostname at runtime (for instance it is run as a new docker container or AWS instance), you can give an anonymous function as the provider host that returns the host name. The function will receive the provider information as a parameter. ```clojure :pact { :service-providers { :provider1 { :host #(calculate-host-name %) :has-pact-with { :consumer1 { :pact-file &quot;path/to/provider1-consumer1-pact.json&quot; } } } } } ```

Last Version: 3.5.24

Release Date:

Cloudinary Android Glide Integration Library

com.cloudinary : cloudinary-android-glide-integration

Cloudinary is a cloud service that offers a solution to a web application's entire image management pipeline. Upload images to the cloud. Automatically perform smart image resizing, cropping and conversion without installing any complex software. Integrate Facebook or Twitter profile image extraction in a snap, in any dimension and style to match your website’s graphics requirements. Images are seamlessly delivered through a fast CDN, and much much more. This Java library allows to easily integrate with Cloudinary in Java applications.

Last Version: 2.2.0

Release Date:

libapi

org.identifiers.cloud : libapi

This library provides client side service wrappers to access identifiers.org Cloud based API

Last Version: 2.3.0

Release Date:

Last Version: 0.9.237

Release Date:

Last Version: 1.0.1

Release Date:

sakai-openldap-provider

org.sakaiproject : sakai-openldap-provider

Corporate POM for the Sakai Open Source Collaborative Learning Environment/Learning Management System

Last Version: 22.0

Release Date:

WSO2 Carbon - Template Manager

org.wso2.carbon.identity.framework : template-mgt

This is a Carbon bundle that represent the Template Management Module.

Last Version: 5.20.324

Release Date:

Last Version: 3.0.2

Release Date:

Identity4J Active Directory JNDI

com.nervepoint : identity4j-active-directory-jndi

A suite of Java Identity and Authentication Connectors.

Last Version: 1.2.2

Release Date:

jclouds StratoGen vCloud MyCloud provider

org.jclouds.provider : stratogen-vcloud-mycloud

vCloud implementation targeted to StratoGen vCloud MyCloud

Last Version: 1.6.0-rc.5

Release Date:

Last Version: 1.0.0

Release Date:

Last Version: 0.0.3

Release Date:

Vaadin-SpringSecurityViewProvider

de.enerko : vaadin-springsecurityviewprovider

Provides a custom ViewProvider which evaluates @ViewDescription's and instanciates Views accordingly if the current User, authenticated through Spring Security, has the necessary permissions to use them.

Last Version: 0.2.1

Release Date: