scopt.
a command line options parsing library.
Here is the list of declaration for scopt_2.9.2. If you use Maven you can use the following code to add the dependency for this POM file.
<dependency> <groupId>com.github.scopt</groupId> <artifactId>scopt_2.9.2</artifactId> <version>2.1.0</version> </dependency>
If you think this Maven repository POM file listing for scopt_2.9.2 is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.
Name:MIT License
URL: http://www.opensource.org/licenses/mit-license.php.
The scopt_2.9.2-2.1.0 has 3 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 |
---|---|---|
Scala | scala-library 2.9.2 Standard library for the Scala Programming Language | 518 |
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 | scalatest_2.9.0 1.8 ScalaTest is a free, open-source testing toolkit for Scala and Java programmers. | 5 |
The following packages are defined in the scopt_2.9.2-2.1.0.jar
scopt scopt.generic scopt.immutable scopt.mutable
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>com.github.scopt</groupId> <artifactId>scopt_2.9.2</artifactId> <packaging>jar</packaging> <description>a command line options parsing library</description> <url>https://github.com/scopt/scopt</url> <version>2.1.0</version> <licenses> <license> <name>MIT License</name> <url>http://www.opensource.org/licenses/mit-license.php</url> <distribution>repo</distribution> </license> </licenses> <name>scopt</name> <organization> <name>com.github.scopt</name> <url>https://github.com/scopt/scopt</url> </organization> <scm> <url>git@github.com:scopt/scopt.git</url> <connection>scm:git:git@github.com:scopt/scopt.git</connection> </scm> <dependencies> <dependency> <groupId>org.scala-lang</groupId> <artifactId>scala-library</artifactId> <version>2.9.2</version> <scope>compile</scope> </dependency> <dependency> <groupId>junit</groupId> <artifactId>junit</artifactId> <version>4.7</version> <scope>test</scope> </dependency> <dependency> <groupId>org.scalatest</groupId> <artifactId>scalatest_2.9.0</artifactId> <version>1.8</version> <scope>test</scope> </dependency> </dependencies> </project>