xwiki-rendering-standalone
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>org.xwiki.rendering</groupId> <artifactId>xwiki-rendering-standalone</artifactId> <version>17.4.0-rc-1</version> </dependency>
<?xml version="1.0" encoding="UTF-8"?> <!-- * See the NOTICE file distributed with this work for additional * information regarding copyright ownership. * * This is free software; you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License as * published by the Free Software Foundation; either version 2.1 of * the License, or (at your option) any later version. * * This software 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 * Lesser General Public License for more details. * * You should have received a copy of the GNU Lesser General Public * License along with this software; if not, write to the Free * Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA * 02110-1301 USA, or see the FSF site: http://www.fsf.org. --> <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> <parent> <groupId>org.xwiki.rendering</groupId> <artifactId>xwiki-rendering</artifactId> <version>17.4.0-rc-1</version> </parent> <artifactId>xwiki-rendering-standalone</artifactId> <name>XWiki Rendering - Standalone Distribution</name> <packaging>pom</packaging> <description>XWiki Rendering - Standalone Distribution</description> <properties> <!-- Skip Enforcer check on legacy dependencies since we want to bundle the legacy modules --> <xwiki.enforcer.no-legacy-dependencies.skip>true</xwiki.enforcer.no-legacy-dependencies.skip> </properties> <dependencies> <dependency> <groupId>org.xwiki.rendering</groupId> <artifactId>xwiki-rendering-syntax-xwiki21</artifactId> <version>${project.version}</version> </dependency> <dependency> <groupId>org.xwiki.rendering</groupId> <artifactId>xwiki-rendering-syntax-xhtml</artifactId> <version>${project.version}</version> </dependency> <dependency> <groupId>org.xwiki.rendering</groupId> <artifactId>xwiki-rendering-syntax-annotatedxhtml</artifactId> <version>${project.version}</version> </dependency> <dependency> <groupId>org.xwiki.rendering</groupId> <artifactId>xwiki-rendering-transformation-macro</artifactId> <version>${project.version}</version> </dependency> <dependency> <groupId>org.xwiki.rendering</groupId> <artifactId>xwiki-rendering-transformation-wikiword</artifactId> <version>${project.version}</version> </dependency> <dependency> <groupId>org.xwiki.rendering</groupId> <artifactId>xwiki-rendering-transformation-icon</artifactId> <version>${project.version}</version> </dependency> <dependency> <groupId>org.xwiki.rendering</groupId> <artifactId>xwiki-rendering-macro-id</artifactId> <version>${project.version}</version> </dependency> <dependency> <groupId>org.xwiki.rendering</groupId> <artifactId>xwiki-rendering-macro-toc</artifactId> <version>${project.version}</version> </dependency> <dependency> <groupId>org.xwiki.rendering</groupId> <artifactId>xwiki-rendering-macro-box</artifactId> <version>${project.version}</version> </dependency> <dependency> <groupId>org.xwiki.rendering</groupId> <artifactId>xwiki-rendering-macro-message</artifactId> <version>${project.version}</version> </dependency> <dependency> <groupId>org.xwiki.rendering</groupId> <artifactId>xwiki-rendering-macro-html</artifactId> <version>${project.version}</version> </dependency> <dependency> <groupId>org.xwiki.rendering</groupId> <artifactId>xwiki-rendering-macro-footnotes</artifactId> <version>${project.version}</version> </dependency> <dependency> <groupId>org.xwiki.rendering</groupId> <artifactId>xwiki-rendering-macro-comment</artifactId> <version>${project.version}</version> </dependency> <!-- Bundle Legacy Commons and Rendering JARs --> <dependency> <groupId>org.xwiki.commons</groupId> <artifactId>xwiki-commons-legacy-configuration</artifactId> <version>${commons.version}</version> </dependency> <dependency> <groupId>org.xwiki.commons</groupId> <artifactId>xwiki-commons-legacy-component-api</artifactId> <version>${commons.version}</version> </dependency> <dependency> <groupId>org.xwiki.commons</groupId> <artifactId>xwiki-commons-legacy-component-default</artifactId> <version>${commons.version}</version> </dependency> <dependency> <groupId>org.xwiki.rendering</groupId> <artifactId>xwiki-rendering-legacy-api</artifactId> <version>${project.version}</version> </dependency> <!-- Include Logging --> <dependency> <groupId>ch.qos.logback</groupId> <artifactId>logback-classic</artifactId> </dependency> <dependency> <groupId>org.slf4j</groupId> <artifactId>jcl-over-slf4j</artifactId> </dependency> <dependency> <groupId>org.slf4j</groupId> <artifactId>log4j-over-slf4j</artifactId> </dependency> <!-- Test Dependencies --> <dependency> <groupId>org.xwiki.commons</groupId> <artifactId>xwiki-commons-tool-test-component</artifactId> <version>${commons.version}</version> <scope>test</scope> </dependency> </dependencies> <build> <plugins> <!-- Force compilation of tests as the packaging being pom tests won't be compiled with the default pom lifecycle --> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-compiler-plugin</artifactId> <executions> <execution> <goals> <goal>testCompile</goal> </goals> </execution> </executions> </plugin> <!-- Force execution of tests as the packaging being pom tests won't be executed with the default pom lifecycle --> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-surefire-plugin</artifactId> <executions> <execution> <goals> <goal>test</goal> </goals> <configuration> <!-- Removed modules for which a Legacy module exist and wraps it --> <classpathDependencyExcludes> <classpathDependencyExcludes>org.xwiki.commons:xwiki-commons-component-api</classpathDependencyExcludes> <classpathDependencyExcludes>org.xwiki.commons:xwiki-commons-component-default</classpathDependencyExcludes> <classpathDependencyExcludes>org.xwiki.rendering:xwiki-rendering-api</classpathDependencyExcludes> </classpathDependencyExcludes> </configuration> </execution> </executions> </plugin> <!-- Add License/Notice files --> <plugin> <groupId>org.xwiki.commons</groupId> <artifactId>xwiki-commons-tool-remote-resource-plugin</artifactId> <version>${commons.version}</version> <executions> <execution> <id>xwiki-license-resources</id> </execution> </executions> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-assembly-plugin</artifactId> <executions> <execution> <phase>package</phase> <goals> <goal>single</goal> </goals> <configuration> <descriptors> <descriptor>${basedir}/src/assemble/zip-with-dependencies.xml</descriptor> </descriptors> </configuration> </execution> </executions> </plugin> </plugins> </build> </project>