Skip to content

Commit 7a70007

Browse files
author
Igor Polevoy
committed
#253 Upgrade HornetNest to Artemis 1.2
1 parent ba4f702 commit 7a70007

File tree

18 files changed

+415
-275
lines changed

18 files changed

+415
-275
lines changed

javalite-async/README.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
# JavaLite Async is an asynchronous processor for Java applications
2+
3+
It is a wrapper library for processing asynchronous jobs. It can be used in a web application to process
4+
jobs in a thread separate from the one that renders HTML. It is also a general purpose library that can be used in any
5+
non-web system.
6+
7+
Internal Implementation is based on [Apache ActiveMQ Artemis](https://activemq.apache.org/artemis/).

javalite-hornet-nest/pom.xml renamed to javalite-async/pom.xml

Lines changed: 16 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -2,9 +2,9 @@
22
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
33

44
<modelVersion>4.0.0</modelVersion>
5-
<artifactId>javalite-hornet-nest</artifactId>
5+
<artifactId>javalite-async</artifactId>
66
<version>1.14-SNAPSHOT</version>
7-
<name>JavaLite - Hornet Nest</name>
7+
<name>JavaLite - Async</name>
88
<packaging>jar</packaging>
99

1010
<parent>
@@ -13,6 +13,10 @@
1313
<version>1.14-SNAPSHOT</version>
1414
</parent>
1515

16+
<properties>
17+
<artemis.version>1.2.0</artemis.version>
18+
</properties>
19+
1620
<dependencies>
1721
<dependency>
1822
<groupId>junit</groupId>
@@ -35,17 +39,21 @@
3539
</dependency>
3640

3741
<dependency>
38-
<groupId>org.hornetq</groupId>
39-
<artifactId>hornetq-server</artifactId>
42+
<groupId>org.apache.activemq</groupId>
43+
<artifactId>artemis-server</artifactId>
44+
<version>${artemis.version}</version>
4045
</dependency>
4146

4247
<dependency>
43-
<groupId>org.hornetq</groupId>
44-
<artifactId>hornetq-jms-client</artifactId>
48+
<groupId>org.apache.activemq</groupId>
49+
<artifactId>artemis-jms-server</artifactId>
50+
<version>${artemis.version}</version>
4551
</dependency>
52+
4653
<dependency>
47-
<groupId>org.hornetq</groupId>
48-
<artifactId>hornetq-jms-server</artifactId>
54+
<groupId>org.apache.activemq</groupId>
55+
<artifactId>artemis-jms-client</artifactId>
56+
<version>${artemis.version}</version>
4957
</dependency>
5058

5159
<dependency>

0 commit comments

Comments
 (0)