command-line-processing
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency>
<groupId>il.ac.technion.cs.ssdl</groupId>
<artifactId>command-line-processing</artifactId>
<version>1.0.1</version>
</dependency><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>il.ac.technion.cs.ssdl</groupId> <artifactId>command-line-processing</artifactId> <version>1.0.1</version> <name>Command Line Processing</name> <description>Extracting command line options directly into data members: each field marked with an @External annotation automatically becomes a command line option. Extracting the options values from the command line arguments, i.e., the "String[] args" parameter to main, into the field(s), requires a single method invocation: Introspector.extract(args, o1, o2, ...) where o1,o2, ... are the objects in which the fields annotated with @External.</description> <url>http://command-line-processing.googlecode.com</url> <licenses> <license> <name>The Apache Software License, Version 2.0</name> <url>http://www.apache.org/licenses/LICENSE-2.0.txt</url> <distribution>repo</distribution> </license> </licenses> <parent> <groupId>org.sonatype.oss</groupId> <artifactId>oss-parent</artifactId> <version>7</version> </parent> <scm> <connection>scm:svn:http://command-line-processing.googlecode.com/svn/command-line-processing</connection> <developerConnection>scm:svn:https://command-line-processing.googlecode.com/svn/command-line-processing</developerConnection> <url>http://command-line-processing.googlecode.com/svn</url> </scm> <properties> <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> </properties> <build> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-gpg-plugin</artifactId> <executions> <execution> <id>sign-artifacts</id> <phase>verify</phase> <goals> <goal>sign</goal> </goals> </execution> </executions> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-compiler-plugin</artifactId> <version>2.1</version> <configuration> <source>1.6</source> <target>1.6</target> </configuration> </plugin> </plugins> </build> <dependencies> <dependency> <groupId>junit</groupId> <artifactId>junit</artifactId> <version>4.10</version> </dependency> </dependencies> <organization> <name>Department of Computer Science, The Technion</name> <url>http://www.cs.technion.ac.il/~yogi</url> </organization> </project>