Maven Repository - POM file for Log slf4j-scala-api 1.6.3 1.6.3

Summary

SLF4J Scala API Module.

The slf4j Scala API. Taken from https://github.com/ceki/slf4j/tree/master/slf4j-scala-api. Changed to slf4j 1.6.1 and scala to 2.8.1. Changed group id, added distribution management and made it s.

Declaration

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

<dependency>
   <groupId>org.apache.clerezza.ext</groupId>
   <artifactId>slf4j-scala-api</artifactId>
   <version>1.6.3</version>
</dependency>

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





License

Apache License.

Depends on

The slf4j-scala-api-1.6.3 has 2 dependencies.The most popular ones are listed in the following table along with their categories and number of artifacts depending on them.

CategoryArtifactDepended By Count
Testing Mockmockito-all 1.9.5
Mock objects library for java
1072

Depended by

The following table lists the most popular artifacts which are depending on slf4j-scala-api-1.6.3. Their categories and depend by count are also listed.

CategoryArtifactDepended By Count
Web Serviceplatform.typerendering.core 0.3
This project provides a JAX-RS MessageBodyWriter to render GraphNodes. Rendering requests are delegated to registered renderlets.
8

Plugin

The following plugins are used in the slf4j-scala-api-1.6.3.jar

  1. maven-bundle-plugin
  2. maven-scala-plugin
  3. maven-surefire-plugin

Packages

The following packages are defined in the slf4j-scala-api-1.6.3.jar

org.slf4j.scala




POM File Source

Here is the content of the POM file.

<?xml version="1.0" encoding="UTF-8" standalone="no"?><!--

 Licensed to the Apache Software Foundation (ASF) under one
 or more contributor license agreements.  See the NOTICE file
 distributed with this work for additional information
 regarding copyright ownership.  The ASF licenses this file
 to you 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.

--><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.apache.clerezza</groupId>
    <artifactId>clerezza</artifactId>
    <version>0.5</version>
    <relativePath>../parent</relativePath>
  </parent>

  <modelVersion>4.0.0</modelVersion>

  <groupId>org.apache.clerezza.ext</groupId>
  <artifactId>slf4j-scala-api</artifactId>
  <version>1.6.3</version>
  <packaging>bundle</packaging>
  <name>SLF4J Scala API Module</name>

  <url>http://www.slf4j.org</url>
  <description>The slf4j Scala API. Taken from
  https://github.com/ceki/slf4j/tree/master/slf4j-scala-api. Changed to slf4j 1.6.1 and scala to 2.8.1.
  Changed group id, added distribution management and made it s</description>

  <properties>
    <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
  </properties>

  <dependencies>
    <dependency>
      <groupId>org.slf4j</groupId>
      <artifactId>slf4j-api</artifactId>
    </dependency>
    <dependency>
      <groupId>org.scala-lang</groupId>
      <artifactId>scala-library</artifactId>
    </dependency>
    <dependency>
      <groupId>org.scala-tools.testing</groupId>
      <artifactId>specs_2.10</artifactId>
      <version>1.6.9</version>
      <scope>test</scope>
    </dependency>
    <dependency>
      <groupId>org.mockito</groupId>
      <artifactId>mockito-all</artifactId>
      <version>1.9.5</version>
      <scope>test</scope>
    </dependency>
    <dependency>
      <groupId>junit</groupId>
      <artifactId>junit</artifactId>
      <scope>test</scope>
    </dependency>
    <dependency>
      <groupId>org.slf4j</groupId>
      <artifactId>slf4j-simple</artifactId>
      <scope>test</scope>
    </dependency>
  </dependencies> 

  <build>
    <plugins>

      <plugin>
        <groupId>org.scala-tools</groupId>
        <artifactId>maven-scala-plugin</artifactId>
        <configuration>
          <charset>${project.build.sourceEncoding}</charset>
          <jvmArgs>
            <jvmArg>-Xmx1024m</jvmArg>
          </jvmArgs>
          <args>
            <arg>-make:changed</arg>
            <arg>-deprecation</arg>
            <arg>-unchecked</arg>
          </args>
        </configuration>
        <executions>
          <execution>
            <goals>
              <goal>compile</goal>
              <goal>testCompile</goal>
            </goals>
          </execution>
        </executions>
      </plugin>

      <plugin>
        <artifactId>maven-surefire-plugin</artifactId>
        <configuration>
          <includes>
            <include>**/*Spec.java</include>
            <include>**/*Test.java</include>
          </includes>
        </configuration>
      </plugin>

      <plugin>
        <groupId>org.apache.felix</groupId>
        <artifactId>maven-bundle-plugin</artifactId>
        <extensions>true</extensions>
        <configuration>
          <instructions>
            <Export-Package>org.slf4j.scala.*;version="${project.version}"</Export-Package>
          </instructions>
        </configuration>
      </plugin>

    </plugins>

  </build>
</project>