The seam reference manual documentation should clearly state it's version
-------------------------------------------------------------------------

                 Key: SEAM-114
                 URL: https://issues.jboss.org/browse/SEAM-114
             Project: Seam 3 Distribution
          Issue Type: Task
          Components: Build Infrastructure
            Reporter: Geoffrey De Smet


When I go here
  http://docs.jboss.org/seam/3/latest/reference/en-US/html_single
I can't figure out what version it's talking about easily.


It's pretty easy to automate this so it's automatically correct:

https://github.com/droolsjbpm/droolsjbpm-build-bootstrap/blob/master/pom.xml#L275
{code}
        <plugin>
          <groupId>org.jboss.maven.plugins</groupId>
          <artifactId>maven-jdocbook-plugin</artifactId>
          <version>2.3.6</version>
          <extensions>true</extensions>

          <dependencies>
            <dependency>
              <groupId>org.jboss.pressgang</groupId>
              <artifactId>pressgang-xslt-ns</artifactId>
              <version>2.0.1</version>
            </dependency>
            <dependency>
              <groupId>org.jboss.pressgang</groupId>
              <artifactId>pressgang-jdocbook-style</artifactId>
              <type>jdocbook-style</type>
              <version>2.0.1</version>
            </dependency>
          </dependencies>

          <configuration>
            ...
            <injections>
              <injection>
                <name>project.version</name>
                <value>${project.version}</value>
              </injection>
            </injections>
            ...
          </configuration>
        </plugin>
{code}

https://github.com/droolsjbpm/drools-planner/blob/master/drools-planner-docs/src/main/docbook/en-US/master.xml#L10
{code}
 <info>
    <title>Drools Planner User Guide</title>
    <releaseinfo>Version &project.version;</releaseinfo>
...
{code}

--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators: 
https://issues.jboss.org/secure/ContactAdministrators!default.jspa
For more information on JIRA, see: http://www.atlassian.com/software/jira

        
_______________________________________________
seam-issues mailing list
[email protected]
https://lists.jboss.org/mailman/listinfo/seam-issues

Reply via email to