SExt.
A small extensions library for Scala.
Here is the list of declaration for sext. If you use Maven you can use the following code to add the dependency for this POM file.
<dependency> <groupId>com.github.nikita-volkov</groupId> <artifactId>sext</artifactId> <version>0.2.2</version> </dependency>
If you think this Maven repository POM file listing for sext is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.
Name:MIT/X11
URL: http://www.github.com/nikita-volkov/sext/LICENSE.
The sext-0.2.2 has 5 dependencies.The most popular ones are listed in the following table along with their categories and number of artifacts depending on them.
Category | Artifact | Depended By Count |
---|---|---|
JUnit | junit 4.7 JUnit is a regression testing framework written by Erich Gamma and Kent Beck. It is used by the developer who implements unit tests in Java. | 272 |
Scala | scala-library 2.10.0-RC2 Standard library for the Scala Programming Language | 24 |
The following plugins are used in the sext-0.2.2.jar
The following packages are defined in the sext-0.2.2.jar
sext
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/xsd/maven-4.0.0.xsd"> <modelVersion>4.0.0</modelVersion> <groupId>com.github.nikita-volkov</groupId> <artifactId>sext</artifactId> <version>0.2.2</version> <packaging>jar</packaging> <name>SExt</name> <description>A small extensions library for Scala</description> <url>http://www.github.com/nikita-volkov/sext</url> <licenses> <license> <name>MIT/X11</name> <url>http://www.github.com/nikita-volkov/sext/LICENSE</url> </license> </licenses> <scm> <connection>scm:git:git@github.com:nikita-volkov/sext.git</connection> <url>scm:git:git@github.com:nikita-volkov/sext.git</url> <developerConnection>scm:git:git@github.com:nikita-volkov/sext.git</developerConnection> </scm> <parent> <groupId>org.sonatype.oss</groupId> <artifactId>oss-parent</artifactId> <version>7</version> </parent> <dependencies> <dependency> <groupId>org.scalatest</groupId> <artifactId>scalatest_2.10.0-RC2</artifactId> <version>2.0.M4</version> <scope>test</scope> </dependency> <dependency> <groupId>junit</groupId> <artifactId>junit</artifactId> <version>4.7</version> <scope>test</scope> </dependency> <dependency> <groupId>org.scala-lang</groupId> <artifactId>scala-reflect</artifactId> <version>2.10.0-RC2</version> </dependency> <dependency> <groupId>org.scala-lang</groupId> <artifactId>scala-library</artifactId> <version>2.10.0-RC2</version> </dependency> <dependency> <groupId>org.scala-lang</groupId> <artifactId>scala-compiler</artifactId> <version>2.10.0-RC2</version> <scope>compile</scope> </dependency> </dependencies> <build> <plugins> <plugin> <groupId>net.alchim31.maven</groupId> <artifactId>scala-maven-plugin</artifactId> <version>3.1.0</version> <executions> <execution> <id>compile</id> <goals> <goal>compile</goal> <goal>testCompile</goal> </goals> </execution> <execution> <id>attach-javadocs</id> <goals> <goal>doc-jar</goal> </goals> </execution> </executions> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-surefire-plugin</artifactId> <version>2.12</version> <configuration> <includes> <include>**/*Suite.class</include> <include>**/*Test.class</include> <include>**/*Tests.class</include> <include>**/*Spec.class</include> <include>**/*Specs.class</include> </includes> </configuration> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-source-plugin</artifactId> <version>2.1.2</version> <executions> <execution> <id>attach-sources</id> <phase>package</phase> <goals> <goal>jar-no-fork</goal> </goals> </execution> </executions> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-gpg-plugin</artifactId> <executions> <execution> <id>sign-artifacts</id> <goals> <goal>sign</goal> </goals> </execution> </executions> <configuration> <useAgent>true</useAgent> </configuration> </plugin> </plugins> </build> </project>