docbook / xslt10-stylesheets

XSLT 1.0 Stylesheets for DocBook
98 stars 76 forks source link

Can release 1.79.2 be published to maven? #234

Closed rhwood closed 2 years ago

rhwood commented 3 years ago

The most recent release available in maven in 1.74.

(I am using these stylesheets and not the newer ones because I need to process the docbook using FOP.)

dranuhl commented 3 years ago

The 1.79.1 is already on Maven: https://mvnrepository.com/artifact/net.sf.docbook/docbook-xsl/1.79.1

Depending on the Maven plugin used though, it might default to an older version of that artifact. So for example com.agilejava.docbkx:docbkx-maven-plugin needs something like this to switch to a newer XML and/or XSL version(s):

...
      <properties>
        <docbook-xml.version>5.0-all</docbook-xml.version>
        <docbook-xsl.version>1.79.1</docbook-xsl.version>
      </properties>
...
      <plugin>
        <groupId>com.agilejava.docbkx</groupId>
        <artifactId>docbkx-maven-plugin</artifactId>
        <version>2.0.15</version>
        <dependencies>
          <dependency>
            <groupId>net.sf.docbook</groupId>
            <artifactId>docbook-xml</artifactId>
            <version>${docbook-xml.version}</version>
            <classifier>resources</classifier>
            <type>zip</type>
            <scope>runtime</scope>
          </dependency>
          <dependency>
            <groupId>net.sf.docbook</groupId>
            <artifactId>docbook-xsl</artifactId>
            <version>${docbook-xsl.version}</version>
            <classifier>ns-resources</classifier>
            <type>zip</type>
            <scope>runtime</scope>
          </dependency>
        </dependencies>
...
oliviercailloux commented 2 years ago

Note for those who wonder, like me: the request is about 1.79.2 (which indeed appears to be not in Maven Central for the moment) but the reply is about 1.79.1, presumably, because it has the same functionality.

rhwood commented 2 years ago

Closing as not necessary. Note that original comment was based on confusion that DocBook no longer uses SourceForge, but newer DocBook packages use net.sf.docbook instead of org.docbook namespace.