Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- <?xml version="1.0" encoding="UTF-8"?>
- <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>
- <groupId>com.catamania</groupId>
- <artifactId>convertXWiki</artifactId>
- <version>1.0-SNAPSHOT</version>
- <packaging>jar</packaging>
- <properties>
- <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
- <maven.compiler.source>1.8</maven.compiler.source>
- <maven.compiler.target>1.8</maven.compiler.target>
- <xwiki.version>9.6</xwiki.version>
- </properties>
- <dependencies>
- <dependency>
- <groupId>org.xwiki.rendering</groupId>
- <artifactId>xwiki-rendering-syntax-xwiki21</artifactId>
- <version>${xwiki.version}</version>
- </dependency>
- <dependency>
- <groupId>org.xwiki.commons</groupId>
- <artifactId>xwiki-commons-component-default</artifactId>
- <version>${xwiki.version}</version>
- </dependency>
- <dependency>
- <groupId>org.xwiki.rendering</groupId>
- <artifactId>xwiki-rendering-syntax-xhtml</artifactId>
- <version>${xwiki.version}</version>
- </dependency>
- <dependency>
- <groupId>org.xwiki.rendering</groupId>
- <artifactId>xwiki-rendering-transformation-macro</artifactId>
- <version>${xwiki.version}</version>
- </dependency>
- <dependency>
- <groupId>org.xwiki.rendering</groupId>
- <artifactId>xwiki-rendering-macro-toc</artifactId>
- <version>${xwiki.version}</version>
- </dependency>
- <dependency>
- <groupId>org.xwiki.rendering</groupId>
- <artifactId>xwiki-rendering-macro-html</artifactId>
- <version>${xwiki.version}</version>
- </dependency>
- <dependency>
- <groupId>org.xwiki.rendering</groupId>
- <artifactId>xwiki-rendering-macro-box</artifactId>
- <version>${xwiki.version}</version>
- </dependency>
- <!-- Logging with Logback -->
- <dependency>
- <groupId>org.slf4j</groupId>
- <artifactId>jcl-over-slf4j</artifactId>
- <version>1.7.25</version>
- </dependency>
- <dependency>
- <groupId>ch.qos.logback</groupId>
- <artifactId>logback-classic</artifactId>
- <version>1.2.3</version>
- </dependency>
- </dependencies>
- <build>
- <plugins>
- <plugin>
- <groupId>org.apache.maven.plugins</groupId>
- <artifactId>maven-jar-plugin</artifactId>
- <version>3.0.2</version>
- <configuration>
- <archive>
- <manifest>
- <mainClass>com.catamania.convertXWiki.Main</mainClass>
- </manifest>
- </archive>
- </configuration>
- </plugin>
- <plugin>
- <artifactId>maven-assembly-plugin</artifactId>
- <version>3.0.0</version>
- <configuration>
- <archive>
- <manifest>
- <mainClass>com.catamania.convertXWiki.Main</mainClass>
- </manifest>
- </archive>
- <descriptorRefs>
- <descriptorRef>jar-with-dependencies</descriptorRef>
- </descriptorRefs>
- </configuration>
- <executions>
- <execution>
- <id>make-assembly</id>
- <phase>package</phase>
- <goals>
- <goal>single</goal>
- </goals>
- </execution>
- </executions>
- </plugin>
- </plugins>
- </build>
- </project>
Advertisement
Add Comment
Please, Sign In to add comment