mgwt
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>com.googlecode.mgwt</groupId> <artifactId>mgwt</artifactId> <version>2.0.0</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/maven-v4_0_0.xsd"> <!-- sonatype parent pom --> <parent> <groupId>org.sonatype.oss</groupId> <artifactId>oss-parent</artifactId> <version>7</version> </parent> <modelVersion>4.0.0</modelVersion> <groupId>com.googlecode.mgwt</groupId> <artifactId>mgwt</artifactId> <version>2.0.0</version> <packaging>jar</packaging> <name>mgwt</name> <properties> <gwtversion>2.6.1</gwtversion> <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> </properties> <url>http://www.m-gwt.com</url> <description>using gwt to write mobile (native) apps</description> <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> <contributors> <contributor> <name>Daniel Kurka</name> <url>http://www.daniel-kurka.de</url> </contributor> <contributor> <name>Katharina Fahnenbruck</name> <url>http://katharina-fahnenbruck.de/</url> </contributor> </contributors> <scm> <url>https://code.google.com/p/mgwt/</url> <connection>scm:git:git@github.com:mgwt/mgwt.git</connection> <developerConnection>scm:git:git@github.com:mgwt/mgwt.git</developerConnection> </scm> <build> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-compiler-plugin</artifactId> <version>2.3.2</version> <configuration> <source>1.6</source> <target>1.6</target> </configuration> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-javadoc-plugin</artifactId> <version>2.7</version> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-source-plugin</artifactId> <version>2.1.2</version> <executions> <execution> <id>attach-sources</id> <phase>verify</phase> <goals> <goal>jar-no-fork</goal> </goals> </execution> </executions> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-eclipse-plugin</artifactId> <version>2.8</version> <configuration> <downloadSources>true</downloadSources> <downloadJavadocs>true</downloadJavadocs> <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.appengine.eclipse.core.projectValidator</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> <excludes> <exclude>com.google.gwt:gwt-servlet</exclude> <exclude>com.google.gwt:gwt-user</exclude> <exclude>com.google.gwt:gwt-dev</exclude> <exclude>javax.validation:validation-api</exclude> </excludes> </configuration> </plugin> <plugin> <artifactId>maven-surefire-plugin</artifactId> <version>2.6</version> <configuration> <includes> <include>**/*Test.java</include> </includes> <excludes> <exclude>**/*GwtTest.java</exclude> <!-- Exclude innert classes --> <exclude>**/*$*</exclude> </excludes> </configuration> </plugin> <plugin> <groupId>org.codehaus.mojo</groupId> <artifactId>gwt-maven-plugin</artifactId> <version>2.6.1</version> <executions> <execution> <goals> <goal>test</goal> </goals> <configuration> <includes>**/*GwtTest.java</includes> <productionMode>true</productionMode> <sourceLevel>1.7</sourceLevel> <mode>htmlunit</mode> <timeOut>300</timeOut> <testTimeOut>300</testTimeOut> <testBeginTimeout>5</testBeginTimeout> <testFailureIgnore>false</testFailureIgnore> </configuration> </execution> </executions> </plugin> </plugins> <resources> <resource> <directory>src/main/java</directory> <includes> <include>**/client/**</include> <include>**/shared/**</include> <include>**/*.gwt.xml</include> <include>**/public/**</include> </includes> </resource> </resources> </build> <dependencies> <dependency> <groupId>junit</groupId> <artifactId>junit</artifactId> <version>4.7</version> <type>jar</type> <scope>test</scope> </dependency> <dependency> <groupId>com.google.gwt</groupId> <artifactId>gwt-user</artifactId> <version>${gwtversion}</version> <scope>provided</scope> </dependency> <dependency> <groupId>com.google.gwt</groupId> <artifactId>gwt-dev</artifactId> <version>${gwtversion}</version> <scope>provided</scope> </dependency> <dependency> <groupId>javax.validation</groupId> <artifactId>validation-api</artifactId> <version>1.0.0.GA</version> <scope>provided</scope> </dependency> <dependency> <groupId>javax.validation</groupId> <artifactId>validation-api</artifactId> <version>1.0.0.GA</version> <classifier>sources</classifier> <scope>provided</scope> </dependency> <dependency> <groupId>org.mockito</groupId> <artifactId>mockito-all</artifactId> <version>1.9.5</version> <scope>test</scope> </dependency> <dependency> <groupId>com.google.gwt.gwtmockito</groupId> <artifactId>gwtmockito</artifactId> <version>1.1.3</version> <scope>test</scope> </dependency> </dependencies> </project>