-
Notifications
You must be signed in to change notification settings - Fork 6
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #162 from Thadoy/dvalin_jms
Dvalin jms
- Loading branch information
Showing
144 changed files
with
5,855 additions
and
477 deletions.
There are no files selected for viewing
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,10 @@ | ||
## interconnect | ||
Interconnect enables service communication with objects implementing the interface `InterconnectObject`. | ||
|
||
*coming* | ||
interconnect needs `dvalin-jms` for service communication. | ||
|
||
* The `@Daemon` annotation is used with interfaces that extend `IDaemon` to provide information that clients can interact with that daemon. | ||
* `@Interconnect` | ||
|
||
### interconnect-core-legacy | ||
The projects `interconnect-core-legacy` provide legacy implementation. Relys on `interconnect-core-legacy-exceptions` and `dvalin-jms` |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,116 @@ | ||
<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/xsd/maven-4.0.0.xsd"> | ||
<modelVersion>4.0.0</modelVersion> | ||
<parent> | ||
<groupId>de.taimos</groupId> | ||
<artifactId>dvalin-interconnect-parent</artifactId> | ||
<version>1.36-SNAPSHOT</version> | ||
</parent> | ||
<artifactId>dvalin-interconnect-core-legacy</artifactId> | ||
<name>(Legacy) Dvalin interconnect core library</name> | ||
<properties> | ||
</properties> | ||
<dependencies> | ||
<dependency> | ||
<groupId>de.taimos</groupId> | ||
<artifactId>dvalin-daemon</artifactId> | ||
<version>${project.version}</version> | ||
</dependency> | ||
<dependency> | ||
<groupId>de.taimos</groupId> | ||
<artifactId>dvalin-interconnect-model</artifactId> | ||
<version>${project.version}</version> | ||
</dependency> | ||
|
||
<dependency> | ||
<groupId>org.apache.activemq</groupId> | ||
<artifactId>activemq-pool</artifactId> | ||
<version>${activemq.version}</version> | ||
</dependency> | ||
<dependency> | ||
<groupId>org.apache.activemq</groupId> | ||
<artifactId>activemq-client</artifactId> | ||
<version>${activemq.version}</version> | ||
</dependency> | ||
|
||
<!-- Spring Framework --> | ||
<!-- Core utilities used by other modules. Define this if you use Spring | ||
Utility APIs (org.springframework.core.*/org.springframework.util.*) --> | ||
<dependency> | ||
<groupId>org.springframework</groupId> | ||
<artifactId>spring-core</artifactId> | ||
<version>${org.springframework.version}</version> | ||
</dependency> | ||
|
||
<!-- Expression Language (depends on spring-core) Define this if you use | ||
Spring Expression APIs (org.springframework.expression.*) --> | ||
<dependency> | ||
<groupId>org.springframework</groupId> | ||
<artifactId>spring-expression</artifactId> | ||
<version>${org.springframework.version}</version> | ||
</dependency> | ||
|
||
<!-- JMS utilities --> | ||
<dependency> | ||
<groupId>org.springframework</groupId> | ||
<artifactId>spring-jms</artifactId> | ||
<version>${org.springframework.version}</version> | ||
</dependency> | ||
|
||
<!-- Bean Factory and JavaBeans utilities (depends on spring-core) Define | ||
this if you use Spring Bean APIs (org.springframework.beans.*) --> | ||
<dependency> | ||
<groupId>org.springframework</groupId> | ||
<artifactId>spring-beans</artifactId> | ||
<version>${org.springframework.version}</version> | ||
</dependency> | ||
<!-- Aspect Oriented Programming (AOP) Framework (depends on spring-core, | ||
spring-beans) Define this if you use Spring AOP APIs (org.springframework.aop.*) --> | ||
<dependency> | ||
<groupId>org.springframework</groupId> | ||
<artifactId>spring-aop</artifactId> | ||
<version>${org.springframework.version}</version> | ||
</dependency> | ||
|
||
<!-- Application Context (depends on spring-core, spring-expression, spring-aop, | ||
spring-beans) This is the central artifact for Spring's Dependency Injection | ||
Container and is generally always defined --> | ||
<dependency> | ||
<groupId>org.springframework</groupId> | ||
<artifactId>spring-context</artifactId> | ||
<version>${org.springframework.version}</version> | ||
</dependency> | ||
|
||
<!-- Various Application Context utilities, including EhCache, JavaMail, | ||
Quartz, and Freemarker integration Define this if you need any of these integrations --> | ||
<dependency> | ||
<groupId>org.springframework</groupId> | ||
<artifactId>spring-context-support</artifactId> | ||
<version>${org.springframework.version}</version> | ||
</dependency> | ||
|
||
<!-- Transaction Management Abstraction (depends on spring-core, spring-beans, | ||
spring-aop, spring-context) Define this if you use Spring Transactions or | ||
DAO Exception Hierarchy (org.springframework.transaction.*/org.springframework.dao.*) --> | ||
<dependency> | ||
<groupId>org.springframework</groupId> | ||
<artifactId>spring-tx</artifactId> | ||
<version>${org.springframework.version}</version> | ||
</dependency> | ||
|
||
<!-- Support for testing Spring applications with tools such as JUnit and | ||
TestNG This artifact is generally always defined with a 'test' scope for | ||
the integration testing framework and unit testing stubs --> | ||
<dependency> | ||
<groupId>org.springframework</groupId> | ||
<artifactId>spring-test</artifactId> | ||
<version>${org.springframework.version}</version> | ||
<scope>test</scope> | ||
</dependency> | ||
<dependency> | ||
<groupId>javax.jms</groupId> | ||
<artifactId>javax.jms-api</artifactId> | ||
<version>2.0.1</version> | ||
<scope>compile</scope> | ||
</dependency> | ||
</dependencies> | ||
</project> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.