All Downloads are FREE. Search and download functionalities are using the official Maven repository.

Download 9.3.9.v20160517 JAR files with dependency

Search JAR files by class name

mvp-support-v7 from group com.github.halzhang (version 1.0.0)

mvp-support-v7

Group: com.github.halzhang Artifact: mvp-support-v7
Show documentation 
There is no JAR file uploaded. A download is not possible! Please choose another version.
0 downloads
Artifact mvp-support-v7
Group com.github.halzhang
Version 1.0.0
Last update 18. November 2015
Organization not specified
URL https://github.com/halzhang/tppd-mvp
License The Apache Software License, Version 2.0
Dependencies amount 2
Dependencies appcompat-v7, mvp,
There are maybe transitive dependencies!

mvp-support-v4 from group com.github.halzhang (version 1.0.0)

mvp-support-v4

Group: com.github.halzhang Artifact: mvp-support-v4
Show documentation 
There is no JAR file uploaded. A download is not possible! Please choose another version.
0 downloads
Artifact mvp-support-v4
Group com.github.halzhang
Version 1.0.0
Last update 18. November 2015
Organization not specified
URL https://github.com/halzhang/tppd-mvp
License The Apache Software License, Version 2.0
Dependencies amount 2
Dependencies support-v4, mvp,
There are maybe transitive dependencies!

view-inspector-aspect-v23 from group com.github.xfumihiro.view-inspector (version 0.2.0)

View Inspector Plugin for Android development.

Group: com.github.xfumihiro.view-inspector Artifact: view-inspector-aspect-v23
There is no JAR file uploaded. A download is not possible! Please choose another version.
0 downloads
Artifact view-inspector-aspect-v23
Group com.github.xfumihiro.view-inspector
Version 0.2.0
Last update 17. November 2015
Organization not specified
URL https://github.com/xfumihiro/ViewInspector/
License The Apache Software License, Version 2.0
Dependencies amount 0
Dependencies No dependencies
There are maybe transitive dependencies!

data-inspector-aspect-v23 from group com.github.xfumihiro.data-inspector (version 0.1.1)

Data Inspector Plugin for Android development.

Group: com.github.xfumihiro.data-inspector Artifact: data-inspector-aspect-v23
Show all versions 
There is no JAR file uploaded. A download is not possible! Please choose another version.
0 downloads
Artifact data-inspector-aspect-v23
Group com.github.xfumihiro.data-inspector
Version 0.1.1
Last update 17. November 2015
Organization not specified
URL https://github.com/xfumihiro/DataInspector/
License The Apache Software License, Version 2.0
Dependencies amount 0
Dependencies No dependencies
There are maybe transitive dependencies!

org.carewebframework.cal.ui.patientselection.v1 from group org.carewebframework (version 4.0.0)

Group: org.carewebframework Artifact: org.carewebframework.cal.ui.patientselection.v1
Show all versions Show documentation Show source 
 

0 downloads
Artifact org.carewebframework.cal.ui.patientselection.v1
Group org.carewebframework
Version 4.0.0
Last update 06. November 2015
Organization not specified
URL Not specified
License not specified
Dependencies amount 1
Dependencies org.carewebframework.cal.ui.patientselection.core,
There are maybe transitive dependencies!

pact-jvm-model-v3_2.10 from group au.com.dius (version 2.2.15)

Pact model V3 ============= Extensions to the pact-jvm-model that implements V3 specification changes.

Group: au.com.dius Artifact: pact-jvm-model-v3_2.10
Show all versions Show documentation Show source 
 

0 downloads
Artifact pact-jvm-model-v3_2.10
Group au.com.dius
Version 2.2.15
Last update 17. September 2015
Organization not specified
URL https://github.com/DiUS/pact-jvm
License Apache 2
Dependencies amount 7
Dependencies scala-library, groovy-all, json4s-native_2.10, pact-jvm-model_2.10, java-semver, slf4j-api, json4s-jackson_2.10,
There are maybe transitive dependencies!

pact-jvm-consumer-groovy-v3_2.10 from group au.com.dius (version 2.2.15)

pact-jvm-consumer-groovy-v3 =========================== Groovy DSL for Pact JVM implementing V3 specification changes. ##Dependency The library is available on maven central using: * group-id = `au.com.dius` * artifact-id = `pact-jvm-consumer-groovy-v3_2.11` * version-id = `2.2.x` or `3.0.x` ##Usage Add the `pact-jvm-consumer-groovy-v3` library to your test class path. This provides a `PactMessageBuilder` class for you to use to define your pacts. If you are using gradle for your build, add it to your `build.gradle`: dependencies { testCompile 'au.com.dius:pact-jvm-consumer-groovy-v3_2.11:2.2.12' } ## Consumer test for a message consumer The `PactMessageBuilder` class provides a DSL for defining your message expectations. It works in much the same way as the `PactBuilder` class for Request-Response interactions. ### Step 1 - define the message expectations Create a test that uses the `PactMessageBuilder` to define a message expectation, and then call `run`. This will invoke the given closure with a message for each one defined in the pact. ```groovy def eventStream = new PactMessageBuilder().call { serviceConsumer 'messageConsumer' hasPactWith 'messageProducer' given 'order with id 10000004 exists' expectsToReceive 'an order confirmation message' withMetaData(type: 'OrderConfirmed') // Can define any key-value pairs here withContent(contentType: 'application/json') { type 'OrderConfirmed' audit { userCode 'messageService' } origin 'message-service' referenceId '10000004-2' timeSent: '2015-07-22T10:14:28+00:00' value { orderId '10000004' value '10.000000' fee '10.00' gst '15.00' } } } ``` ### Step 2 - call your message handler with the generated messages This example tests a message handler that gets messages from a Kafka topic. In this case the Pact message is wrapped as a Kafka `MessageAndMetadata`. ```groovy eventStream.run { Message message -> messageHandler.handleMessage(new MessageAndMetadata('topic', 1, new kafka.message.Message(message.contentsAsBytes()), 0, null, valueDecoder)) } ``` ### Step 3 - validate that the message was handled correctly ```groovy def order = orderRepository.getOrder('10000004') assert order.status == 'confirmed' assert order.value == 10.0 ``` ### Step 4 - Publish the pact file If the test was successful, a pact file would have been produced with the message from step 1.

Group: au.com.dius Artifact: pact-jvm-consumer-groovy-v3_2.10
Show all versions Show documentation Show source 
 

0 downloads
Artifact pact-jvm-consumer-groovy-v3_2.10
Group au.com.dius
Version 2.2.15
Last update 17. September 2015
Organization not specified
URL https://github.com/DiUS/pact-jvm
License Apache 2
Dependencies amount 7
Dependencies pact-jvm-consumer-groovy_2.10, scala-library, groovy-all, json4s-native_2.10, pact-jvm-model-v3_2.10, slf4j-api, json4s-jackson_2.10,
There are maybe transitive dependencies!

pact-jvm-model-v3_2.11 from group au.com.dius (version 3.0.4)

Pact model V3 ============= Extensions to the pact-jvm-model that implements V3 specification changes.

Group: au.com.dius Artifact: pact-jvm-model-v3_2.11
Show all versions Show documentation Show source 
 

0 downloads
Artifact pact-jvm-model-v3_2.11
Group au.com.dius
Version 3.0.4
Last update 17. September 2015
Organization not specified
URL https://github.com/DiUS/pact-jvm
License Apache 2
Dependencies amount 9
Dependencies scala-logging_2.11, groovy-all, json4s-native_2.11, pact-jvm-model_2.11, java-semver, slf4j-api, scala-xml_2.11, scala-library, json4s-jackson_2.11,
There are maybe transitive dependencies!

pact-jvm-consumer-groovy-v3_2.11 from group au.com.dius (version 3.0.4)

pact-jvm-consumer-groovy-v3 =========================== Groovy DSL for Pact JVM implementing V3 specification changes. ##Dependency The library is available on maven central using: * group-id = `au.com.dius` * artifact-id = `pact-jvm-consumer-groovy-v3_2.11` * version-id = `2.2.x` or `3.0.x` ##Usage Add the `pact-jvm-consumer-groovy-v3` library to your test class path. This provides a `PactMessageBuilder` class for you to use to define your pacts. If you are using gradle for your build, add it to your `build.gradle`: dependencies { testCompile 'au.com.dius:pact-jvm-consumer-groovy-v3_2.11:2.2.12' } ## Consumer test for a message consumer The `PactMessageBuilder` class provides a DSL for defining your message expectations. It works in much the same way as the `PactBuilder` class for Request-Response interactions. ### Step 1 - define the message expectations Create a test that uses the `PactMessageBuilder` to define a message expectation, and then call `run`. This will invoke the given closure with a message for each one defined in the pact. ```groovy def eventStream = new PactMessageBuilder().call { serviceConsumer 'messageConsumer' hasPactWith 'messageProducer' given 'order with id 10000004 exists' expectsToReceive 'an order confirmation message' withMetaData(type: 'OrderConfirmed') // Can define any key-value pairs here withContent(contentType: 'application/json') { type 'OrderConfirmed' audit { userCode 'messageService' } origin 'message-service' referenceId '10000004-2' timeSent: '2015-07-22T10:14:28+00:00' value { orderId '10000004' value '10.000000' fee '10.00' gst '15.00' } } } ``` ### Step 2 - call your message handler with the generated messages This example tests a message handler that gets messages from a Kafka topic. In this case the Pact message is wrapped as a Kafka `MessageAndMetadata`. ```groovy eventStream.run { Message message -> messageHandler.handleMessage(new MessageAndMetadata('topic', 1, new kafka.message.Message(message.contentsAsBytes()), 0, null, valueDecoder)) } ``` ### Step 3 - validate that the message was handled correctly ```groovy def order = orderRepository.getOrder('10000004') assert order.status == 'confirmed' assert order.value == 10.0 ``` ### Step 4 - Publish the pact file If the test was successful, a pact file would have been produced with the message from step 1.

Group: au.com.dius Artifact: pact-jvm-consumer-groovy-v3_2.11
Show all versions Show documentation Show source 
 

0 downloads
Artifact pact-jvm-consumer-groovy-v3_2.11
Group au.com.dius
Version 3.0.4
Last update 17. September 2015
Organization not specified
URL https://github.com/DiUS/pact-jvm
License Apache 2
Dependencies amount 9
Dependencies scala-logging_2.11, pact-jvm-consumer-groovy_2.11, groovy-all, json4s-native_2.11, pact-jvm-model-v3_2.11, slf4j-api, scala-xml_2.11, scala-library, json4s-jackson_2.11,
There are maybe transitive dependencies!

github-com-kartik-v-bootstrap-star-rating from group org.webjars.bower (version 3.5.3)

WebJar for bootstrap-star-rating

Group: org.webjars.bower Artifact: github-com-kartik-v-bootstrap-star-rating
Show documentation Show source 
 

0 downloads
Artifact github-com-kartik-v-bootstrap-star-rating
Group org.webjars.bower
Version 3.5.3
Last update 11. September 2015
Organization not specified
URL http://webjars.org
License BSD-3
Dependencies amount 2
Dependencies jquery, bootstrap,
There are maybe transitive dependencies!



Page 327 from 497 (items total 4961)


© 2015 - 2024 Weber Informatics LLC | Privacy Policy