Tut Maven Plugin

Maven plugin for generating compiled Scala documentation

Лицензия

Лицензия

BSD 3-clause
Категории

Категории

Maven Компиляция и сборка
Группа

Группа

org.spurint.maven.plugins
Идентификатор

Идентификатор

tut-maven-plugin
Последняя версия

Последняя версия

0.6.13
Дата

Дата

Тип

Тип

maven-plugin
Описание

Описание

Tut Maven Plugin
Maven plugin for generating compiled Scala documentation
Ссылка на сайт

Ссылка на сайт

https://github.com/kelnos/tut-maven-plugin
Система контроля версий

Система контроля версий

https://github.com/kelnos/tut-maven-plugin

Скачать tut-maven-plugin

Как подключить последнюю версию

<plugin>
    <groupId>org.spurint.maven.plugins</groupId>
    <artifactId>tut-maven-plugin</artifactId>
    <version>0.6.13</version>
</plugin>

Зависимости

compile (5)

Идентификатор библиотеки Тип Версия
org.scala-lang : scala-library jar 2.12.9
org.apache.maven : maven-plugin-api jar 3.6.0
org.apache.maven.shared : maven-common-artifact-filters jar 3.1.0
org.apache.maven.shared : maven-artifact-transfer jar 0.11.0
org.codehaus.plexus : plexus-utils jar 3.2.0

provided (2)

Идентификатор библиотеки Тип Версия
org.apache.maven.plugin-tools : maven-plugin-annotations jar 3.6.0
org.apache.maven : maven-project jar 3.0-alpha-2

test (1)

Идентификатор библиотеки Тип Версия
junit : junit jar 4.8.2

Модули Проекта

Данный проект не имеет модулей.

tut-maven-plugin

This is a Maven plugin that allows you to generate Scala documentation snippets that contain code that is compiled to ensure the code is valid. This is just a Maven plugin shell; the original project that does the heavy lifting can be found here.

Releases here will match the version of the corresponding Tut release. If extra releases of this plugin are required for a given Tut version, a fourth version component will be added to the plugin's version number.

Usage

<build>
  <plugins>
    <plugin>
      <groupId>org.spurint.maven.plugins</groupId>
      <artifactId>tut-maven-plugin</artifactId>
      <version>${tut-maven-plugin.version}</version>
      <executions>
        <execution>
          <id>generate-documentation</id>
          <goals>
            <goal>generate-documentation</goal>
          </goals>
          <configuration>
            <sourceDirectory>${project.basedir}/docs-src</sourceDirectory>
            <targetDirectory>${project.basedir}/docs</targetDirectory>
            <nameFilter>.*\\.(md|markdown|txt|htm|html)$</nameFilter>
          </configuration>
        </execution>
      </executions>
    </plugin>
  </plugins>
</build>

Configuration

Name Default Description
sourceDirectory ${project.basedir}/docs-src The source root containing files to parse
targetDirectory ${project.basedir}/docs The location to place generated documenation
nameFiter .*\\.(md|markdown|txt|htm|html)$ A regular expression describing file names to be processed
scalacOptions (taken from project) A list of <scalacOption> to pass to the Scala compiler
pluginJars (taken from project) A list of <pluginJar>, paths to JAR files of compiler plugins

Версии библиотеки

Версия
0.6.13
0.6.9