Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
115 changes: 10 additions & 105 deletions xslthl/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -47,118 +47,17 @@ This version of xslthl provides extensions of the Apache Xalan and Saxon XSLT pr
</properties>

<build>
<plugins>
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>findbugs-maven-plugin</artifactId>
<version>2.5.5</version>
<executions>
<execution>
<phase>package</phase>
<goals>
<goal>check</goal>
</goals>
</execution>
</executions>
</plugin>
<plugin>
<artifactId>maven-antrun-plugin</artifactId>
<version>1.8</version>
<executions>
<execution>
<phase>site</phase>
<configuration>
<target>
<ant dir="examples" />
</target>
</configuration>
<goals>
<goal>run</goal>
</goals>
</execution>
</executions>
</plugin>
<plugin>
<artifactId>maven-assembly-plugin</artifactId>
<version>3.1.0</version>
<configuration>
<descriptors>
<descriptor>src/main/assembly/dist.xml</descriptor>
</descriptors>
</configuration>
<executions>
<execution>
<id>make-assembly</id>
<phase>package</phase>
<goals>
<goal>single</goal>
</goals>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-source-plugin</artifactId>
<version>3.0.1</version>
<executions>
<execution>
<id>attach-sources</id>
<goals>
<goal>jar</goal>
</goals>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-javadoc-plugin</artifactId>
<version>3.0.0</version>
<executions>
<execution>
<phase>package</phase>
<goals>
<goal>jar</goal>
</goals>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.sonatype.plugins</groupId>
<artifactId>nexus-staging-maven-plugin</artifactId>
<version>1.6.8</version>
<extensions>true</extensions>
<configuration>
<serverId>ossrh</serverId>
<nexusUrl>https://oss.sonatype.org/</nexusUrl>
<autoReleaseAfterClose>true</autoReleaseAfterClose>
</configuration>
</plugin>
</plugins>
<extensions>
<!-- Enabling the use of FTP -->
<extension>
<!-- <extension>
<groupId>org.apache.maven.wagon</groupId>
<artifactId>wagon-ssh-external</artifactId>
<version>1.0-beta-6</version>
</extension>
</extension>-->
</extensions>
</build>

<reporting>
<plugins>
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>findbugs-maven-plugin</artifactId>
<version>2.5.5</version>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-javadoc-plugin</artifactId>
<version>2.8.1</version>
<configuration>
</configuration>
</plugin>
</plugins>
</reporting>

<dependencies>
Expand All @@ -180,11 +79,17 @@ This version of xslthl provides extensions of the Apache Xalan and Saxon XSLT pr
<version>[6.5,7.0]</version>
<optional>true</optional>
</dependency>
<dependency>
<!--<dependency>
<groupId>net.sf.saxon</groupId>
<artifactId>saxon</artifactId>
<version>[8.5,)</version>
<optional>true</optional>
</dependency>-->
<dependency>
<groupId>net.sf.saxon</groupId>
<artifactId>Saxon-HE</artifactId>
<version>9.9.1-7</version>
<optional>true</optional>
</dependency>
<dependency>
<groupId>junit</groupId>
Expand All @@ -197,7 +102,7 @@ This version of xslthl provides extensions of the Apache Xalan and Saxon XSLT pr
<scm>
<connection>scm:svn:https://xslthl.svn.sourceforge.net/svnroot/xslthl/trunk/xslthl/</connection>
<developerConnection>scm:svn:https://xslthl.svn.sourceforge.net/svnroot/xslthl/trunk/xslthl/</developerConnection>
<url>http://xslthl.svn.sourceforge.net/viewvc/xslthl/trunk/xslthl/</url>
<url>https://xslthl.svn.sourceforge.net/viewvc/xslthl/trunk/xslthl/</url>
</scm>

<issueManagement>
Expand Down
Loading