Download dropwizard-guice-0.7.0.2.jar file

Introduction

You can download dropwizard-guice-0.7.0.2.jar in this page.

License

The Apache Software License, Version 2.0

Type List

dropwizard-guice-0.7.0.2.jar file has the following types.

META-INF/MANIFEST.MF
META-INF/maven/com.hubspot.dropwizard/dropwizard-guice/pom.properties
META-INF/maven/com.hubspot.dropwizard/dropwizard-guice/pom.xml
com.hubspot.dropwizard.guice.AutoConfig.class
com.hubspot.dropwizard.guice.DropwizardEnvironmentModule.class
com.hubspot.dropwizard.guice.GuiceBundle.class
com.hubspot.dropwizard.guice.GuiceContainer.class
com.hubspot.dropwizard.guice.InjectableHealthCheck.class
com.hubspot.dropwizard.guice.JerseyContainerModule.class

Pom

dropwizard-guice-0.7.0.2.pom file content.

<?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>

    <repositories>
        <repository>
            <id>sonatype-nexus-snapshots</id>
            <name>Sonatype Nexus Snapshots</name>
            <url>http://oss.sonatype.org/content/repositories/snapshots</url>
        </repository>
    </repositories>

	<groupId>com.hubspot.dropwizard</groupId>
	<artifactId>dropwizard-guice</artifactId>
	<version>0.7.0.2</version>
	<name>Dropwizard Guice Support</name>
	<description>Simple library for using Guice DI in a dropwizard service.</description>
	<url>https://github.com/HubSpot/dropwizard-guice</url>

	<licenses>
		<license>
			<name>The Apache Software License, Version 2.0</name>
			<url>http://www.apache.org/licenses/LICENSE-2.0.txt</url>
			<distribution>repo</distribution>
		</license>
	</licenses>

	<scm>
		<connection>scm:git:git@github.com:HubSpot/dropwizard-guice.git</connection>
		<developerConnection>scm:git:git@github.com:HubSpot/dropwizard-guice.git</developerConnection>
		<url>git@github.com:HubSpot/dropwizard-guice.git</url>
	</scm>

	<developers>
		<developer>
			<id>eliast</id>
			<name>Elias Torres</name>
			<email>elias@hubspot.com</email>
		</developer>
	</developers>

	<dependencies>
        <dependency>
            <groupId>io.dropwizard</groupId>
            <artifactId>dropwizard-core</artifactId>
            <version>0.7.0</version>
        </dependency>
		<dependency>
			<groupId>com.google.inject.extensions</groupId>
			<artifactId>guice-servlet</artifactId>
			<version>3.0</version>
		</dependency>
		<dependency>
			<groupId>com.sun.jersey.contribs</groupId>
			<artifactId>jersey-guice</artifactId>
			<version>1.18.1</version>
		</dependency>
		<dependency>
			<groupId>org.reflections</groupId>
			<artifactId>reflections</artifactId>
			<version>0.9.8</version>
			<exclusions>
				<exclusion>
					<groupId>com.google.guava</groupId>
					<artifactId>guava</artifactId>
				</exclusion>
			</exclusions>
		</dependency>
	</dependencies>

    <build>
        <plugins>
            <plugin>
                <groupId>org.apache.maven.plugins</groupId>
                <artifactId>maven-compiler-plugin</artifactId>
                <version>2.5</version>
                <configuration>
                    <!-- http://maven.apache.org/plugins/maven-compiler-plugin/ -->
                    <source>1.7</source>
                    <target>1.7</target>
                </configuration>
            </plugin>

            <plugin>
                <groupId>org.apache.maven.plugins</groupId>
                <artifactId>maven-gpg-plugin</artifactId>
                <version>1.4</version>
                <executions>
                    <execution>
                        <id>sign-artifacts</id>
                        <phase>verify</phase>
                        <goals>
                            <goal>sign</goal>
                        </goals>
                    </execution>
                </executions>
            </plugin>

            <plugin>
                <groupId>org.apache.maven.plugins</groupId>
                <artifactId>maven-source-plugin</artifactId>
                <version>2.2.1</version>
                <executions>
                    <execution>
                        <id>attach-sources</id>
                        <goals>
                            <goal>jar-no-fork</goal>
                        </goals>
                    </execution>
                </executions>
            </plugin>

            <plugin>
             <groupId>org.apache.maven.plugins</groupId>
             <artifactId>maven-javadoc-plugin</artifactId>
             <version>2.9</version>
             <executions>
                 <execution>
                     <id>generate-javadoc-jar</id>
                     <goals>
                         <goal>jar</goal>
                     </goals>
                 </execution>
             </executions>
            </plugin>
        </plugins>
    </build>

</project>

POM Entry

<dependency>
   <groupId>com.hubspot.dropwizard</groupId>
   <artifactId>dropwizard-guice</artifactId>
   <version>0.7.0.2</version>
</dependency>

Download

If you think the following dropwizard-guice-0.7.0.2.jar downloaded from Maven central repository is inappropriate, such as containing malicious code/tools or violating the copyright, please email , thanks.



Download dropwizard-guice-0.7.0.2.jar file




PreviousNext

Related