hystrix-servlet
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>com.signicat.hystrix</groupId> <artifactId>hystrix-servlet</artifactId> <version>1.1.0</version> </dependency>
<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"> <name>Hystrix Servlet Integration</name> <description>A simple "glue" between Hystrix and Servlet 3.0.</description> <url>https://github.com/signicat/hystrix-servlet</url> <artifactId>hystrix-servlet</artifactId> <groupId>com.signicat.hystrix</groupId> <version>1.1.0</version> <modelVersion>4.0.0</modelVersion> <packaging>jar</packaging> <prerequisites> <maven>2.2.1</maven> </prerequisites> <licenses> <license> <name>Mozilla Public License Version 2.0</name> <url>https://www.mozilla.org/MPL/2.0/</url> </license> </licenses> <developers> <developer> <name>Einar Rosenvinge</name> <email>einarmr@gmail.com</email> <id>einarmr</id> <url>https://github.com/einarmr</url> <organization>Signicat AS</organization> <organizationUrl>http://www.signicat.com/</organizationUrl> <timezone>CET</timezone> </developer> </developers> <properties> <project.build.sourceEncoding>US-ASCII</project.build.sourceEncoding> <project.reporting.outputEncoding>US-ASCII</project.reporting.outputEncoding> <label>${env.BUILD_NUMBER}</label> <buildtag>${env.BUILD_TAG}</buildtag> <buildid>${env.BUILD_ID}</buildid> </properties> <distributionManagement> <repository> <id>bintray</id> <url>https://api.bintray.com/maven/signicat/maven/hystrix-servlet</url> </repository> <snapshotRepository> <id>tmpfile</id> <url>file:///tmp/</url> </snapshotRepository> </distributionManagement> <dependencies> <!-- *** --> <!-- *** --> <!-- *** --> <!-- *** DO NOT ADD SIGNICAT-INTERNAL DEPENDENCIES IN HERE! *** --> <!-- *** --> <!-- *** --> <!-- *** --> <dependency> <groupId>com.netflix.hystrix</groupId> <artifactId>hystrix-core</artifactId> <version>1.5.18</version> <scope>compile</scope> </dependency> <dependency> <groupId>com.netflix.hystrix</groupId> <artifactId>hystrix-servo-metrics-publisher</artifactId> <version>1.5.18</version> <scope>compile</scope> </dependency> <dependency> <groupId>org.eclipse.jetty</groupId> <artifactId>jetty-server</artifactId> <version>9.4.18.v20190429</version> <scope>test</scope> </dependency> <dependency> <groupId>org.eclipse.jetty</groupId> <artifactId>jetty-servlet</artifactId> <version>9.4.18.v20190429</version> <scope>test</scope> </dependency> <dependency> <groupId>org.apache.httpcomponents</groupId> <artifactId>httpclient</artifactId> <version>4.4</version> <scope>test</scope> </dependency> <dependency> <groupId>javax.servlet</groupId> <artifactId>javax.servlet-api</artifactId> <version>3.1.0</version> <scope>provided</scope> </dependency> <dependency> <groupId>log4j</groupId> <artifactId>log4j</artifactId> <version>1.2.12</version> <scope>provided</scope> </dependency> <dependency> <groupId>junit</groupId> <artifactId>junit</artifactId> <version>4.12</version> <scope>test</scope> </dependency> </dependencies> <build> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-release-plugin</artifactId> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-compiler-plugin</artifactId> <inherited>true</inherited> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-javadoc-plugin</artifactId> </plugin> </plugins> <pluginManagement> <!-- Organized according to plugins list from http://maven.apache.org/plugins/index.html --> <!-- Core plugins --> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-clean-plugin</artifactId> <version>2.6.1</version> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-compiler-plugin</artifactId> <version>3.3</version> <inherited>true</inherited> <configuration> <encoding>US-ASCII</encoding> <compilerVersion>1.8</compilerVersion> <source>1.8</source> <target>1.8</target> <debug>true</debug> <showDeprecation>true</showDeprecation> <showWarnings>true</showWarnings> </configuration> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-deploy-plugin</artifactId> <version>2.8.2</version> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-install-plugin</artifactId> <version>2.5.2</version> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-resources-plugin</artifactId> <version>2.7</version> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-site-plugin</artifactId> <version>3.4</version> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-surefire-plugin</artifactId> <version>2.18.1</version> </plugin> <!-- Packaging types / tools --> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-jar-plugin</artifactId> <version>2.6</version> <configuration> <archive> <manifest> <addDefaultImplementationEntries>true</addDefaultImplementationEntries> </manifest> <manifestEntries> <!-- The label is provided by jenkins. If it does not exist, this entry is omitted from the manifest --> <Implementation-Buildnumber>${label}</Implementation-Buildnumber> <Implementation-Buildtag>${buildtag}</Implementation-Buildtag> <Implementation-Buildid>${buildid}</Implementation-Buildid> </manifestEntries> </archive> </configuration> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-javadoc-plugin</artifactId> <version>2.10.3</version> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-release-plugin</artifactId> <version>2.5.2</version> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-source-plugin</artifactId> <version>2.4</version> </plugin> </plugins> </pluginManagement> </build> <profiles> <profile> <id>jenkins</id> <activation> <property> <name>user.name</name> <value>jenkins</value> </property> </activation> <build> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-javadoc-plugin</artifactId> <executions> <execution> <id>javadoc</id> <phase>process-sources</phase> <goals> <goal>javadoc</goal> </goals> </execution> </executions> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-source-plugin</artifactId> <executions> <execution> <id>attach-sources</id> <goals> <goal>jar</goal> </goals> </execution> </executions> </plugin> </plugins> </build> </profile> </profiles> <scm> <connection>scm:git:https://github.com/signicat/hystrix-servlet.git</connection> <developerConnection>scm:git:git@github.com:signicat/hystrix-servlet.git</developerConnection> <url>https://github.com/signicat/hystrix-servlet</url> <tag>hystrix-servlet-1.1.0</tag> </scm> </project>