sweble-wom3-swc-adapter
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>org.sweble.wom3</groupId> <artifactId>sweble-wom3-swc-adapter</artifactId> <version>3.1.9</version> </dependency>
<?xml version="1.0" encoding="UTF-8"?> <!-- Copyright 2011 The Open Source Research Group, University of Erlangen-Nürnberg This program is free software: you can redistribute it and/or modify it under the terms of the GNU Affero General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Affero General Public License for more details. You should have received a copy of the GNU Affero General Public License along with this program. If not, see http://www.gnu.org/licenses/. --> <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/xsd/maven-4.0.0.xsd"> <modelVersion>4.0.0</modelVersion> <parent> <groupId>org.sweble.wom3</groupId> <artifactId>sweble-wom3-parent</artifactId> <version>3.1.9</version> </parent> <artifactId>sweble-wom3-swc-adapter</artifactId> <packaging>jar</packaging> <name>Sweble WOM 3.0 SWC Adapter</name> <inceptionYear>2013</inceptionYear> <description> Convert a Sweble Wikitext (SWC) AST to and from a WOM data structure. </description> <!-- =================================================================== --> <!-- Properties - Properties - Properties - Properties - Properties - Pr --> <!-- =================================================================== --> <properties> <sweble-wom3-parent.path>../</sweble-wom3-parent.path> </properties> <!-- =================================================================== --> <!-- Dependencies - Dependencies - Dependencies - Dependencies - Depende --> <!-- =================================================================== --> <dependencies> <!-- Apache Commons --> <dependency> <!-- Also add signature "commons-io-unsafe-<ver>" to forbiddenapis plugin --> <groupId>commons-io</groupId> <artifactId>commons-io</artifactId> </dependency> <!-- Joda-Time - Java date and time API --> <dependency> <groupId>joda-time</groupId> <artifactId>joda-time</artifactId> </dependency> <!-- Utils --> <dependency> <groupId>de.fau.cs.osr.utils</groupId> <artifactId>utils</artifactId> </dependency> <!-- Parser Toolkit - Common --> <dependency> <groupId>de.fau.cs.osr.ptk</groupId> <artifactId>ptk-common</artifactId> </dependency> <!-- Sweble Wikitext Components - Sweble Wikitext Parser --> <dependency> <groupId>org.sweble.wikitext</groupId> <artifactId>swc-parser-lazy</artifactId> </dependency> <!-- Sweble Wikitext Components - Engine --> <dependency> <groupId>org.sweble.wikitext</groupId> <artifactId>swc-engine</artifactId> </dependency> <!-- Sweble - WOM 3.0 Core --> <dependency> <groupId>org.sweble.wom3</groupId> <artifactId>sweble-wom3-core</artifactId> </dependency> <!-- =============================================================== --> <!-- Testing - Testing - Testing - Testing - Testing - Testing - Tes --> <!-- =============================================================== --> <!-- JUnit --> <dependency> <groupId>junit</groupId> <artifactId>junit</artifactId> <scope>test</scope> </dependency> <!-- Utils - Testing --> <dependency> <groupId>de.fau.cs.osr.utils</groupId> <artifactId>utils-testing</artifactId> <scope>test</scope> </dependency> <!-- The XSLT and XQuery Processor (Saxon Home Edition) --> <dependency> <groupId>net.sf.saxon</groupId> <artifactId>Saxon-HE</artifactId> <scope>test</scope> </dependency> </dependencies> <build> <!-- =============================================================== --> <!-- Plugins - Plugins - Plugins - Plugins - Plugins - Plugins - Plu --> <!-- =============================================================== --> <plugins> <!-- Check and format license headers --> <plugin> <groupId>com.mycila</groupId> <artifactId>license-maven-plugin</artifactId> <configuration> <excludes combine.children="append"> <exclude>src/test/resources/**/*.wikitext</exclude> <exclude>src/test/resources/**/*.wom.xml</exclude> </excludes> </configuration> </plugin> <!-- Maven Dependency Plugin --> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-dependency-plugin</artifactId> <executions> <execution> <id>analyze-dependency-usage</id> <configuration> <usedDependencies> <usedDependency>net.sf.saxon:Saxon-HE</usedDependency> </usedDependencies> </configuration> </execution> </executions> </plugin> <!-- Forbidden APIs --> <plugin> <groupId>de.thetaphi</groupId> <artifactId>forbiddenapis</artifactId> <configuration> <bundledSignatures combine.children="append"> <bundledSignature>commons-io-unsafe-1.4</bundledSignature> </bundledSignatures> </configuration> </plugin> </plugins> </build> </project>