Twirl Maven Plugin

Maven plugin for compiling Twirl templates.

Лицензия

Лицензия

Категории

Категории

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

Группа

com.jakewharton.twirl
Идентификатор

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

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

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

1.2.0
Дата

Дата

Тип

Тип

maven-plugin
Описание

Описание

Twirl Maven Plugin
Maven plugin for compiling Twirl templates.

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

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

<plugin>
    <groupId>com.jakewharton.twirl</groupId>
    <artifactId>twirl-maven-plugin</artifactId>
    <version>1.2.0</version>
</plugin>

Зависимости

compile (4)

Идентификатор библиотеки Тип Версия
com.typesafe.play : twirl-compiler_2.12 jar 1.4.1
org.apache.maven : maven-plugin-api jar 3.6.0
org.apache.maven : maven-core jar 3.6.0
org.scala-lang.modules : scala-parser-combinators_2.12 jar 1.1.2

provided (1)

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

test (4)

Идентификатор библиотеки Тип Версия
junit : junit jar 4.12
org.assertj : assertj-core jar 2.0.0
org.apache.maven.plugin-testing : maven-plugin-testing-harness jar 3.3.0
org.apache.maven : maven-compat jar 3.6.0

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

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

Twirl Maven Plugin

A Maven plugin which compiles Twirl templates into Scala source files.

Twirl lets you write type-safe, compiled templates in Scala:

// Hello.scala.html
@(name: String)
<h1>Hello, @name!</h1>

which you then render in code:

html.Hello.render("Jake")

to yield the final result:

<h1>Hello, Jake!</h1>

Usage

Add the plugin in your pom.xml:

<plugin>
  <groupId>com.jakewharton.twirl</groupId>
  <artifactId>twirl-maven-plugin</artifactId>
  <version>1.2.0</version>
  <executions>
    <execution>
      <phase>generate-sources</phase>
      <goals>
        <goal>compile</goal>
      </goals>
    </execution>
  </executions>
</plugin>

and specify a dependency on the Twirl API:

<dependency>
  <groupId>com.typesafe.play</groupId>
  <artifactId>twirl-api_2.12</artifactId>
  <version>1.4.1</version>
</dependency>

By default the plugin looks for templates in src/main/twirl/ and compiles to target/generated-sources/twirl/. The output folder is automatically added as a source root on the project.

The generated code is a Scala source file for each template which still need to be compiled using something like the scala-maven-plugin.

Snapshots of the development version are available in Sonatype's snapshots repository.

License

Copyright 2014 Jake Wharton

Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at

   http://www.apache.org/licenses/LICENSE-2.0

Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.

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

Версия
1.2.0
1.1.0
1.0.5
1.0.4
1.0.3
1.0.2
1.0.1
1.0.0