Closed rhwood closed 2 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>
...
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.
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.
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.)