gwt-method-inject
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>net.wetheinter</groupId> <artifactId>gwt-method-inject</artifactId> <version>2.5.1</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> <parent> <groupId>net.wetheinter</groupId> <artifactId>xapi</artifactId> <version>0.4</version> <relativePath>../../pom.xml</relativePath> </parent> <groupId>net.wetheinter</groupId> <artifactId>gwt-method-inject</artifactId> <version>2.5.1</version> <properties> <gwt.version>2.5.1</gwt.version> <webAppDirectory>target/www-test</webAppDirectory> <maven.compiler.source>1.6</maven.compiler.source> <maven.compiler.target>1.6</maven.compiler.target> <relative.output>target</relative.output> </properties> <dependencies> <dependency> <groupId>net.wetheinter</groupId> <artifactId>xapi-dev-source</artifactId> <scope>provided</scope> </dependency> <dependency> <groupId>com.google.gwt</groupId> <artifactId>gwt-dev</artifactId> <version>${gwt.version}</version> <scope>provided</scope> </dependency> <dependency> <groupId>com.google.gwt</groupId> <artifactId>gwt-user</artifactId> <version>${gwt.version}</version> <scope>test</scope> </dependency> <dependency> <groupId>junit</groupId> <artifactId>junit</artifactId> <version>4.11</version> <scope>test</scope> </dependency> </dependencies> <build> <directory>${project.basedir}/target</directory> <resources> <resource> <directory>src/main/java</directory> </resource> <resource> <directory>src/main/resources</directory> </resource> </resources> <testResources> <testResource> <directory>src/test/java</directory> </testResource> <testResource> <directory>src/test/resources</directory> </testResource> </testResources> <plugins> <plugin> <artifactId>maven-surefire-plugin</artifactId> <version>2.15</version> <configuration> <additionalClasspathElements> <additionalClasspathElement>${project.build.testSourceDirectory}</additionalClasspathElement> <additionalClasspathElement>${project.build.sourceDirectory}</additionalClasspathElement> </additionalClasspathElements> <useManifestOnlyJar>false</useManifestOnlyJar> <forkCount>2</forkCount> <reuseForks>false</reuseForks> <systemProperties> <property> <name>gwt.args</name> <value>-out ${project.build.directory}/www-test -war ${project.build.directory}/www-test -prod -runStyle HtmlUnit:FF3 -userAgents gecko1_8</value> </property> </systemProperties> <skip>true</skip> </configuration> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-eclipse-plugin</artifactId> <version>2.8</version> <configuration> <downloadSources>true</downloadSources> <downloadJavadocs>true</downloadJavadocs> <buildOutputDirectory>war/WEB-INF/classes</buildOutputDirectory> <projectnatures> <projectnature>org.eclipse.jdt.core.javanature</projectnature> <nature>com.google.gwt.eclipse.core.gwtNature</nature> </projectnatures> <buildcommands> <buildcommand>org.eclipse.jdt.core.javabuilder</buildcommand> <buildcommand>com.google.gwt.eclipse.core.gwtProjectValidator</buildcommand> </buildcommands> <classpathContainers> <classpathContainer>org.eclipse.jdt.launching.JRE_CONTAINER</classpathContainer> <classpathContainer>com.google.gwt.eclipse.core.GWT_CONTAINER</classpathContainer> </classpathContainers> </configuration> </plugin> </plugins> </build> </project>