maven-bulma-skin
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>com.github.ktarou</groupId> <artifactId>maven-bulma-skin</artifactId> <version>0.0.1</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> <groupId>com.github.ktarou</groupId> <artifactId>maven-bulma-skin</artifactId> <version>0.0.1</version> <name>Maven Bulma Skin</name> <description>Maven site skin based on Bulma css</description> <url>https://ktarou.github.io/maven-bulma-skin</url> <licenses> <license> <name>Apache License, Version 2.0</name> <url>https://www.apache.org/licenses/LICENSE-2.0.txt</url> <distribution>repo</distribution> </license> </licenses> <scm> <connection>scm:git:https://github.com/ktarou/maven-bulma-skin.git</connection> <url>https://github.com/ktarou/maven-bulma-skin</url> <developerConnection>scm:git:https://github.com/ktarou/maven-bulma-skin.git</developerConnection> <tag>0.0.1</tag> </scm> <developers> <developer> <id>kustian</id> <name>Kustian</name> <email>ken.kustian@gmail.com</email> </developer> </developers> <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> <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> <project.info.reports.plugin.version>2.9</project.info.reports.plugin.version> <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> <site.plugin.version>3.7.1</site.plugin.version> <resources.plugin.version>2.7</resources.plugin.version> <project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding> <compiler.plugin.version>3.8.0</compiler.plugin.version> <jar.plugin.version>3.1.0</jar.plugin.version> <install.plugin.version>2.5.2</install.plugin.version> <release.plugin.version>2.5.3</release.plugin.version> <gpg.plugin.version>1.6</gpg.plugin.version> <deploy.plugin.version>2.8.2</deploy.plugin.version> <nexus.staging.maven.plugin.version>1.6.8</nexus.staging.maven.plugin.version> <site.maven.plugin>0.12</site.maven.plugin> <asciidoctor.maven.plugin.version>1.5.7.1</asciidoctor.maven.plugin.version> <asciidoctorj.version>1.5.7</asciidoctorj.version> <asciidoctorj.diagram.version>1.5.11</asciidoctorj.diagram.version> <jruby.version>9.1.17.0</jruby.version> </properties> <build> <pluginManagement><!-- lock down plugins versions to avoid using Maven defaults (may be moved to parent pom) --> <plugins> <plugin> <artifactId>maven-site-plugin</artifactId> <version>${site.plugin.version}</version> </plugin> <plugin> <artifactId>maven-resources-plugin</artifactId> <version>${resources.plugin.version}</version> </plugin> <plugin> <artifactId>maven-compiler-plugin</artifactId> <version>${compiler.plugin.version}</version> </plugin> <plugin> <artifactId>maven-jar-plugin</artifactId> <version>${jar.plugin.version}</version> </plugin> <plugin> <artifactId>maven-install-plugin</artifactId> <version>${install.plugin.version}</version> </plugin> <plugin> <artifactId>maven-deploy-plugin</artifactId> <version>${deploy.plugin.version}</version> </plugin> <plugin> <artifactId>maven-project-info-reports-plugin</artifactId> <version>${project.info.reports.plugin.version}</version> </plugin> <plugin> <groupId>org.sonatype.plugins</groupId> <artifactId>nexus-staging-maven-plugin</artifactId> <version>${nexus.staging.maven.plugin.version}</version> </plugin> <plugin> <groupId>com.github.github</groupId> <artifactId>site-maven-plugin</artifactId> <version>${site.maven.plugin}</version> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-release-plugin</artifactId> <version>${release.plugin.version}</version> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-gpg-plugin</artifactId> <version>${gpg.plugin.version}</version> </plugin> </plugins> </pluginManagement> <plugins> <plugin> <artifactId>maven-release-plugin</artifactId> <configuration> <useReleaseProfile>false</useReleaseProfile> <releaseProfiles>release</releaseProfiles> <goals>deploy</goals> </configuration> </plugin> <plugin> <groupId>org.sonatype.plugins</groupId> <artifactId>nexus-staging-maven-plugin</artifactId> <extensions>true</extensions> <configuration> <serverId>ossrh</serverId> <nexusUrl>https://oss.sonatype.org/</nexusUrl> <autoReleaseAfterClose>true</autoReleaseAfterClose> </configuration> </plugin> <plugin> <artifactId>maven-site-plugin</artifactId> <configuration> <skipDeploy>true</skipDeploy> <!-- Disable changing absolute link to relative --> <relativizeDecorationLinks>false</relativizeDecorationLinks> <locales>en</locales> <inputEncoding>UTF-8</inputEncoding> <outputEncoding>UTF-8</outputEncoding> <asciidoc> <requires> <require>asciidoctor-diagram</require> </requires> <!--<backend>html5</backend>--> <!-- optional site-wide AsciiDoc attributes --> <attributes> <outdir>${basedir}/target/site</outdir> <imagesdir>./images</imagesdir> <!--<icons>font</icons> <source-highlighter>coderay</source-highlighter> <coderay-css>style</coderay-css>--> <toclevels>3</toclevels> <!-- Example below shows how to specify in this pom instead of System's PATH, the location of dot command of Graphviz, required by PlantUML libraries --> <!-- Windows: <graphvizdot>C:\Program Files (x86)\Graphviz2.38\bin\dot.exe</graphvizdot> --> <!-- *nix : <graphvizdot>/usr/local/bin/dot</graphvizdot> --> </attributes> </asciidoc> </configuration> <dependencies> <dependency> <!-- Maven Bulma Skin --> <groupId>com.github.ktarou</groupId> <artifactId>bulma-maven-skin</artifactId> <version>${project.version}</version> </dependency> <dependency> <groupId>org.asciidoctor</groupId> <artifactId>asciidoctor-maven-plugin</artifactId> <version>${asciidoctor.maven.plugin.version}</version> </dependency> <dependency> <groupId>org.jruby</groupId> <artifactId>jruby-complete</artifactId> <version>${jruby.version}</version> </dependency> <dependency> <groupId>org.asciidoctor</groupId> <artifactId>asciidoctorj</artifactId> <version>${asciidoctorj.version}</version> </dependency> <dependency> <groupId>org.asciidoctor</groupId> <artifactId>asciidoctorj-diagram</artifactId> <version>${asciidoctorj.diagram.version}</version> </dependency> </dependencies> </plugin> </plugins> </build> <profiles> <profile> <id>release</id> <build> <plugins> <plugin> <artifactId>maven-gpg-plugin</artifactId> <executions> <execution> <id>sign-artifacts</id> <phase>verify</phase> <goals> <goal>sign</goal> </goals> </execution> </executions> </plugin> <plugin> <artifactId>maven-source-plugin</artifactId> <executions> <execution> <id>attach-sources</id> <goals> <goal>jar-no-fork</goal> </goals> </execution> </executions> </plugin> <plugin> <artifactId>maven-javadoc-plugin</artifactId> <executions> <execution> <id>attach-javadocs</id> <goals> <goal>jar</goal> </goals> </execution> </executions> </plugin> </plugins> </build> </profile> <profile> <id>site</id> <build> <plugins> <plugin> <groupId>com.github.github</groupId> <artifactId>site-maven-plugin</artifactId> <configuration> <server>github</server> <message>Creating site for ${project.version}</message> </configuration> <executions> <execution> <goals> <goal>site</goal> </goals> <phase>site</phase> </execution> </executions> </plugin> </plugins> </build> <reporting> <plugins> <plugin> <artifactId>maven-project-info-reports-plugin</artifactId> <configuration> <!-- To avoid slow builds. See here: http://whatiscomingtomyhead.wordpress.com/2011/04/20/if-your-maven-site-build-is-too-slow/ --> <dependencyDetailsEnabled>false</dependencyDetailsEnabled> </configuration> <reportSets> <reportSet> <reports> <report>index</report> <report>summary</report> <report>scm</report> <report>team</report> <report>dependencies</report> </reports> </reportSet> </reportSets> </plugin> </plugins> </reporting> </profile> </profiles> </project>