Skip to content
This repository has been archived by the owner on Nov 16, 2017. It is now read-only.

Commit

Permalink
RF-11191: fix VDL-DOC generation - points to correct resources (requi…
Browse files Browse the repository at this point in the history
…res shade-transformers 7-SNAPSHOT)
  • Loading branch information
Lukas Fryc committed Nov 10, 2011
1 parent 65a6d90 commit c1ac51b
Show file tree
Hide file tree
Showing 4 changed files with 21 additions and 8 deletions.
23 changes: 15 additions & 8 deletions dist/richfaces-components-ui/pom.xml
Expand Up @@ -34,7 +34,7 @@
<name>RichFaces UI Components UI</name>

<properties>
<shade-transformers.version>6</shade-transformers.version>
<shade-transformers.version>7-SNAPSHOT</shade-transformers.version>
<faces-vdl-documentation.version>1</faces-vdl-documentation.version>
<assembly.projects.group>org.richfaces.ui</assembly.projects.group>
</properties>
Expand Down Expand Up @@ -95,6 +95,13 @@
</dependencies>

<build>
<resources>
<resource>
<directory>src/main/assembly</directory>
<targetPath>${project.build.directory}/assembly</targetPath>
<filtering>true</filtering>
</resource>
</resources>
<plugins>
<plugin>
<!-- unpack necessary dependencies for collecting sources, jsdoc and javadocs -->
Expand Down Expand Up @@ -123,14 +130,14 @@
<executions>
<execution>
<id>assembly</id>
<phase>package</phase>
<phase>prepare-package</phase>
<goals>
<goal>single</goal>
</goals>
<configuration>
<appendAssemblyId>false</appendAssemblyId>
<descriptors>
<descriptor>assembler.xml</descriptor>
<descriptor>${project.build.directory}/assembly/assembler-jar.xml</descriptor>
</descriptors>
</configuration>
</execution>
Expand All @@ -142,7 +149,7 @@
</goals>
<configuration>
<descriptors>
<descriptor>assembler-sources.xml</descriptor>
<descriptor>${project.build.directory}/assembly/assembler-sources.xml</descriptor>
</descriptors>
</configuration>
</execution>
Expand Down Expand Up @@ -216,12 +223,12 @@
<configuration>
<transformationSets>
<transformationSet>
<dir>src/main/properties</dir>
<stylesheet>target/resources/xsl/common.xsl</stylesheet>
<dir>${basedir}/src/main/properties</dir>
<stylesheet>${project.build.directory}/resources/xsl/common.xsl</stylesheet>
<parameters>
<parameter>
<name>output-dir</name>
<value>target/vdldoc/</value>
<value>${project.build.directory}/vdldoc/</value>
</parameter>
</parameters>
<fileMappers>
Expand Down Expand Up @@ -253,7 +260,7 @@
</goals>
<configuration>
<descriptors>
<descriptor>src/main/assembly/vdldoc-assembly.xml</descriptor>
<descriptor>${project.build.directory}/assembly/assembler-vdldoc.xml</descriptor>
</descriptors>
</configuration>
</execution>
Expand Down
Expand Up @@ -9,13 +9,17 @@
<containerDescriptorHandlers>
<containerDescriptorHandler>
<handlerName>faces-xml</handlerName>
<configuration>
<outputDirectory>${project.build.directory}/taglibs</outputDirectory>
</configuration>
</containerDescriptorHandler>
<containerDescriptorHandler>
<handlerName>resource-mappings-properties</handlerName>
</containerDescriptorHandler>
<containerDescriptorHandler>
<handlerName>taglib-xml</handlerName>
<configuration>
<outputDirectory>${project.build.directory}/taglibs</outputDirectory>
<taglibs>
<taglib>
<targetNamespace>http://richfaces.org/a4j</targetNamespace>
Expand Down
@@ -1,9 +1,11 @@
<assembly xmlns="http://maven.apache.org/plugins/maven-assembly-plugin/assembly/1.1.2" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://maven.apache.org/plugins/maven-assembly-plugin/assembly/1.1.2 http://maven.apache.org/xsd/assembly-1.1.2.xsd">

<id>vdldocs</id>
<formats>
<format>jar</format>
</formats>
<includeBaseDirectory>false</includeBaseDirectory>
<fileSets>
<fileSet>
<directory>${basedir}/target/vdldoc</directory>
Expand Down

0 comments on commit c1ac51b

Please sign in to comment.