Maven Repository - POM file for Scala scalate-core 1.1 1.1

Summary

Scalate :: Core.

Scalate Core.

Declaration

Here is the list of declaration for scalate-core. If you use Maven you can use the following code to add the dependency for this POM file.

<dependency>
   <groupId>org.fusesource.scalate</groupId>
   <artifactId>scalate-core</artifactId>
   <version>1.1</version>
</dependency>

If you think this Maven repository POM file listing for scalate-core is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.

Plugin

The following plugins are used in the scalate-core-1.1.jar

  1. maven-surefire-plugin




Packages

The following packages are defined in the scalate-core-1.1.jar

org.fusesource.scalate
org.fusesource.scalate.console
org.fusesource.scalate.filter
org.fusesource.scalate.introspector
org.fusesource.scalate.jersey
org.fusesource.scalate.layout
org.fusesource.scalate.rest
org.fusesource.scalate.scaml
org.fusesource.scalate.servlet
org.fusesource.scalate.ssp
org.fusesource.scalate.support
org.fusesource.scalate.util




POM File Source

Here is the content of the POM file.

<?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/maven-v4_0_0.xsd">
  <parent>
    <groupId>org.fusesource.scalate</groupId>
    <artifactId>scalate-project</artifactId>
    <version>1.1</version>
  </parent>
  <modelVersion>4.0.0</modelVersion>
  <artifactId>scalate-core</artifactId>

  <name>Scalate :: Core</name>
  <description>Scalate Core</description>

  <dependencies>
    <dependency>
      <groupId>org.scala-lang</groupId>
      <artifactId>scala-library</artifactId>
      <version>${scala-version}</version>
    </dependency>
    <dependency>
      <groupId>org.scala-lang</groupId>
      <artifactId>scala-compiler</artifactId>
      <version>${scala-version}</version>
    </dependency>

    <dependency>
      <groupId>javax.servlet</groupId>
      <artifactId>servlet-api</artifactId>
      <optional>true</optional>
    </dependency>
    <dependency>
      <groupId>org.slf4j</groupId>
      <artifactId>slf4j-api</artifactId>
    </dependency>
    <dependency>
      <groupId>com.sun.jersey</groupId>
      <artifactId>jersey-server</artifactId>
      <optional>true</optional>
    </dependency>

    <dependency>
      <groupId>org.markdownj</groupId>
      <artifactId>markdownj</artifactId>
      <optional>true</optional>
    </dependency>

    <dependency>
      <groupId>ch.qos.logback</groupId>
      <artifactId>logback-classic</artifactId>
      <scope>optional</scope>
    </dependency>

    <!-- testing -->
    <dependency>
      <groupId>org.scalatest</groupId>
      <artifactId>scalatest</artifactId>
      <scope>test</scope>
    </dependency>
    <dependency>
      <groupId>junit</groupId>
      <artifactId>junit</artifactId>
      <scope>test</scope>
    </dependency>

  </dependencies>

  <build>
    <plugins>
      <plugin>
        <artifactId>maven-surefire-plugin</artifactId>
        <configuration>
          <forkMode>pertest</forkMode>
          <excludes>
<!--
            <exclude>**/ScamlBugTest.*</exclude>
-->
          </excludes>
        </configuration>
      </plugin>

    </plugins>
  </build>
</project>