pom.xml revision ada1678a4262b208a7b87391f520a7767d25287c
<?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">
<modelVersion>4.0.0</modelVersion>
<parent>
<groupId>org.glassfish.main.deployment</groupId>
<artifactId>deployment</artifactId>
<version>3.1.2</version>
<relativePath>/pom.xml</relativePath>
</parent>
<artifactId>dtds</artifactId>
<packaging>distribution-fragment</packaging>
<name>Set of DTDs for GlassFish Java EE distributions</name>
<build>
<plugins>
<plugin>
<groupId>org.jvnet.maven-antrun-extended-plugin</groupId>
<artifactId>maven-antrun-extended-plugin</artifactId>
<executions>
<execution>
<phase>compile</phase>
<configuration>
<tasks>
<jar file="target/dtds.jar">
<fileset dir="src/main/resources" />
</jar>
<attachArtifact file="target/dtds.jar" type="jar" classifier="resources" />
</tasks>
</configuration>
<goals>
<goal>run</goal>
</goals>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.glassfish.build</groupId>
<artifactId>maven-glassfishbuild-plugin</artifactId>
<extensions>true</extensions>
</plugin>
</plugins>
<extensions>
<extension>
<groupId>org.glassfish.build</groupId>
<artifactId>maven-glassfishbuild-extension</artifactId>
<version>${glassfishbuild.version}</version>
</extension>
</extensions>
</build>
<developers>
<developer>
<id>hzhang_jn</id>
<name>Hong Zhang</name>
<url>http://blogs.sun.com/misty</url>
<organization>Oracle, Inc.</organization>
<roles>
<role>lead</role>
<role>developer</role>
</roles>
</developer>
<developer>
<id>tjquinn</id>
<name>Tim Quinn</name>
<url>http://blogs.sun.com/quinn</url>
<organization>Oracle, Inc.</organization>
<roles>
<role>developer</role>
</roles>
</developer>
</developers>
</project>