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

Download spring-framework-3.0.5 JAR files with dependency


spring-kafka-test from group org.springframework.kafka (version 2.1.0.RELEASE)

Spring Kafka Test Support

Group: org.springframework.kafka Artifact: spring-kafka-test
There is no JAR file uploaded. A download is not possible! Please choose another version.
1 downloads
Artifact spring-kafka-test
Group org.springframework.kafka
Version 2.1.0.RELEASE


org.apache.servicemix.bundles.spring-web from group org.apache.servicemix.bundles (version 4.1.1.RELEASE_3)

Group: org.apache.servicemix.bundles Artifact: org.apache.servicemix.bundles.spring-web
There is no JAR file uploaded. A download is not possible! Please choose another version.
1 downloads


spring-integration-jms from group org.springframework.integration (version 5.0.5.RELEASE)

Spring Integration JMS Support

Group: org.springframework.integration Artifact: spring-integration-jms
There is no JAR file uploaded. A download is not possible! Please choose another version.
1 downloads
Artifact spring-integration-jms
Group org.springframework.integration
Version 5.0.5.RELEASE


jpa-mapper-spring-boot-autoconfigure from group com.github.ffch (version 1.2.1)

Group: com.github.ffch Artifact: jpa-mapper-spring-boot-autoconfigure
There is no JAR file uploaded. A download is not possible! Please choose another version.
1 downloads


camel-example-spring-boot-rest-swagger from group org.apache.camel (version 2.19.5)

An example showing Camel REST DSL and Swagger with Spring Boot

Group: org.apache.camel Artifact: camel-example-spring-boot-rest-swagger
There is no JAR file uploaded. A download is not possible! Please choose another version.
1 downloads


org.apache.servicemix.bundles.spring-webmvc from group org.apache.servicemix.bundles (version 4.3.13.RELEASE_1)

Group: org.apache.servicemix.bundles Artifact: org.apache.servicemix.bundles.spring-webmvc

Download org.apache.servicemix.bundles.spring-webmvc.jar (4.3.13.RELEASE_1)
 

1 downloads


openmuc-driver-rest from group org.openmuc.framework (version 0.20.1)

REST driver for the OpenMUC framework.

Group: org.openmuc.framework Artifact: openmuc-driver-rest
Show documentation Show source 
Download openmuc-driver-rest.jar (0.20.1)
 

0 downloads
Artifact openmuc-driver-rest
Group org.openmuc.framework
Version 0.20.1


net.osgiliath.wrapper.spring-security-ldap from group net.osgiliath.wrappers (version 0.3.7)

Spring4 support for spring-security-ldap

Group: net.osgiliath.wrappers Artifact: net.osgiliath.wrapper.spring-security-ldap
Show source 
Download net.osgiliath.wrapper.spring-security-ldap.jar (0.3.7)
 

0 downloads


jersey-test-framework-core from group org.glassfish.jersey.test-framework (version 2.23)

Jersey Test Framework Core

Group: org.glassfish.jersey.test-framework Artifact: jersey-test-framework-core
Show documentation Show source 
Download jersey-test-framework-core.jar (2.23)
 

0 downloads


spring-cloud-starter-task-composedtaskrunner from group org.springframework.cloud.task.app (version 2.1.4.RELEASE)

Contains the app for the Composed Task Starter

Group: org.springframework.cloud.task.app Artifact: spring-cloud-starter-task-composedtaskrunner
Show documentation Show source 
Download spring-cloud-starter-task-composedtaskrunner.jar (2.1.4.RELEASE)
 

0 downloads


spring-boot-starter-ignite-client from group org.apache.ignite (version 3.0.0)

Group: org.apache.ignite Artifact: spring-boot-starter-ignite-client
Show source 
Download spring-boot-starter-ignite-client.jar (3.0.0)
 

0 downloads


daemon-framework-logsimple from group de.taimos (version 2.8)

Library providing daemon functionality

Group: de.taimos Artifact: daemon-framework-logsimple
Show documentation Show source 
Download daemon-framework-logsimple.jar (2.8)
 

0 downloads
Artifact daemon-framework-logsimple
Group de.taimos
Version 2.8


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

# Pact Spring/JUnit5 Support This module extends the base [Pact JUnit5 module](../pact-jvm-provider-junit5). See that for more details. For writing Spring 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 `@ExtendWith(SpringExtension.class)` and one of the pact source annotations to your test class (as per a JUnit 5 test), then add a method annotated with `@TestTemplate` and `@ExtendWith(PactVerificationSpringProvider.class)` that takes a `PactVerificationContext` parameter. You will need to call `verifyInteraction()` on the context parameter in your test template method. For example: ```java @ExtendWith(SpringExtension.class) @SpringBootTest(webEnvironment = SpringBootTest.WebEnvironment.DEFINED_PORT) @Provider("Animal Profile Service") @PactBroker public class ContractVerificationTest { @TestTemplate @ExtendWith(PactVerificationSpringProvider.class) void pactVerificationTestTemplate(PactVerificationContext context) { context.verifyInteraction(); } } ``` You will now be able to setup all the required properties using the Spring context, e.g. creating an application YAML file in the test resources: ```yaml pactbroker: host: your.broker.host auth: username: broker-user password: broker.password ``` You can also run pact tests against `MockMvc` without need to spin up the whole application context which takes time and often requires more additional setup (e.g. database). In order to run lightweight tests just use `@WebMvcTest` from Spring and `MockMvcTestTarget` as a test target before each test. For example: ```java @WebMvcTest @Provider("myAwesomeService") @PactBroker class ContractVerificationTest { @Autowired private MockMvc mockMvc; @TestTemplate @ExtendWith(PactVerificationInvocationContextProvider.class) void pactVerificationTestTemplate(PactVerificationContext context) { context.verifyInteraction(); } @BeforeEach void before(PactVerificationContext context) { context.setTarget(new MockMvcTestTarget(mockMvc)); } } ``` You can also use `MockMvcTestTarget` for tests without spring context by providing the controllers manually. For example: ```java @Provider("myAwesomeService") @PactFolder("pacts") class MockMvcTestTargetStandaloneMockMvcTestJava { @TestTemplate @ExtendWith(PactVerificationInvocationContextProvider.class) void pactVerificationTestTemplate(PactVerificationContext context) { context.verifyInteraction(); } @BeforeEach void before(PactVerificationContext context) { MockMvcTestTarget testTarget = new MockMvcTestTarget(); testTarget.setControllers(new DataResource()); context.setTarget(testTarget); } @RestController static class DataResource { @GetMapping("/data") @ResponseStatus(HttpStatus.NO_CONTENT) void getData(@RequestParam("ticketId") String ticketId) { } } } ``` **Important:** Since `@WebMvcTest` starts only Spring MVC components you can't use `PactVerificationSpringProvider` and need to fallback to `PactVerificationInvocationContextProvider`

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

0 downloads
Artifact pact-jvm-provider-junit5-spring
Group au.com.dius
Version 4.0.10


spring-data-envers from group org.springframework.data (version 1.0.2.RELEASE)

Spring Data extension to work with Hibernate Envers

Group: org.springframework.data Artifact: spring-data-envers
Show documentation Show source 
Download spring-data-envers.jar (1.0.2.RELEASE)
 

0 downloads
Artifact spring-data-envers
Group org.springframework.data
Version 1.0.2.RELEASE


skinny-standalone_2.10 from group org.skinny-framework (version 2.1.2)

skinny-standalone

Group: org.skinny-framework Artifact: skinny-standalone_2.10
Show documentation Show source 
Download skinny-standalone_2.10.jar (2.1.2)
 

0 downloads
Artifact skinny-standalone_2.10
Group org.skinny-framework
Version 2.1.2




Page 605 from 19476 (items total 292136)


© 2015 - 2025 Weber Informatics LLC | Privacy Policy