You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@myfaces.apache.org by sk...@apache.org on 2008/01/28 16:03:13 UTC

svn commit: r615905 - /myfaces/orchestra/trunk/core/pom.xml

Author: skitching
Date: Mon Jan 28 07:03:12 2008
New Revision: 615905

URL: http://svn.apache.org/viewvc?rev=615905&view=rev
Log:
Indenting cleanup only

Modified:
    myfaces/orchestra/trunk/core/pom.xml

Modified: myfaces/orchestra/trunk/core/pom.xml
URL: http://svn.apache.org/viewvc/myfaces/orchestra/trunk/core/pom.xml?rev=615905&r1=615904&r2=615905&view=diff
==============================================================================
--- myfaces/orchestra/trunk/core/pom.xml (original)
+++ myfaces/orchestra/trunk/core/pom.xml Mon Jan 28 07:03:12 2008
@@ -1,430 +1,430 @@
 <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>
+     xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
+  <modelVersion>4.0.0</modelVersion>
 
-	<groupId>org.apache.myfaces.orchestra</groupId>
-	<artifactId>myfaces-orchestra-core</artifactId>
-	<packaging>jar</packaging>
-	<name>MyFaces Orchestra Core</name>
-	<version>1.1-SNAPSHOT</version>
-
-	<parent>
-		<groupId>org.apache.myfaces.orchestra</groupId>
-		<artifactId>myfaces-orchestra-maven</artifactId>
-		<version>1.1-SNAPSHOT</version>
-	</parent>
-
-	<scm>
-		<connection>scm:svn:http://svn.apache.org/repos/asf/myfaces/orchestra/trunk/core</connection>
-		<developerConnection>scm:svn:https://svn.apache.org/repos/asf/myfaces/orchestra/trunk/core</developerConnection>
-		<url>http://svn.apache.org/viewcvs.cgi/myfaces/orchestra/trunk/core</url>
-	</scm>
-
-	<dependencies>
-
-		<dependency>
-			<groupId>commons-logging</groupId>
-			<artifactId>commons-logging</artifactId>
-			<version>1.0.4</version>
-			<scope>compile</scope>
-		</dependency>
-
-		<dependency>
-			<groupId>org.apache.myfaces.core</groupId>
-			<artifactId>myfaces-api</artifactId>
-			<scope>provided</scope>
-			<optional>true</optional>
-		</dependency>
-
-		<dependency>
-			<groupId>org.apache.myfaces.shared</groupId>
-			<artifactId>myfaces-shared-orchestra</artifactId>
-			<scope>compile</scope>
-			<!-- because we add all classes to the jar directly -->
-		</dependency>
-
-		<dependency>
-			<groupId>javax.servlet.jsp</groupId>
-			<artifactId>jsp-api</artifactId>
-			<version>2.1</version>
-			<scope>provided</scope>
-			<optional>true</optional>
-		</dependency>
-
-		<dependency>
-			<groupId>javax.servlet</groupId>
-			<artifactId>servlet-api</artifactId>
-			<version>2.4</version>
-			<scope>provided</scope>
-		</dependency>
-
-		<dependency>
-			<groupId>javax.persistence</groupId>
-			<artifactId>persistence-api</artifactId>
-			<version>1.0</version>
-			<scope>provided</scope>
-			<optional>true</optional>
-		</dependency>
-
-		<dependency>
-			<groupId>org.springframework</groupId>
-			<artifactId>spring</artifactId>
-			<version>2.0.6</version>
-			<scope>compile</scope>
-			<optional>true</optional>
-		</dependency>
-
-		<!-- test dependencies -->
-
-		<dependency>
-			<groupId>org.springframework</groupId>
-			<artifactId>spring-mock</artifactId>
-			<version>2.0.6</version>
-			<scope>test</scope>
-		</dependency>
-
-		<dependency>
-			<groupId>cglib</groupId>
-			<artifactId>cglib</artifactId>
-			<version>2.1_3</version>
-			<scope>test</scope>
-		</dependency>
-
-	</dependencies>
-
-	<build>
-
-		<plugins>
-			<plugin>
-				<artifactId>maven-compiler-plugin</artifactId>
-				<version>2.0</version>
-				<configuration>
-					<source>1.4</source>
-					<target>${build.target}</target>
-				</configuration>
-			</plugin>
-
-			<plugin>
-				<groupId>org.apache.maven.plugins</groupId>
-				<artifactId>maven-jar-plugin</artifactId>
-				<version>2.1</version>
-				<configuration>
-					<archive>
-						<manifestEntries>
-							<orchestra-artifact>${pom.artifactId}</orchestra-artifact>
-							<orchestra-artifact-version>${pom.version}</orchestra-artifact-version>
-							<build-target>${build.target}</build-target>
-						</manifestEntries>
-					</archive>
-				</configuration>
-			</plugin>
-
-			<plugin>
-				<groupId>org.codehaus.mojo</groupId>
-				<artifactId>dependency-maven-plugin</artifactId>
-				<version>1.0</version>
-				<executions>
-
-					<!-- unpack the shared sources into target/shared_sources-->
-					<execution>
-						<id>unpack-shared-impl-sources</id>
-						<phase>process-sources</phase>
-						<goals>
-							<goal>unpack</goal>
-						</goals>
-						<configuration>
-							<artifactItems>
-								<artifactItem>
-									<groupId>org.apache.myfaces.shared</groupId>
-									<artifactId>myfaces-shared-orchestra</artifactId>
-									<version>${myfaces-orchestra-shared.version}</version>
-									<classifier>sources</classifier>
-								</artifactItem>
-							</artifactItems>
-							<outputDirectory>${project.build.directory}/shared_sources</outputDirectory>
-						</configuration>
-					</execution>
-				</executions>
-			</plugin>
-			<!-- the following will add the unpacked shared sources directory as source directory into the pom,
-					   so also the shared sources are automaticaly included by the attach source plugin -->
-			<plugin>
-				<groupId>org.codehaus.mojo</groupId>
-				<artifactId>build-helper-maven-plugin</artifactId>
-				<version>1.0</version>
-				<executions>
-					<execution>
-						<id>add-source</id>
-						<phase>process-sources</phase>
-						<goals>
-							<goal>add-source</goal>
-						</goals>
-						<configuration>
-							<sources>
-								<source>${project.build.directory}/shared_sources</source>
-							</sources>
-						</configuration>
-					</execution>
-				</executions>
-			</plugin>
-
-			<plugin>
-				<groupId>org.codehaus.mojo</groupId>
-				<artifactId>xslt-maven-plugin</artifactId>
-				<version>1.0</version>
-				<configuration>
-					<xslFile>src/main/tld/misc/resolve_entities.xsl</xslFile>
-					<srcIncludes>**/*.tld</srcIncludes>
-					<srcDir>src/main/tld</srcDir>
-					<destDir>target/classes/META-INF</destDir>
-				</configuration>
-				<executions>
-					<execution>
-						<goals>
-							<goal>transform</goal>
-						</goals>
-					</execution>
-				</executions>
-			</plugin>
-
-			<plugin>
-				<artifactId>maven-assembly-plugin</artifactId>
-				<version>2.2-beta-1</version>
-				<configuration>
-					<appendAssemblyId>false</appendAssemblyId>
-					<attach>false</attach>
-					<descriptors>
-						<descriptor>src/main/assembly/assembly.xml</descriptor>
-					</descriptors>
-					<tarLongFileMode>gnu</tarLongFileMode>
-				</configuration>
-			</plugin>
-
-
-
-			<!--
-			   <plugin>
-				   <groupId>org.codehaus.mojo</groupId>
-				   <artifactId>rat-maven-plugin</artifactId>
-				   <executions>
-					   <execution>
-						   <phase>verify</phase>
-						   <goals>
-							   <goal>check</goal>
-						   </goals>
-					   </execution>
-				   </executions>
-			   </plugin>
+  <groupId>org.apache.myfaces.orchestra</groupId>
+  <artifactId>myfaces-orchestra-core</artifactId>
+  <packaging>jar</packaging>
+  <name>MyFaces Orchestra Core</name>
+  <version>1.1-SNAPSHOT</version>
+
+  <parent>
+    <groupId>org.apache.myfaces.orchestra</groupId>
+    <artifactId>myfaces-orchestra-maven</artifactId>
+    <version>1.1-SNAPSHOT</version>
+  </parent>
+
+  <scm>
+    <connection>scm:svn:http://svn.apache.org/repos/asf/myfaces/orchestra/trunk/core</connection>
+    <developerConnection>scm:svn:https://svn.apache.org/repos/asf/myfaces/orchestra/trunk/core</developerConnection>
+    <url>http://svn.apache.org/viewcvs.cgi/myfaces/orchestra/trunk/core</url>
+  </scm>
+
+  <dependencies>
+
+    <dependency>
+      <groupId>commons-logging</groupId>
+      <artifactId>commons-logging</artifactId>
+      <version>1.0.4</version>
+      <scope>compile</scope>
+    </dependency>
+
+    <dependency>
+      <groupId>org.apache.myfaces.core</groupId>
+      <artifactId>myfaces-api</artifactId>
+      <scope>provided</scope>
+      <optional>true</optional>
+    </dependency>
+
+    <dependency>
+      <groupId>org.apache.myfaces.shared</groupId>
+      <artifactId>myfaces-shared-orchestra</artifactId>
+      <scope>compile</scope>
+      <!-- because we add all classes to the jar directly -->
+    </dependency>
+
+    <dependency>
+      <groupId>javax.servlet.jsp</groupId>
+      <artifactId>jsp-api</artifactId>
+      <version>2.1</version>
+      <scope>provided</scope>
+      <optional>true</optional>
+    </dependency>
+
+    <dependency>
+      <groupId>javax.servlet</groupId>
+      <artifactId>servlet-api</artifactId>
+      <version>2.4</version>
+      <scope>provided</scope>
+    </dependency>
+
+    <dependency>
+      <groupId>javax.persistence</groupId>
+      <artifactId>persistence-api</artifactId>
+      <version>1.0</version>
+      <scope>provided</scope>
+      <optional>true</optional>
+    </dependency>
+
+    <dependency>
+      <groupId>org.springframework</groupId>
+      <artifactId>spring</artifactId>
+      <version>2.0.6</version>
+      <scope>compile</scope>
+      <optional>true</optional>
+    </dependency>
+
+    <!-- test dependencies -->
+
+    <dependency>
+      <groupId>org.springframework</groupId>
+      <artifactId>spring-mock</artifactId>
+      <version>2.0.6</version>
+      <scope>test</scope>
+    </dependency>
+
+    <dependency>
+      <groupId>cglib</groupId>
+      <artifactId>cglib</artifactId>
+      <version>2.1_3</version>
+      <scope>test</scope>
+    </dependency>
+
+  </dependencies>
+
+  <build>
+
+    <plugins>
+      <plugin>
+        <artifactId>maven-compiler-plugin</artifactId>
+        <version>2.0</version>
+        <configuration>
+          <source>1.4</source>
+          <target>${build.target}</target>
+        </configuration>
+      </plugin>
+
+      <plugin>
+        <groupId>org.apache.maven.plugins</groupId>
+        <artifactId>maven-jar-plugin</artifactId>
+        <version>2.1</version>
+        <configuration>
+          <archive>
+            <manifestEntries>
+              <orchestra-artifact>${pom.artifactId}</orchestra-artifact>
+              <orchestra-artifact-version>${pom.version}</orchestra-artifact-version>
+              <build-target>${build.target}</build-target>
+            </manifestEntries>
+          </archive>
+        </configuration>
+      </plugin>
+
+      <plugin>
+        <groupId>org.codehaus.mojo</groupId>
+        <artifactId>dependency-maven-plugin</artifactId>
+        <version>1.0</version>
+        <executions>
+
+          <!-- unpack the shared sources into target/shared_sources-->
+          <execution>
+            <id>unpack-shared-impl-sources</id>
+            <phase>process-sources</phase>
+            <goals>
+              <goal>unpack</goal>
+            </goals>
+            <configuration>
+              <artifactItems>
+                <artifactItem>
+                  <groupId>org.apache.myfaces.shared</groupId>
+                  <artifactId>myfaces-shared-orchestra</artifactId>
+                  <version>${myfaces-orchestra-shared.version}</version>
+                  <classifier>sources</classifier>
+                </artifactItem>
+              </artifactItems>
+              <outputDirectory>${project.build.directory}/shared_sources</outputDirectory>
+            </configuration>
+          </execution>
+        </executions>
+      </plugin>
+      <!-- the following will add the unpacked shared sources directory as source directory into the pom,
+             so also the shared sources are automaticaly included by the attach source plugin -->
+      <plugin>
+        <groupId>org.codehaus.mojo</groupId>
+        <artifactId>build-helper-maven-plugin</artifactId>
+        <version>1.0</version>
+        <executions>
+          <execution>
+            <id>add-source</id>
+            <phase>process-sources</phase>
+            <goals>
+              <goal>add-source</goal>
+            </goals>
+            <configuration>
+              <sources>
+                <source>${project.build.directory}/shared_sources</source>
+              </sources>
+            </configuration>
+          </execution>
+        </executions>
+      </plugin>
+
+      <plugin>
+        <groupId>org.codehaus.mojo</groupId>
+        <artifactId>xslt-maven-plugin</artifactId>
+        <version>1.0</version>
+        <configuration>
+          <xslFile>src/main/tld/misc/resolve_entities.xsl</xslFile>
+          <srcIncludes>**/*.tld</srcIncludes>
+          <srcDir>src/main/tld</srcDir>
+          <destDir>target/classes/META-INF</destDir>
+        </configuration>
+        <executions>
+          <execution>
+            <goals>
+              <goal>transform</goal>
+            </goals>
+          </execution>
+        </executions>
+      </plugin>
+
+      <plugin>
+        <artifactId>maven-assembly-plugin</artifactId>
+        <version>2.2-beta-1</version>
+        <configuration>
+          <appendAssemblyId>false</appendAssemblyId>
+          <attach>false</attach>
+          <descriptors>
+            <descriptor>src/main/assembly/assembly.xml</descriptor>
+          </descriptors>
+          <tarLongFileMode>gnu</tarLongFileMode>
+        </configuration>
+      </plugin>
+
+
+
+      <!--
+         <plugin>
+           <groupId>org.codehaus.mojo</groupId>
+           <artifactId>rat-maven-plugin</artifactId>
+           <executions>
+             <execution>
+               <phase>verify</phase>
+               <goals>
+                 <goal>check</goal>
+               </goals>
+             </execution>
+           </executions>
+         </plugin>
    -->
-		</plugins>
-	</build>
+    </plugins>
+  </build>
 
-	<distributionManagement>
-		<site>
-			<id>apache-site</id>
-			<name>Apache Website</name>
-			<url>scpexe://people.apache.org/www/myfaces.apache.org/orchestra/myfaces-orchestra-core</url>
-		</site>
-	</distributionManagement>
-
-	<reporting>
-
-		<plugins>
-
-			<plugin>
-				<groupId>org.codehaus.mojo</groupId>
-				<artifactId>changelog-maven-plugin</artifactId>
-				<version>2.0-beta-1</version>
-				<reportSets>
-					<reportSet>
-						<id>dual-report</id>
-						<configuration>
-							<type>range</type>
-							<range>30</range>
-						</configuration>
-						<reports>
-							<report>changelog</report>
-							<report>file-activity</report>
-							<report>dev-activity</report>
-						</reports>
-					</reportSet>
-				</reportSets>
-			</plugin>
-			<plugin>
-				<groupId>org.apache.maven.plugins</groupId>
-				<artifactId>maven-javadoc-plugin</artifactId>
-				<version>2.0-beta-3</version>
-				<configuration>
-					<show>protected</show>
-				</configuration>
-			</plugin>
-
-			<plugin>
-				<groupId>org.codehaus.mojo</groupId>
-				<artifactId>jxr-maven-plugin</artifactId>
-				<version>2.0-beta-1</version>
-			</plugin>
-
-			<plugin>
-				<groupId>org.codehaus.mojo</groupId>
-				<artifactId>taglist-maven-plugin</artifactId>
-				<version>2.0</version>
-			</plugin>
-
-			<plugin>
-				<groupId>org.codehaus.mojo</groupId>
-				<artifactId>surefire-report-maven-plugin</artifactId>
-				<version>2.0-beta-1</version>
-			</plugin>
-
-			<plugin>
-				<groupId>org.codehaus.mojo</groupId>
-				<artifactId>rat-maven-plugin</artifactId>
-				<version>1.0-alpha-3</version>
-			</plugin>
-
-		</plugins>
-
-	</reporting>
-
-	<profiles>
-
-		<profile>
-			<id>generate-site</id>
-			<build>
-				<plugins>
-					<plugin>
-						<groupId>org.codehaus.mojo</groupId>
-						<artifactId>xslt-maven-plugin</artifactId>
-						<version>1.0</version>
-						<executions>
-							<execution>
-								<id>generate-tld-for-tlddoc</id>
-								<goals>
-									<goal>transform</goal>
-								</goals>
-								<configuration>
-									<xslFile>src/main/tld/misc/resolve_entities-tlddoc.xsl</xslFile>
-									<srcIncludes>**/*.tld</srcIncludes>
-									<srcDir>src/main/tld</srcDir>
-									<destDir>target/tlddoc-site</destDir>
-								</configuration>
-							</execution>
-							<execution>
-								<id>generate-tld-for-jar</id>
-								<goals>
-									<goal>transform</goal>
-								</goals>
-								<configuration>
-									<xslFile>src/main/tld/misc/resolve_entities.xsl</xslFile>
-									<srcIncludes>**/*.tld</srcIncludes>
-									<srcDir>src/main/tld</srcDir>
-									<destDir>target/classes/META-INF</destDir>
-								</configuration>
-							</execution>
-						</executions>
-					</plugin>
-				</plugins>
-
-			</build>
-			<reporting>
-				<plugins>
-					<plugin>
-						<groupId>net.sourceforge.maven-taglib</groupId>
-						<artifactId>maven-taglib-plugin</artifactId>
-						<version>1.4.2</version>
-						<configuration>
-							<taglib.src.dir>${basedir}/target/tlddoc-site</taglib.src.dir>
-							<tldDocDir>${basedir}/target/site/tlddoc</tldDocDir>
-						</configuration>
-					</plugin>
-				</plugins>
-			</reporting>
-		</profile>
-		<profile>
-			<id>generate-assembly</id>
-			<build>
-				<plugins>
-					<plugin>
-						<groupId>org.codehaus.mojo</groupId>
-						<artifactId>xslt-maven-plugin</artifactId>
-						<version>1.0</version>
-						<executions>
-							<execution>
-								<id>generate-tld-for-tlddoc</id>
-								<goals>
-									<goal>transform</goal>
-								</goals>
-								<configuration>
-									<xslFile>src/main/tld/misc/resolve_entities-tlddoc.xsl</xslFile>
-									<srcIncludes>**/*.tld</srcIncludes>
-									<srcDir>src/main/tld</srcDir>
-									<destDir>target/tlddoc-site</destDir>
-								</configuration>
-							</execution>
-							<execution>
-								<id>generate-tld-for-jar</id>
-								<goals>
-									<goal>transform</goal>
-								</goals>
-								<configuration>
-									<xslFile>src/main/tld/misc/resolve_entities.xsl</xslFile>
-									<srcIncludes>**/*.tld</srcIncludes>
-									<srcDir>src/main/tld</srcDir>
-									<destDir>target/classes/META-INF</destDir>
-								</configuration>
-							</execution>
-						</executions>
-					</plugin>
-					<plugin>
-						<groupId>org.apache.maven.plugins</groupId>
-						<artifactId>maven-javadoc-plugin</artifactId>
-						<version>2.0</version>
-						<executions>
-							<execution>
-								<id>attach-javadoc</id>
-								<goals>
-									<goal>jar</goal>
-								</goals>
-							</execution>
-						</executions>
-					</plugin>
-					<plugin>
-						<groupId>net.sourceforge.maven-taglib</groupId>
-						<artifactId>maven-taglib-plugin</artifactId>
-						<configuration>
-							<taglib.src.dir>${basedir}/target/tlddoc-site</taglib.src.dir>
-							<tldDocDir>${basedir}/target/tlddoc</tldDocDir>
-						</configuration>
-						<executions>
-							<execution>
-								<id>attach-javadoc</id>
-								<goals>
-									<goal>taglibdocjar</goal>
-								</goals>
-							</execution>
-						</executions>
-					</plugin>
-					<plugin>
-						<groupId>org.apache.maven.plugins</groupId>
-						<artifactId>maven-source-plugin</artifactId>
-						<version>2.0.3</version>
-						<executions>
-							<execution>
-								<id>attach-source</id>
-								<goals>
-									<goal>jar</goal>
-								</goals>
-							</execution>
-						</executions>
-					</plugin>
-				</plugins>
-			</build>
-		</profile>
-	</profiles>
-
-	<properties>
-		<build.target>1.4</build.target>
-	</properties>
+  <distributionManagement>
+    <site>
+      <id>apache-site</id>
+      <name>Apache Website</name>
+      <url>scpexe://people.apache.org/www/myfaces.apache.org/orchestra/myfaces-orchestra-core</url>
+    </site>
+  </distributionManagement>
+
+  <reporting>
+
+    <plugins>
+
+      <plugin>
+        <groupId>org.codehaus.mojo</groupId>
+        <artifactId>changelog-maven-plugin</artifactId>
+        <version>2.0-beta-1</version>
+        <reportSets>
+          <reportSet>
+            <id>dual-report</id>
+            <configuration>
+              <type>range</type>
+              <range>30</range>
+            </configuration>
+            <reports>
+              <report>changelog</report>
+              <report>file-activity</report>
+              <report>dev-activity</report>
+            </reports>
+          </reportSet>
+        </reportSets>
+      </plugin>
+      <plugin>
+        <groupId>org.apache.maven.plugins</groupId>
+        <artifactId>maven-javadoc-plugin</artifactId>
+        <version>2.0-beta-3</version>
+        <configuration>
+          <show>protected</show>
+        </configuration>
+      </plugin>
+
+      <plugin>
+        <groupId>org.codehaus.mojo</groupId>
+        <artifactId>jxr-maven-plugin</artifactId>
+        <version>2.0-beta-1</version>
+      </plugin>
+
+      <plugin>
+        <groupId>org.codehaus.mojo</groupId>
+        <artifactId>taglist-maven-plugin</artifactId>
+        <version>2.0</version>
+      </plugin>
+
+      <plugin>
+        <groupId>org.codehaus.mojo</groupId>
+        <artifactId>surefire-report-maven-plugin</artifactId>
+        <version>2.0-beta-1</version>
+      </plugin>
+
+      <plugin>
+        <groupId>org.codehaus.mojo</groupId>
+        <artifactId>rat-maven-plugin</artifactId>
+        <version>1.0-alpha-3</version>
+      </plugin>
+
+    </plugins>
+
+  </reporting>
+
+  <profiles>
+
+    <profile>
+      <id>generate-site</id>
+      <build>
+        <plugins>
+          <plugin>
+            <groupId>org.codehaus.mojo</groupId>
+            <artifactId>xslt-maven-plugin</artifactId>
+            <version>1.0</version>
+            <executions>
+              <execution>
+                <id>generate-tld-for-tlddoc</id>
+                <goals>
+                  <goal>transform</goal>
+                </goals>
+                <configuration>
+                  <xslFile>src/main/tld/misc/resolve_entities-tlddoc.xsl</xslFile>
+                  <srcIncludes>**/*.tld</srcIncludes>
+                  <srcDir>src/main/tld</srcDir>
+                  <destDir>target/tlddoc-site</destDir>
+                </configuration>
+              </execution>
+              <execution>
+                <id>generate-tld-for-jar</id>
+                <goals>
+                  <goal>transform</goal>
+                </goals>
+                <configuration>
+                  <xslFile>src/main/tld/misc/resolve_entities.xsl</xslFile>
+                  <srcIncludes>**/*.tld</srcIncludes>
+                  <srcDir>src/main/tld</srcDir>
+                  <destDir>target/classes/META-INF</destDir>
+                </configuration>
+              </execution>
+            </executions>
+          </plugin>
+        </plugins>
+
+      </build>
+      <reporting>
+        <plugins>
+          <plugin>
+            <groupId>net.sourceforge.maven-taglib</groupId>
+            <artifactId>maven-taglib-plugin</artifactId>
+            <version>1.4.2</version>
+            <configuration>
+              <taglib.src.dir>${basedir}/target/tlddoc-site</taglib.src.dir>
+              <tldDocDir>${basedir}/target/site/tlddoc</tldDocDir>
+            </configuration>
+          </plugin>
+        </plugins>
+      </reporting>
+    </profile>
+    <profile>
+      <id>generate-assembly</id>
+      <build>
+        <plugins>
+          <plugin>
+            <groupId>org.codehaus.mojo</groupId>
+            <artifactId>xslt-maven-plugin</artifactId>
+            <version>1.0</version>
+            <executions>
+              <execution>
+                <id>generate-tld-for-tlddoc</id>
+                <goals>
+                  <goal>transform</goal>
+                </goals>
+                <configuration>
+                  <xslFile>src/main/tld/misc/resolve_entities-tlddoc.xsl</xslFile>
+                  <srcIncludes>**/*.tld</srcIncludes>
+                  <srcDir>src/main/tld</srcDir>
+                  <destDir>target/tlddoc-site</destDir>
+                </configuration>
+              </execution>
+              <execution>
+                <id>generate-tld-for-jar</id>
+                <goals>
+                  <goal>transform</goal>
+                </goals>
+                <configuration>
+                  <xslFile>src/main/tld/misc/resolve_entities.xsl</xslFile>
+                  <srcIncludes>**/*.tld</srcIncludes>
+                  <srcDir>src/main/tld</srcDir>
+                  <destDir>target/classes/META-INF</destDir>
+                </configuration>
+              </execution>
+            </executions>
+          </plugin>
+          <plugin>
+            <groupId>org.apache.maven.plugins</groupId>
+            <artifactId>maven-javadoc-plugin</artifactId>
+            <version>2.0</version>
+            <executions>
+              <execution>
+                <id>attach-javadoc</id>
+                <goals>
+                  <goal>jar</goal>
+                </goals>
+              </execution>
+            </executions>
+          </plugin>
+          <plugin>
+            <groupId>net.sourceforge.maven-taglib</groupId>
+            <artifactId>maven-taglib-plugin</artifactId>
+            <configuration>
+              <taglib.src.dir>${basedir}/target/tlddoc-site</taglib.src.dir>
+              <tldDocDir>${basedir}/target/tlddoc</tldDocDir>
+            </configuration>
+            <executions>
+              <execution>
+                <id>attach-javadoc</id>
+                <goals>
+                  <goal>taglibdocjar</goal>
+                </goals>
+              </execution>
+            </executions>
+          </plugin>
+          <plugin>
+            <groupId>org.apache.maven.plugins</groupId>
+            <artifactId>maven-source-plugin</artifactId>
+            <version>2.0.3</version>
+            <executions>
+              <execution>
+                <id>attach-source</id>
+                <goals>
+                  <goal>jar</goal>
+                </goals>
+              </execution>
+            </executions>
+          </plugin>
+        </plugins>
+      </build>
+    </profile>
+  </profiles>
+
+  <properties>
+    <build.target>1.4</build.target>
+  </properties>
 
 </project>