escher
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>com.emarsys</groupId> <artifactId>escher</artifactId> <version>1.1.2</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> <groupId>com.emarsys</groupId> <artifactId>escher</artifactId> <version>1.1.2</version> <packaging>jar</packaging> <name>Escher</name> <description>Stateless HTTP Request Signing</description> <url>http://escherauth.io</url> <licenses> <license> <name>MIT</name> <url>https://github.com/emartech/escher-java/blob/master/LICENSE</url> </license> </licenses> <developers> <developer> <name>Robert Gargya</name> <email>robert.gargya@emarsys.com</email> <organization>Emarsys</organization> <organizationUrl>http://www.emarsys.com</organizationUrl> </developer> </developers> <scm> <connection>scm:git:git@github.com:emartech/escher-java.git</connection> <developerConnection>scm:git:git@github.com:emartech/escher-java.git</developerConnection> <url>git@github.com:emartech/escher-java.git</url> </scm> <build> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-compiler-plugin</artifactId> <configuration> <source>1.8</source> <target>1.8</target> </configuration> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-javadoc-plugin</artifactId> <executions> <execution> <id>attach-javadocs</id> <goals> <goal>jar</goal> </goals> </execution> </executions> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-surefire-plugin</artifactId> <version>3.0.0-M4</version> <configuration> <includes> <include>**/*Test*.java</include> </includes> </configuration> </plugin> </plugins> </build> <dependencies> <dependency> <groupId>org.apache.httpcomponents</groupId> <artifactId>httpclient</artifactId> <version>4.5.13</version> </dependency> <!-- org.apache.httpcomponents:httpclient@4.5.13 would use 1.11 which has a know vulnerability: https://issues.apache.org/jira/browse/CODEC-134 Which is fixed in 1.13. --> <dependency> <groupId>commons-codec</groupId> <artifactId>commons-codec</artifactId> <version>1.15</version> </dependency> <dependency> <groupId>javax.xml.bind</groupId> <artifactId>jaxb-api</artifactId> <version>2.3.1</version> </dependency> <dependency> <groupId>com.fasterxml.jackson.core</groupId> <artifactId>jackson-databind</artifactId> <version>2.15.2</version> <scope>test</scope> </dependency> <dependency> <groupId>com.tngtech.java</groupId> <artifactId>junit-dataprovider</artifactId> <version>1.13.1</version> <scope>test</scope> </dependency> <dependency> <groupId>junit</groupId> <artifactId>junit</artifactId> <version>4.13.2</version> <scope>test</scope> </dependency> <dependency> <groupId>org.hamcrest</groupId> <artifactId>hamcrest</artifactId> <version>2.2</version> <scope>test</scope> </dependency> </dependencies> </project>