gin
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency>
<groupId>io.github.gwtplus.gin</groupId>
<artifactId>gin</artifactId>
<version>3.0.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/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<groupId>io.github.gwtplus.gin</groupId>
<artifactId>gin</artifactId>
<version>3.0.0</version>
<packaging>jar</packaging>
<name>Gin</name>
<description>Gin (GWT INjection) brings automatic dependency injection to GWT client-side code. Gin is built on top of Guice and uses (a subset of) Guice's binding language.</description>
<!-- Provide exact url for proper relative urls, even though parent has a redirect file -->
<url>http://gwtplus.github.io/google-gin/site</url>
<inceptionYear>2008</inceptionYear>
<mailingLists>
<mailingList>
<name>Gin Users</name>
<archive>https://groups.google.com/forum/#!forum/google-gin</archive>
</mailingList>
</mailingLists>
<developers>
<developer>
<id>bstoler</id>
<name>Brian Stoler</name>
</developer>
<developer>
<id>aragos</id>
<name>Peter Schmitt</name>
</developer>
<developer>
<id>limpbizkit</id>
<name>Jesse Wilson</name>
</developer>
<developer>
<id>robbie.vanbrabant</id>
<name>Robbie Vanbrabant</name>
</developer>
<developer>
<id>fazal.asim</id>
<name>Fazal Asim</name>
</developer>
<developer>
<id>dburrows</id>
<name>Daniel Burrows</name>
</developer>
<developer>
<id>scottb</id>
<name>Scott Blum</name>
</developer>
<developer>
<id>awiner</id>
<name>Adam Winer</name>
</developer>
<developer>
<id>philippe.beaudoin</id>
<name>Philippe Beaudoin</name>
</developer>
<developer>
<id>bchambers</id>
<name>Ben Chambers</name>
</developer>
</developers>
<licenses>
<license>
<name>Apache License 2.0</name>
<url>http://www.apache.org/licenses/LICENSE-2.0</url>
<distribution>repo</distribution>
</license>
</licenses>
<issueManagement>
<system>GitHub Issues</system>
<url>https://github.com/gwtplus/google-gin/issues</url>
</issueManagement>
<ciManagement>
<system>Travis CI</system>
<url>https://travis-ci.org/gwtplus/google-gin</url>
</ciManagement>
<scm>
<connection>scm:git:https://github.com/gwtplus/google-gin.git</connection>
<developerConnection>scm:git:https://github.com/gwtplus/google-gin.git</developerConnection>
<url>https://github.com/gwtplus/google-gin</url>
<tag>v3.0.0</tag>
</scm>
<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<java.release>1.8</java.release>
<guice.version>4.2.0</guice.version>
<gwt.version>2.8.2</gwt.version>
<jsr330.version>1</jsr330.version> <!-- @Inject, @Singleton -->
<jsr305.version>3.0.2</jsr305.version> <!-- @Nullable -->
<jsr250.version>1.3.2</jsr250.version> <!-- @Generated, @PostConstruct -->
</properties>
<dependencies>
<!-- JSR-330 -->
<dependency>
<groupId>javax.inject</groupId>
<artifactId>javax.inject</artifactId>
<version>${jsr330.version}</version>
<!-- with our internal javax.inject.Inject.gwt.xml module -->
</dependency>
<dependency>
<groupId>javax.inject</groupId>
<artifactId>javax.inject</artifactId>
<version>${jsr330.version}</version>
<classifier>sources</classifier>
</dependency>
<!-- Guice and AssitedInject extension -->
<dependency>
<groupId>com.google.inject</groupId>
<artifactId>guice</artifactId>
<version>${guice.version}</version>
</dependency>
<dependency>
<groupId>com.google.inject.extensions</groupId>
<artifactId>guice-assistedinject</artifactId>
<version>${guice.version}</version>
</dependency>
<!-- GWT -->
<dependency>
<groupId>com.google.gwt</groupId>
<artifactId>gwt-user</artifactId>
<version>${gwt.version}</version>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>com.google.gwt</groupId>
<artifactId>gwt-dev</artifactId>
<version>${gwt.version}</version>
<scope>provided</scope>
</dependency>
<!-- Common Annotations -->
<dependency>
<groupId>com.google.code.findbugs</groupId>
<artifactId>jsr305</artifactId>
<version>${jsr305.version}</version>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>javax.annotation</groupId>
<artifactId>javax.annotation-api</artifactId>
<version>${jsr250.version}</version>
<scope>provided</scope>
</dependency>
<!-- Testing -->
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<version>3.8.1</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.easymock</groupId>
<artifactId>easymock</artifactId>
<version>3.1</version>
<scope>test</scope>
</dependency>
</dependencies>
<repositories>
<repository>
<id>sonatype-nexus-snapshots</id>
<name>Sonatype Nexus Snapshots</name>
<url>https://oss.sonatype.org/content/repositories/snapshots</url>
<releases>
<enabled>false</enabled>
</releases>
<snapshots>
<enabled>true</enabled>
</snapshots>
</repository>
</repositories>
<distributionManagement>
<snapshotRepository>
<id>sonatype-nexus-snapshots</id>
<name>Sonatype Nexus Snapshots</name>
<url>https://oss.sonatype.org/content/repositories/snapshots</url>
</snapshotRepository>
<repository>
<id>sonatype-nexus-staging</id>
<name>Nexus Release Repository</name>
<url>https://oss.sonatype.org/service/local/staging/deploy/maven2/</url>
</repository>
</distributionManagement>
<build>
<plugins>
<plugin>
<artifactId>maven-compiler-plugin</artifactId>
<version>3.7.0</version>
<configuration>
<source>${java.release}</source>
<target>${java.release}</target>
</configuration>
</plugin>
<plugin>
<artifactId>maven-resources-plugin</artifactId>
<version>3.0.2</version>
<executions>
<execution>
<id>client-sources</id>
<phase>process-resources</phase>
<goals>
<goal>copy-resources</goal>
</goals>
<configuration>
<outputDirectory>${project.build.outputDirectory}</outputDirectory>
<resources>
<resource>
<directory>${project.build.sourceDirectory}</directory>
<include>com/google/gwt/inject/client/**/*.java</include>
<filtering>false</filtering>
</resource>
</resources>
</configuration>
</execution>
</executions>
</plugin>
<plugin>
<artifactId>maven-surefire-plugin</artifactId>
<version>2.21.0</version>
<configuration>
<!-- test-rebind -->
<includes>
<include>com/google/gwt/inject/rebind/**/*Test.java</include>
</includes>
</configuration>
</plugin>
<plugin>
<artifactId>maven-failsafe-plugin</artifactId>
<version>2.21.0</version>
<configuration>
<includes>
<include>com/google/gwt/inject/*TestSuite.java</include>
</includes>
<additionalClasspathElements>
<additionalClasspathElement>${project.build.testSourceDirectory}</additionalClasspathElement>
</additionalClasspathElements>
<useManifestOnlyJar>false</useManifestOnlyJar>
<forkCount>1C</forkCount>
<reuseForks>false</reuseForks>
</configuration>
<executions>
<execution>
<id>test-devmode</id>
<goals>
<goal>integration-test</goal>
<goal>verify</goal>
</goals>
<configuration>
<systemPropertyVariables>
<!-- Add -logLevel TRACE to get more debug output -->
<gwt.args>
-devMode
-gen target/generated-test-sources/test-devmode
-war target/war/test-devmode
</gwt.args>
</systemPropertyVariables>
<reportsDirectory>${project.build.directory}/failsafe-reports/test-devmode</reportsDirectory>
</configuration>
</execution>
<execution>
<id>test-web</id>
<goals>
<goal>integration-test</goal>
<goal>verify</goal>
</goals>
<configuration>
<systemPropertyVariables>
<!-- Add -logLevel TRACE to get more debug output -->
<gwt.args>
-prod -style PRETTY
-gen target/generated-test-sources/test-web
-war target/war/test-web
</gwt.args>
</systemPropertyVariables>
<reportsDirectory>${project.build.directory}/failsafe-reports/test-web</reportsDirectory>
</configuration>
</execution>
</executions>
</plugin>
<plugin>
<artifactId>maven-source-plugin</artifactId>
<version>3.0.1</version>
<executions>
<execution>
<phase>package</phase>
<goals>
<goal>jar-no-fork</goal>
</goals>
</execution>
</executions>
</plugin>
<plugin>
<artifactId>maven-site-plugin</artifactId>
<version>3.7</version>
<dependencies>
<dependency>
<groupId>org.apache.maven.doxia</groupId>
<artifactId>doxia-module-markdown</artifactId>
<version>1.8</version>
</dependency>
</dependencies>
</plugin>
</plugins>
</build>
<!-- TODO: More reporting? test coverage? -->
<reporting>
<plugins>
<plugin>
<artifactId>maven-project-info-reports-plugin</artifactId>
<version>2.9</version>
</plugin>
</plugins>
</reporting>
<profiles>
<profile>
<id>release</id>
<build>
<plugins>
<plugin>
<!-- TODO: Fix javadoc warnings -->
<artifactId>maven-javadoc-plugin</artifactId>
<version>3.0.0</version>
<executions>
<execution>
<phase>package</phase>
<goals>
<goal>jar</goal>
</goals>
</execution>
</executions>
<configuration>
<links>
<link>https://google.github.io/guice/api-docs/latest/javadoc/</link>
<link>http://www.gwtproject.org/javadoc/latest/</link>
</links>
<detectJavaApiLink>true</detectJavaApiLink>
<quite>true</quite>
<doclint>none</doclint>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-release-plugin</artifactId>
<version>2.5.3</version>
<configuration>
<tagNameFormat>v@{project.version}</tagNameFormat>
<developmentVersion>HEAD-SNAPSHOT</developmentVersion>
<pushChanges>false</pushChanges>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-gpg-plugin</artifactId>
<version>1.6</version>
<executions>
<execution>
<id>sign-artifacts</id>
<phase>verify</phase>
<goals>
<goal>sign</goal>
</goals>
</execution>
</executions>
</plugin>
</plugins>
</build>
</profile>
<profile>
<id>ci</id>
<build>
<plugins>
<plugin>
<artifactId>maven-invoker-plugin</artifactId>
<version>3.0.1</version>
<configuration>
<localRepositoryPath>${project.build.directory}/it-repo</localRepositoryPath>
</configuration>
<executions>
<execution>
<id>integration-test</id>
<goals>
<goal>install</goal>
<goal>run</goal>
</goals>
</execution>
</executions>
</plugin>
</plugins>
</build>
</profile>
</profiles>
</project>