diff options
author | Ray Cromwell <cromwellian@gmail.com> | 2009-05-06 23:44:13 +0000 |
---|---|---|
committer | Ray Cromwell <cromwellian@gmail.com> | 2009-05-06 23:44:13 +0000 |
commit | 503766b707d661aff81957e0f860d854bb608fda (patch) | |
tree | 5657b3f2775a85134b22b70e4900df72392946f0 /gwtquery-core/pom.xml | |
parent | e2fcafc45ee4cf09010f7754befd6a5012d5fc54 (diff) | |
download | gwtquery-503766b707d661aff81957e0f860d854bb608fda.tar.gz gwtquery-503766b707d661aff81957e0f860d854bb608fda.zip |
Add javadoc generation to pom.
Diffstat (limited to 'gwtquery-core/pom.xml')
-rw-r--r-- | gwtquery-core/pom.xml | 144 |
1 files changed, 87 insertions, 57 deletions
diff --git a/gwtquery-core/pom.xml b/gwtquery-core/pom.xml index 9c4b6622..647b3a4d 100644 --- a/gwtquery-core/pom.xml +++ b/gwtquery-core/pom.xml @@ -1,62 +1,92 @@ -<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"> - <modelVersion>4.0.0</modelVersion> - <parent> - <groupId>com.google.gwt</groupId> - <artifactId>gwtquery-project</artifactId> - <version>1.0-SNAPSHOT</version> - </parent> +<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"> + <modelVersion>4.0.0</modelVersion> + <parent> + <groupId>com.google.gwt</groupId> + <artifactId>gwtquery-project</artifactId> + <version>1.0-SNAPSHOT</version> + </parent> - <artifactId>gwtquery</artifactId> - <packaging>jar</packaging> - <name>Gwt Query Core API</name> - <url>http://gwtquery.com</url> - <dependencies> - <dependency> - <groupId>junit</groupId> - <artifactId>junit</artifactId> - <version>3.8.1</version> - <type>jar</type> - </dependency> - <dependency> - <groupId>com.google.gwt</groupId> - <artifactId>gwt-user</artifactId> - <version>${gwtversion}</version> - </dependency> - <dependency> - <groupId>com.google.gwt</groupId> - <artifactId>gwt-dev</artifactId> - <version>${gwtversion}</version> - <classifier>${gwtplatform}-libs</classifier> - <type>zip</type> - <scope>provided</scope> - </dependency> - <dependency> - <groupId>com.google.gwt</groupId> - <artifactId>gwt-dev</artifactId> - <version>${gwtversion}</version> - <classifier>${gwtplatform}</classifier> - <scope>provided</scope> - </dependency> - </dependencies> - <build> - <resources> - <resource> - <directory>${basedir}/src/main/java</directory> - </resource> - <resource> - <directory>${basedir}/src/main/resources</directory> - </resource> - </resources> - <testResources> - <testResource> - <directory>${basedir}/src/test/java</directory> - </testResource> - <testResource> - <directory>${basedir}/src/test/resources</directory> - </testResource> + <artifactId>gwtquery</artifactId> + <packaging>jar</packaging> + <name>Gwt Query Core API</name> + <url>http://gwtquery.com</url> + <dependencies> + <dependency> + <groupId>junit</groupId> + <artifactId>junit</artifactId> + <version>3.8.1</version> + <type>jar</type> + </dependency> + <dependency> + <groupId>com.google.gwt</groupId> + <artifactId>gwt-user</artifactId> + <version>${gwtversion}</version> + </dependency> + <dependency> + <groupId>com.google.gwt</groupId> + <artifactId>gwt-dev</artifactId> + <version>${gwtversion}</version> + <classifier>${gwtplatform}-libs</classifier> + <type>zip</type> + <scope>provided</scope> + </dependency> + <dependency> + <groupId>com.google.gwt</groupId> + <artifactId>gwt-dev</artifactId> + <version>${gwtversion}</version> + <classifier>${gwtplatform}</classifier> + <scope>provided</scope> + </dependency> + </dependencies> + <build> + <resources> + <resource> + <directory>${basedir}/src/main/java</directory> + </resource> + <resource> + <directory>${basedir}/src/main/resources</directory> + </resource> + </resources> + <testResources> + <testResource> + <directory>${basedir}/src/test/java</directory> + </testResource> + <testResource> + <directory>${basedir}/src/test/resources</directory> + </testResource> - </testResources> + </testResources> - </build> + <plugins> + <plugin> + <groupId>org.apache.maven.plugins</groupId> + <artifactId>maven-source-plugin</artifactId> + <executions> + <execution> + <phase>package</phase> + <goals> + <goal>jar</goal> + </goals> + </execution> + </executions> + </plugin> + <plugin> + <groupId>org.apache.maven.plugins</groupId> + <artifactId>maven-javadoc-plugin</artifactId> + <executions> + <execution> + <id>attach-javadocs</id> + <goals> + <goal>jar</goal> + </goals> + </execution> + </executions> + </plugin> + + </plugins> + + </build> </project> |