Skip to content

Commit

Permalink
#52 new parent and saxon
Browse files Browse the repository at this point in the history
  • Loading branch information
yegor256 committed Aug 29, 2022
1 parent ecca254 commit 8683046
Show file tree
Hide file tree
Showing 5 changed files with 22 additions and 22 deletions.
38 changes: 18 additions & 20 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ software.
<parent>
<groupId>com.jcabi</groupId>
<artifactId>parent</artifactId>
<version>0.60.5</version>
<version>0.61.0</version>
</parent>
<groupId>io.jare</groupId>
<artifactId>jare</artifactId>
Expand Down Expand Up @@ -81,37 +81,42 @@ software.
<dependency>
<groupId>io.sentry</groupId>
<artifactId>sentry</artifactId>
<version>6.3.1</version>
<version>6.4.0</version>
</dependency>
<dependency>
<groupId>com.amazonaws</groupId>
<artifactId>aws-java-sdk-core</artifactId>
<version>1.12.281</version>
<version>1.12.290</version>
</dependency>
<dependency>
<groupId>com.amazonaws</groupId>
<artifactId>aws-java-sdk-dynamodb</artifactId>
<version>1.12.281</version>
<version>1.12.290</version>
</dependency>
<dependency>
<groupId>com.amazonaws</groupId>
<artifactId>aws-java-sdk-cloudfront</artifactId>
<version>1.12.281</version>
<version>1.12.290</version>
</dependency>
<dependency>
<groupId>org.takes</groupId>
<artifactId>takes</artifactId>
<version>1.24.0</version>
<version>1.24.4</version>
</dependency>
<dependency>
<groupId>com.jcabi.incubator</groupId>
<artifactId>xembly</artifactId>
<version>0.27.0</version>
<version>0.28.1</version>
</dependency>
<dependency>
<groupId>org.cactoos</groupId>
<artifactId>cactoos</artifactId>
<version>0.53.0</version>
<version>0.54.0</version>
</dependency>
<dependency>
<groupId>xml-apis</groupId>
<artifactId>xml-apis</artifactId>
<version>1.0.b2</version>
</dependency>
<dependency>
<groupId>log4j</groupId>
Expand Down Expand Up @@ -153,7 +158,7 @@ software.
<dependency>
<groupId>com.jcabi</groupId>
<artifactId>jcabi-xml</artifactId>
<version>0.25.0</version>
<version>0.25.3</version>
</dependency>
<dependency>
<groupId>com.jcabi</groupId>
Expand Down Expand Up @@ -189,7 +194,7 @@ software.
<dependency>
<groupId>com.jcabi</groupId>
<artifactId>jcabi-matchers</artifactId>
<version>1.5.3</version>
<version>1.6.0</version>
</dependency>
<dependency>
<groupId>org.apache.velocity</groupId>
Expand All @@ -209,16 +214,9 @@ software.
<version>1.2.1</version>
</dependency>
<dependency>
<groupId>net.sourceforge.saxon</groupId>
<artifactId>saxon</artifactId>
<version>9.1.0.8</version>
<scope>runtime</scope>
</dependency>
<dependency>
<groupId>net.sourceforge.saxon</groupId>
<artifactId>saxon</artifactId>
<version>9.1.0.8</version>
<classifier>dom</classifier>
<groupId>net.sf.saxon</groupId>
<artifactId>Saxon-HE</artifactId>
<version>11.4</version>
<scope>runtime</scope>
</dependency>
<dependency>
Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
net.sf.saxon.TransformerFactoryImpl
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
net.sf.saxon.xpath.XPathFactoryImpl
2 changes: 1 addition & 1 deletion src/main/xsl/domains.xsl
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ in connection with the software or the use or other dealings in the
software.
-->
<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform" xmlns="http://www.w3.org/1999/xhtml" version="1.0">
<xsl:output method="html" doctype-system="about:legacy-compat" encoding="UTF-8" indent="yes"/>
<xsl:output method="xsl" doctype-system="about:legacy-compat" encoding="UTF-8" indent="yes"/>
<xsl:strip-space elements="*"/>
<xsl:include href="/xsl/layout.xsl"/>
<xsl:template match="page" mode="head">
Expand Down
2 changes: 1 addition & 1 deletion src/main/xsl/index.xsl
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ in connection with the software or the use or other dealings in the
software.
-->
<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform" xmlns="http://www.w3.org/1999/xhtml" version="1.0">
<xsl:output method="html" doctype-system="about:legacy-compat" encoding="UTF-8" indent="yes"/>
<xsl:output method="xml" doctype-system="about:legacy-compat" encoding="UTF-8" indent="yes"/>
<xsl:strip-space elements="*"/>
<xsl:include href="/xsl/layout.xsl"/>
<xsl:template match="page" mode="head">
Expand Down

0 comments on commit 8683046

Please sign in to comment.