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

Download JAR files tagged by isolated with all dependencies


domain-tvosx64 from group com.fraktalio.fmodel (version 3.5.0)

Fmodel provides just enough tactical Domain-Driven Design patterns, optimised for Event Sourcing and CQRS. The domain model library is fully isolated from the application layer and API-related concerns. It represents a pure declaration of the program logic.

Group: com.fraktalio.fmodel Artifact: domain-tvosx64
Show all versions Show documentation 
There is no JAR file uploaded. A download is not possible! Please choose another version.
0 downloads
Artifact domain-tvosx64
Group com.fraktalio.fmodel
Version 3.5.0
Last update 14. July 2023
Organization not specified
URL https://github.com/fraktalio/fmodel
License The Apache License, Version 2.0
Dependencies amount 2
Dependencies kotlin-stdlib-common, kotlinx-coroutines-core-tvosx64,
There are maybe transitive dependencies!

domain-tvosarm64 from group com.fraktalio.fmodel (version 3.5.0)

Fmodel provides just enough tactical Domain-Driven Design patterns, optimised for Event Sourcing and CQRS. The domain model library is fully isolated from the application layer and API-related concerns. It represents a pure declaration of the program logic.

Group: com.fraktalio.fmodel Artifact: domain-tvosarm64
Show all versions Show documentation 
There is no JAR file uploaded. A download is not possible! Please choose another version.
0 downloads
Artifact domain-tvosarm64
Group com.fraktalio.fmodel
Version 3.5.0
Last update 14. July 2023
Organization not specified
URL https://github.com/fraktalio/fmodel
License The Apache License, Version 2.0
Dependencies amount 2
Dependencies kotlin-stdlib-common, kotlinx-coroutines-core-tvosarm64,
There are maybe transitive dependencies!

needle4k-jakarta from group io.github.needle4k (version 4.0.1)

Group: io.github.needle4k Artifact: needle4k-jakarta
Show documentation Show source 
Download needle4k-jakarta.jar (4.0.1)
 

0 downloads
Artifact needle4k-jakarta
Group io.github.needle4k
Version 4.0.1


needle4k from group io.github.needle4k (version 4.0.1)

Group: io.github.needle4k Artifact: needle4k
Show documentation Show source 
Download needle4k.jar (4.0.1)
 

0 downloads
Artifact needle4k
Group io.github.needle4k
Version 4.0.1


domain-watchosx86 from group com.fraktalio.fmodel (version 3.4.0)

Fmodel provides just enough tactical Domain-Driven Design patterns, optimised for Event Sourcing and CQRS. The domain model library is fully isolated from the application layer and API-related concerns. It represents a pure declaration of the program logic.

Group: com.fraktalio.fmodel Artifact: domain-watchosx86
Show documentation 
There is no JAR file uploaded. A download is not possible! Please choose another version.
0 downloads
Artifact domain-watchosx86
Group com.fraktalio.fmodel
Version 3.4.0
Last update 14. March 2023
Organization not specified
URL https://github.com/fraktalio/fmodel
License The Apache License, Version 2.0
Dependencies amount 2
Dependencies kotlin-stdlib-common, kotlinx-coroutines-core-watchosx86,
There are maybe transitive dependencies!

domain-iosarm32 from group com.fraktalio.fmodel (version 3.4.0)

Fmodel provides just enough tactical Domain-Driven Design patterns, optimised for Event Sourcing and CQRS. The domain model library is fully isolated from the application layer and API-related concerns. It represents a pure declaration of the program logic.

Group: com.fraktalio.fmodel Artifact: domain-iosarm32
Show documentation 
There is no JAR file uploaded. A download is not possible! Please choose another version.
0 downloads
Artifact domain-iosarm32
Group com.fraktalio.fmodel
Version 3.4.0
Last update 14. March 2023
Organization not specified
URL https://github.com/fraktalio/fmodel
License The Apache License, Version 2.0
Dependencies amount 2
Dependencies kotlin-stdlib-common, kotlinx-coroutines-core-iosarm32,
There are maybe transitive dependencies!

needle4j from group org.needle4j (version 3.0.0)

Needle is a lightweight framework for testing Java EE components outside of the container in isolation. It reduces the test setup code by analysing dependencies and automatic injection of mock objects. It will thus maximize the speed of development as well as the execution of unit tests.

Group: org.needle4j Artifact: needle4j
Show all versions Show documentation Show source 
Download needle4j.jar (3.0.0)
 

1 downloads
Artifact needle4j
Group org.needle4j
Version 3.0.0
Last update 11. January 2022
Organization not specified
URL http://www.needle4j.org
License lgpl
Dependencies amount 1
Dependencies slf4j-api,
There are maybe transitive dependencies!

hbase-shaded-jackson-jaxrs-json-provider from group org.apache.hbase.thirdparty (version 4.1.9)

Pulls down jackson-jaxrs-json-provider, relocates it, and rewrites its usage of javax.ws.rs classes to make the relocated versions provided by hbase-shaded-jersey. Does NOT include/relocate its entire dependency graph, just performs this isolated transform. This is a separate module because jackson-jaxrs-json-provider is not used universally. At this time, the dependency is required only by hbase-rest.

Group: org.apache.hbase.thirdparty Artifact: hbase-shaded-jackson-jaxrs-json-provider
Show all versions Show source 
Download hbase-shaded-jackson-jaxrs-json-provider.jar (4.1.9)
 

0 downloads
Artifact hbase-shaded-jackson-jaxrs-json-provider
Group org.apache.hbase.thirdparty
Version 4.1.9
Last update 23. September 2024
Organization The Apache Software Foundation
URL https://hbase.apache.org/hbase-shaded-jackson-jaxrs-json-provider
License Apache License, Version 2.0
Dependencies amount 6
Dependencies jackson-core, jackson-databind, jackson-module-jaxb-annotations, jackson-annotations, jakarta.xml.bind-api, jakarta.activation-api,
There are maybe transitive dependencies!

pact-jvm-provider-junit5_2.12 from group au.com.dius (version 3.6.15)

# Pact Junit 5 Extension ## Overview For writing Pact verification tests with JUnit 5, there is an JUnit 5 Invocation Context Provider that you can use with the `@TestTemplate` annotation. This will generate a test for each interaction found for the pact files for the provider. To use it, add the `@Provider` and one of the pact source annotations to your test class (as per a JUnit 4 test), then add a method annotated with `@TestTemplate` and `@ExtendWith(PactVerificationInvocationContextProvider.class)` that takes a `PactVerificationContext` parameter. You will need to call `verifyInteraction()` on the context parameter in your test template method. For example: ```java @Provider("myAwesomeService") @PactFolder("pacts") public class ContractVerificationTest { @TestTemplate @ExtendWith(PactVerificationInvocationContextProvider.class) void pactVerificationTestTemplate(PactVerificationContext context) { context.verifyInteraction(); } } ``` For details on the provider and pact source annotations, refer to the [Pact junit runner](../pact-jvm-provider-junit/README.md) docs. ## Test target You can set the test target (the object that defines the target of the test, which should point to your provider) on the `PactVerificationContext`, but you need to do this in a before test method (annotated with `@BeforeEach`). There are three different test targets you can use: `HttpTestTarget`, `HttpsTestTarget` and `AmpqTestTarget`. For example: ```java @BeforeEach void before(PactVerificationContext context) { context.setTarget(HttpTestTarget.fromUrl(new URL(myProviderUrl))); // or something like // context.setTarget(new HttpTestTarget("localhost", myProviderPort, "/")); } ``` **Note for Maven users:** If you use Maven to run your tests, you will have to make sure that the Maven Surefire plugin is at least version 2.22.1 uses an isolated classpath. For example, configure it by adding the following to your POM: ```xml <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-surefire-plugin</artifactId> <version>2.22.1</version> <configuration> <useSystemClassLoader>false</useSystemClassLoader> </configuration> </plugin> ``` ## Provider State Methods Provider State Methods work in the same way as with JUnit 4 tests, refer to the [Pact junit runner](../pact-jvm-provider-junit/README.md) docs. ### Using multiple classes for the state change methods If you have a large number of state change methods, you can split things up by moving them to other classes. You will need to specify the additional classes on the test context in a `Before` method. Do this with the `withStateHandler` or `setStateHandlers` methods. See [StateAnnotationsOnAdditionalClassTest](pact-jvm-provider-junit5/src/test/java/au/com/dius/pact/provider/junit5/StateAnnotationsOnAdditionalClassTest.java) for an example. ## Modifying the requests before they are sent **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! Sometimes you may need to add things to the requests that can't be persisted in a pact file. Examples of these would be authentication tokens, which have a small life span. The Http and Https test targets support injecting the request that will executed into the test template method. You can then add things to the request before calling the `verifyInteraction()` method. For example to add a header: ```java @TestTemplate @ExtendWith(PactVerificationInvocationContextProvider.class) void testTemplate(PactVerificationContext context, HttpRequest request) { // This will add a header to the request request.addHeader("X-Auth-Token", "1234"); context.verifyInteraction(); } ``` ## Objects that can be injected into the test methods You can inject the following objects into your test methods (just like the `PactVerificationContext`). They will be null if injected before the supported phase. | Object | Can be injected from phase | Description | | ------ | --------------- | ----------- | | PactVerificationContext | @BeforeEach | The context to use to execute the interaction test | | Pact | any | The Pact model for the test | | Interaction | any | The Interaction model for the test | | HttpRequest | @TestTemplate | The request that is going to be executed (only for HTTP and HTTPS targets) | | ProviderVerifier | @TestTemplate | The verifier instance that is used to verify the interaction |

Group: au.com.dius Artifact: pact-jvm-provider-junit5_2.12
Show all versions Show documentation Show source 
Download pact-jvm-provider-junit5_2.12.jar (3.6.15)
 

4 downloads
Artifact pact-jvm-provider-junit5_2.12
Group au.com.dius
Version 3.6.15
Last update 29. April 2020
Organization not specified
URL https://github.com/DiUS/pact-jvm
License Apache 2
Dependencies amount 3
Dependencies pact-jvm-support, pact-jvm-provider_2.12, junit-jupiter-api,
There are maybe transitive dependencies!

pact-jvm-provider-junit5 from group au.com.dius (version 4.0.10)

# Pact Junit 5 Extension ## Overview For writing Pact verification tests with JUnit 5, there is an JUnit 5 Invocation Context Provider that you can use with the `@TestTemplate` annotation. This will generate a test for each interaction found for the pact files for the provider. To use it, add the `@Provider` and one of the pact source annotations to your test class (as per a JUnit 4 test), then add a method annotated with `@TestTemplate` and `@ExtendWith(PactVerificationInvocationContextProvider.class)` that takes a `PactVerificationContext` parameter. You will need to call `verifyInteraction()` on the context parameter in your test template method. For example: ```java @Provider("myAwesomeService") @PactFolder("pacts") public class ContractVerificationTest { @TestTemplate @ExtendWith(PactVerificationInvocationContextProvider.class) void pactVerificationTestTemplate(PactVerificationContext context) { context.verifyInteraction(); } } ``` For details on the provider and pact source annotations, refer to the [Pact junit runner](../pact-jvm-provider-junit/README.md) docs. ## Test target You can set the test target (the object that defines the target of the test, which should point to your provider) on the `PactVerificationContext`, but you need to do this in a before test method (annotated with `@BeforeEach`). There are three different test targets you can use: `HttpTestTarget`, `HttpsTestTarget` and `AmpqTestTarget`. For example: ```java @BeforeEach void before(PactVerificationContext context) { context.setTarget(HttpTestTarget.fromUrl(new URL(myProviderUrl))); // or something like // context.setTarget(new HttpTestTarget("localhost", myProviderPort, "/")); } ``` **Note for Maven users:** If you use Maven to run your tests, you will have to make sure that the Maven Surefire plugin is at least version 2.22.1 uses an isolated classpath. For example, configure it by adding the following to your POM: ```xml <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-surefire-plugin</artifactId> <version>2.22.1</version> <configuration> <useSystemClassLoader>false</useSystemClassLoader> </configuration> </plugin> ``` ## Provider State Methods Provider State Methods work in the same way as with JUnit 4 tests, refer to the [Pact junit runner](../pact-jvm-provider-junit/README.md) docs. ### Using multiple classes for the state change methods If you have a large number of state change methods, you can split things up by moving them to other classes. You will need to specify the additional classes on the test context in a `Before` method. Do this with the `withStateHandler` or `setStateHandlers` methods. See [StateAnnotationsOnAdditionalClassTest](src/test/java/au/com/dius/pact/provider/junit5/StateAnnotationsOnAdditionalClassTest.java) for an example. ## Modifying the requests before they are sent **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! Sometimes you may need to add things to the requests that can't be persisted in a pact file. Examples of these would be authentication tokens, which have a small life span. The Http and Https test targets support injecting the request that will executed into the test template method. You can then add things to the request before calling the `verifyInteraction()` method. For example to add a header: ```java @TestTemplate @ExtendWith(PactVerificationInvocationContextProvider.class) void testTemplate(PactVerificationContext context, HttpRequest request) { // This will add a header to the request request.addHeader("X-Auth-Token", "1234"); context.verifyInteraction(); } ``` ## Objects that can be injected into the test methods You can inject the following objects into your test methods (just like the `PactVerificationContext`). They will be null if injected before the supported phase. | Object | Can be injected from phase | Description | | ------ | --------------- | ----------- | | PactVerificationContext | @BeforeEach | The context to use to execute the interaction test | | Pact | any | The Pact model for the test | | Interaction | any | The Interaction model for the test | | HttpRequest | @TestTemplate | The request that is going to be executed (only for HTTP and HTTPS targets) | | ProviderVerifier | @TestTemplate | The verifier instance that is used to verify the interaction | ## Allowing the test to pass when no pacts are found to verify (version 4.0.7+) By default, the test will fail with an exception if no pacts were found to verify. This can be overridden by adding the `@IgnoreNoPactsToVerify` annotation to the test class. For this to work, you test class will need to be able to receive null values for any of the injected parameters.

Group: au.com.dius Artifact: pact-jvm-provider-junit5
Show all versions Show documentation Show source 
Download pact-jvm-provider-junit5.jar (4.0.10)
 

0 downloads
Artifact pact-jvm-provider-junit5
Group au.com.dius
Version 4.0.10
Last update 18. April 2020
Organization not specified
URL https://github.com/DiUS/pact-jvm
License Apache 2
Dependencies amount 3
Dependencies junit-jupiter-api, pact-jvm-core-support, pact-jvm-provider,
There are maybe transitive dependencies!



Page 19 from 20 (items total 192)


© 2015 - 2025 Weber Informatics LLC | Privacy Policy