Maven Repository - POM file for Web Service sbt-sonatype 0.2.1 0.2.1

Summary

sbt-sonatype.

A sbt plugin for publishing Scala/Java projects to the Maven Central through Sonatype Nexus REST API.

Declaration

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

<dependency>
   <groupId>org.xerial.sbt</groupId>
   <artifactId>sbt-sonatype</artifactId>
   <version>0.2.1</version>
</dependency>

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

License

Name:Apache 2
URL: http://www.apache.org/licenses/LICENSE-2.0.txt.





Depends on

The sbt-sonatype-0.2.1 has 4 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
Scalascala-library 2.10.3
Standard library for the Scala Programming Language
519
Httphttpclient 4.2.6
HttpComponents Client
17
Scalascalatest_2.10 2.0
ScalaTest is a free, open-source testing toolkit for Scala and Java programmers.
129

POM File Source

Here is the content of the POM file.

<?xml version='1.0' encoding='UTF-8'?>
<project xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://maven.apache.org/POM/4.0.0">
    <modelVersion>4.0.0</modelVersion>
    <groupId>org.xerial.sbt</groupId>
    <artifactId>sbt-sonatype</artifactId>
    <packaging>jar</packaging>
    <description>A sbt plugin for publishing Scala/Java projects to the Maven Central through Sonatype Nexus REST API</description>
    <version>0.2.1</version>
    <name>sbt-sonatype</name>
    <organization>
        <name>Xerial project</name>
        <url>http://xerial.org/</url>
    </organization>
    <url>https://github.com/xerial/sbt-sonatype</url>
    <licenses>
        <license>
            <name>Apache 2</name>
            <url>http://www.apache.org/licenses/LICENSE-2.0.txt</url>
        </license>
    </licenses>
    <scm>
        <connection>scm:git:github.com/xerial/sbt-sonatype.git</connection>
        <developerConnection>scm:git:git@github.com:xerial/sbt-sonatype.git</developerConnection>
        <url>github.com/xerial/sbt-sonatype.git</url>
    </scm>
    
    <properties>
        <sbtVersion>0.13</sbtVersion>
        <scalaVersion>2.10</scalaVersion>
    </properties>
    <dependencies>
        <dependency>
            <groupId>org.scala-lang</groupId>
            <artifactId>scala-library</artifactId>
            <version>2.10.3</version>
            <scope>provided</scope>
        </dependency>
        <dependency>
            <groupId>org.scala-sbt</groupId>
            <artifactId>sbt</artifactId>
            <version>0.13.2-M1</version>
            <scope>provided</scope>
        </dependency>
        <dependency>
            <groupId>org.apache.httpcomponents</groupId>
            <artifactId>httpclient</artifactId>
            <version>4.2.6</version>
        </dependency>
        <dependency>
            <groupId>org.scalatest</groupId>
            <artifactId>scalatest_2.10</artifactId>
            <version>2.0</version>
            <scope>test</scope>
        </dependency>
    </dependencies>
</project>