snuggletex
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>de.rototor.snuggletex</groupId> <artifactId>snuggletex</artifactId> <version>1.3.0</version> </dependency>
<?xml version="1.0"?> <!-- $Id$ Copyright (c) 2008-2011, The University of Edinburgh All Rights Reserved --> <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd"> <modelVersion>4.0.0</modelVersion> <groupId>de.rototor.snuggletex</groupId> <artifactId>snuggletex</artifactId> <version>1.3.0</version> <packaging>pom</packaging> <modules> <module>snuggletex-core</module> <module>snuggletex-jeuclid</module> <module>snuggletex-webapp</module> <module>snuggletex-upconversion</module> <!-- <module>snuggletex-distribution</module> --> </modules> <properties> <junit.version>4.12</junit.version> <easymock.version>3.5.1</easymock.version> <jeuclid.version>3.1.11</jeuclid.version> <asciimath-parser.version>1.0</asciimath-parser.version> <saxon9.version>9.1.0.8</saxon9.version> <slf4j.version>1.6.4</slf4j.version> <log4j.version>1.2.16</log4j.version> <maven.site.url>http://snuggletex.sourceforge.net/maven/</maven.site.url> </properties> <repositories> <repository> <id>www2.ph.ed.ac.uk</id> <url>http://www2.ph.ed.ac.uk/maven2</url> <snapshots> <enabled>true</enabled> </snapshots> <releases> <enabled>true</enabled> </releases> </repository> </repositories> <distributionManagement> <snapshotRepository> <id>ossrh</id> <url>https://oss.sonatype.org/content/repositories/snapshots</url> </snapshotRepository> <repository> <id>ossrh</id> <url>https://oss.sonatype.org/service/local/staging/deploy/maven2/</url> </repository> </distributionManagement> <name>SnuggleTeX</name> <url>http://snuggletex.sourceforge.net</url> <description> Java 9 Maintaince Fork of SnuggleText. SnuggleTeX is a free and open-source Java library for converting LaTeX to XML (usually XHTML + MathML). </description> <inceptionYear>2008</inceptionYear> <organization> <name>The University of Edinburgh</name> <url>http://www.ed.ac.uk</url> </organization> <licenses> <license> <name>BSD License (3 clause)</name> <url>LICENSE.txt</url> <distribution>repo</distribution> </license> </licenses> <developers> <developer> <id>davemckain</id> <name>David McKain</name> <email>david.mckain [at] ed.ac.uk</email> <url>http://www.ph.ed.ac.uk/people/david-mckain</url> <organization>School of Physics and Astronomy, University of Edinburgh</organization> <organizationUrl>http://www.ph.ed.ac.uk</organizationUrl> <roles> <role>architect</role> <role>developer</role> </roles> <timezone>0</timezone> </developer> <developer> <id>rototor</id> <name>Emmeran Seehuber</name> <email>rototor@rototor.de</email> <url>https://www.rototor.de</url> <roles> <role>developer</role> </roles> <timezone>+1</timezone> </developer> </developers> <scm> <url>https://github.com/rototor/snuggletex</url> <connection>scm:git:https://github.com/rototor/snuggletex.git</connection> <tag>snuggletex-1.3.0</tag> </scm> <build> <pluginManagement> <plugins> <plugin> <artifactId>maven-compiler-plugin</artifactId> <version>3.7.0</version> <configuration> <source>1.6</source> <target>1.6</target> <encoding>UTF-8</encoding> </configuration> </plugin> <plugin> <artifactId>maven-resources-plugin</artifactId> <version>3.0.2</version> <configuration> <encoding>UTF-8</encoding> </configuration> </plugin> <plugin> <artifactId>maven-surefire-plugin</artifactId> <version>2.20.1</version> </plugin> <plugin> <artifactId>maven-jar-plugin</artifactId> <version>3.0.2</version> </plugin> <plugin> <artifactId>maven-war-plugin</artifactId> <version>3.2.0</version> </plugin> <plugin> <artifactId>maven-source-plugin</artifactId> <version>3.0.1</version> <executions> <execution> <goals> <goal>jar-no-fork</goal> </goals> </execution> </executions> </plugin> <plugin> <artifactId>maven-assembly-plugin</artifactId> <version>3.1.0</version> </plugin> <plugin> <groupId>org.codehaus.mojo</groupId> <artifactId>findbugs-maven-plugin</artifactId> <version>3.0.4</version> </plugin> <plugin> <groupId>org.codehaus.mojo</groupId> <artifactId>exec-maven-plugin</artifactId> <version>1.6.0</version> </plugin> </plugins> </pluginManagement> <plugins> <plugin> <artifactId>maven-source-plugin</artifactId> <version>3.0.1</version> <executions> <execution> <goals> <goal>jar-no-fork</goal> </goals> </execution> </executions> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-javadoc-plugin</artifactId> <version>3.0.0</version> <executions> <execution> <id>attach-javadocs</id> <goals> <goal>jar</goal> </goals> </execution> </executions> </plugin> <plugin> <groupId>org.sonatype.plugins</groupId> <artifactId>nexus-staging-maven-plugin</artifactId> <version>1.6.7</version> <extensions>true</extensions> <configuration> <serverId>ossrh</serverId> <nexusUrl>https://oss.sonatype.org/</nexusUrl> <autoReleaseAfterClose>true</autoReleaseAfterClose> </configuration> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-release-plugin</artifactId> <version>2.5.3</version> <configuration> <autoVersionSubmodules>true</autoVersionSubmodules> <useReleaseProfile>false</useReleaseProfile> <releaseProfiles>release</releaseProfiles> <goals>deploy</goals> <pushChanges>false</pushChanges> </configuration> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-gpg-plugin</artifactId> <version>1.6</version> <executions> <execution> <id>sign-artifacts</id> <phase>verify</phase> <goals> <goal>sign</goal> </goals> </execution> </executions> </plugin> </plugins> </build> </project>