sphinx-maven-plugin
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>kr.motd.maven</groupId> <artifactId>sphinx-maven-plugin</artifactId> <version>2.10.0</version> </dependency>
<?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> <parent> <groupId>org.sonatype.oss</groupId> <artifactId>oss-parent</artifactId> <version>9</version> </parent> <groupId>kr.motd.maven</groupId> <artifactId>sphinx-maven-plugin</artifactId> <packaging>maven-plugin</packaging> <version>2.10.0</version> <url>https://trustin.github.io/sphinx-maven-plugin/</url> <name>sphinx-maven-plugin</name> <description>Maven plugin that creates the site with Sphinx</description> <licenses> <license> <name>BSD License</name> <url>https://opensource.org/licenses/bsd-license.php</url> <distribution>repo</distribution> </license> </licenses> <inceptionYear>2015</inceptionYear> <organization> <name>Trustin Lee et al</name> <url>https://trustin.github.io/sphinx-maven-plugin/</url> </organization> <developers> <developer> <id>tomdz</id> <name>Thomas Dudziak</name> <url>https://github.com/tomdz</url> </developer> <developer> <id>balasridhar</id> <name>Bala Sridhar</name> <url>https://github.com/balasridhar</url> </developer> <developer> <id>trustin</id> <name>Trustin Lee</name> <url>https://github.com/trustin</url> </developer> </developers> <scm> <connection>scm:git:git://github.com/trustin/sphinx-maven-plugin.git</connection> <developerConnection>scm:git:git@github.com:trustin/sphinx-maven-plugin.git</developerConnection> <url>https://github.com/trustin/sphinx-maven-plugin</url> <tag>sphinx-maven-plugin-2.10.0</tag> </scm> <properties> <!-- Project options --> <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> <project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding> <!-- Compiler options --> <maven.compiler.source>1.7</maven.compiler.source> <maven.compiler.target>1.7</maven.compiler.target> </properties> <dependencies> <dependency> <groupId>kr.motd.maven</groupId> <artifactId>os-maven-plugin</artifactId> <version>1.7.0</version> <exclusions> <exclusion> <groupId>org.apache.maven</groupId> <artifactId>maven-plugin-api</artifactId> </exclusion> <exclusion> <groupId>org.codehaus.plexus</groupId> <artifactId>plexus-utils</artifactId> </exclusion> <exclusion> <groupId>org.eclipse</groupId> <artifactId>ui</artifactId> </exclusion> </exclusions> </dependency> <dependency> <groupId>net.sourceforge.plantuml</groupId> <artifactId>plantuml</artifactId> <version>1.2021.1</version> </dependency> <dependency> <groupId>junit</groupId> <artifactId>junit</artifactId> <version>4.13.1</version> <scope>test</scope> </dependency> <!-- Maven plugin related --> <dependency> <groupId>org.apache.maven.plugin-tools</groupId> <artifactId>maven-plugin-annotations</artifactId> <version>3.6.0</version> <scope>provided</scope> </dependency> <dependency> <groupId>org.apache.maven.reporting</groupId> <artifactId>maven-reporting-api</artifactId> <version>3.0</version> </dependency> <dependency> <groupId>org.apache.maven.reporting</groupId> <artifactId>maven-reporting-impl</artifactId> <version>3.0.0</version> </dependency> <dependency> <groupId>org.apache.maven.shared</groupId> <artifactId>maven-filtering</artifactId> <version>3.1.1</version> </dependency> </dependencies> <build> <resources> <resource> <directory>src/main/resources</directory> <filtering>false</filtering> </resource> <resource> <directory>src/main/version-resources</directory> <filtering>true</filtering> </resource> </resources> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-plugin-plugin</artifactId> <version>3.6.0</version> <configuration> <skipErrorNoDescriptorsFound>true</skipErrorNoDescriptorsFound> </configuration> <executions> <execution> <id>default-descriptor</id> <phase>process-classes</phase> </execution> </executions> </plugin> <plugin> <artifactId>maven-deploy-plugin</artifactId> <version>2.8.2</version> <configuration> <retryFailedDeploymentCount>10</retryFailedDeploymentCount> </configuration> </plugin> <plugin> <artifactId>maven-release-plugin</artifactId> <version>2.4.2</version> <configuration> <useReleaseProfile>false</useReleaseProfile> <arguments>-P sonatype-oss-release</arguments> <autoVersionSubmodules>true</autoVersionSubmodules> <allowTimestampedSnapshots>false</allowTimestampedSnapshots> <tagNameFormat>@{project.artifactId}-@{project.version}</tagNameFormat> </configuration> <dependencies> <dependency> <groupId>org.apache.maven.scm</groupId> <artifactId>maven-scm-api</artifactId> <version>1.8.1</version> </dependency> <dependency> <groupId>org.apache.maven.scm</groupId> <artifactId>maven-scm-provider-gitexe</artifactId> <version>1.8.1</version> </dependency> </dependencies> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-site-plugin</artifactId> <version>3.7.1</version> </plugin> </plugins> </build> <reporting> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-project-info-reports-plugin</artifactId> <version>3.0.0</version> <reportSets> <reportSet> </reportSet> </reportSets> </plugin> <plugin> <groupId>${project.groupId}</groupId> <artifactId>${project.artifactId}</artifactId> <version>${project.version}</version> <configuration> <builder>html</builder> <sourceDirectory>${basedir}/src/site/sphinx/</sourceDirectory> <tags> <tag>tagFoo</tag> <tag>tagBar</tag> </tags> <environments> <ENV_FOO>bar</ENV_FOO> </environments> </configuration> </plugin> </plugins> </reporting> </project>