extended-echo-connector
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>com.java-adventures.rsc</groupId> <artifactId>extended-echo-connector</artifactId> <version>1.1.0</version> </dependency>
<?xml version="1.0"?> <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> <artifactId>extended-echo-example</artifactId> <groupId>com.java-adventures.rsc</groupId> <version>1.1.0</version> <relativePath>../pom.xml</relativePath> </parent> <artifactId>extended-echo-connector</artifactId> <packaging>rar</packaging> <name>Extended Echo Connector</name> <url>http://java-adventures.com</url> <build> <finalName>extended-echo-connector</finalName> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-jar-plugin</artifactId> <executions> <execution> <id>jar-packaging</id> <goals> <goal>jar</goal> </goals> </execution> </executions> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-rar-plugin</artifactId> <executions> <execution> <id>rar-packaging</id> <goals> <goal>rar</goal> </goals> </execution> </executions> </plugin> </plugins> </build> <dependencies> <dependency> <groupId>${project.groupId}</groupId> <artifactId>extended-echo-connector-api</artifactId> <version>${project.version}</version> </dependency> <dependency> <groupId>${project.groupId}</groupId> <artifactId>remote-system-connector</artifactId> <version>${project.version}</version> </dependency> <dependency> <groupId>org.slf4j</groupId> <artifactId>slf4j-jdk14</artifactId> </dependency> </dependencies> <description>Implementation of the example Echo API. This adapter will not connect to a real remote system. It simply runs in-memory and adds the url, username and password property to the request for the sake of this demo.</description> </project>