camel-url-handler
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency>
<groupId>com.github.igor-suhorukov</groupId>
<artifactId>camel-url-handler</artifactId>
<version>2.20.1.3</version>
</dependency><?xml version="1.0" encoding="UTF-8"?>
<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>org.sonatype.oss</groupId>
<artifactId>oss-parent</artifactId>
<version>7</version>
</parent>
<groupId>com.github.igor-suhorukov</groupId>
<artifactId>camel-url-handler</artifactId>
<version>2.20.1.3</version>
<description>Extend java.net.URL with Apache Camel endpoint components and supported transports</description>
<scm>
<url>https://github.com/igor-suhorukov/camel-url-handler.git</url>
<connection>scm:git:git://github.com/igor-suhorukov/camel-url-handler.git</connection>
<developerConnection>scm:git:ssh://git@github.com/igor-suhorukov/camel-url-handler.git</developerConnection>
<tag>HEAD</tag>
</scm>
<developers>
<developer>
<name>Igor Sukhorukov</name>
<url>http://suhorukov.blogspot.ru</url>
<email>igor.suhorukov[skip this] at gmail.com</email>
</developer>
</developers>
<licenses>
<license>
<name>Apache License, Version 2.0</name>
<url>http://www.apache.org/licenses/LICENSE-2.0.txt</url>
<distribution>repo</distribution>
</license>
</licenses>
<properties>
<maven.compiler.source>1.8</maven.compiler.source>
<maven.compiler.target>1.8</maven.compiler.target>
<camel.version>2.20.1</camel.version>
</properties>
<dependencies>
<dependency>
<groupId>org.apache.camel</groupId>
<artifactId>camel-core</artifactId>
<version>${camel.version}</version>
</dependency>
<dependency>
<groupId>com.github.igor-suhorukov</groupId>
<artifactId>mvn-classloader</artifactId>
<version>1.8</version>
</dependency>
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<version>4.12</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>commons-io</groupId>
<artifactId>commons-io</artifactId>
<version>2.4</version>
<scope>test</scope>
</dependency>
</dependencies>
</project>