![Create React App Officially Deprecated Amid React 19 Compatibility Issues](https://cdn.sanity.io/images/cgdhsj6q/production/04fa08cf844d798abc0e1a6391c129363cc7e2ab-1024x1024.webp?w=400&fit=max&auto=format)
Security News
Create React App Officially Deprecated Amid React 19 Compatibility Issues
Create React App is officially deprecated due to React 19 issues and lack of maintenance—developers should switch to Vite or other modern alternatives.
org.zapodot:embedded-jms-parent
Advanced tools
Library that provides JUnit extensions setting up an embedded JMS broker (ActiveMQ) for testing. For JUnit 4 it provides a @Rule, while for JUnit 5 Jupiter it provides an extension that may be enabled by either the @ExtendWith or @RegisterExtension annotations provided by Jupiter
JUnit Rule that provides a ActiveMQ Embedded in-memory JMS Broker. It should be compatible with all the usual JMS integration tools such as Apache Camel and Spring JMS Template. Inspired by the Embedded DB JUnit Rule project.
This library is distributed through the Sonatype OSS repo and should thus be widely available. Java 8 or higher is required. Feedback is more than welcome. Feel free to create issues if you find bugs or have feature requests for future releases :-)
<dependency>
<groupId>org.zapodot</groupId>
<artifactId>embedded-jms-junit5</artifactId>
<version>0.2</version>
<scope>test</scope>
</dependency>
@ExtendWith(EmbeddedJmsBroker.class)
class EmbeddedJmsBrokerRequestReplySpringTest {
private static final String TEST_MESSAGE = "Test message";
private static final String DESTINATION = "queue:destination";
/**
* The type of property must be either ConnectionFactory, ActiveMQFactory or URI.
* If it is a URI to the broker is injected
*/
@EmbeddedJms
private ConnectionFactory connectionFactory;
@DisplayName("My test")
@Test
void testJmsLogic() throws Exception {
// make JMS magic
}
}
<dependency>
<groupId>org.zapodot</groupId>
<artifactId>embedded-jms-junit</artifactId>
<version>0.2</version>
<scope>test</scope>
</dependency>
@Rule
public EmbeddedJmsRule embeddedJmsRule = EmbeddedJmsRule.builder().build();
@Test
public void jmsTest() throws Exception {
final ConnectionFactory connectionFactory = embeddedJmsRule.connectionFactory();
// work your JMS magic
}
For more examples check the JUnit tests in this project
FAQs
Library that provides JUnit extensions setting up an embedded JMS broker (ActiveMQ) for testing. For JUnit 4 it provides a @Rule, while for JUnit 5 Jupiter it provides an extension that may be enabled by either the @ExtendWith or @RegisterExtension annotations provided by Jupiter
We found that org.zapodot:embedded-jms-parent demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 0 open source maintainers collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
Create React App is officially deprecated due to React 19 issues and lack of maintenance—developers should switch to Vite or other modern alternatives.
Security News
Oracle seeks to dismiss fraud claims in the JavaScript trademark dispute, delaying the case and avoiding questions about its right to the name.
Security News
The Linux Foundation is warning open source developers that compliance with global sanctions is mandatory, highlighting legal risks and restrictions on contributions.