bootstrap
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>ru.taskurotta</groupId> <artifactId>bootstrap</artifactId> <version>0.8.1</version> </dependency>
<?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"> <parent> <artifactId>ru.taskurotta</artifactId> <groupId>ru.taskurotta</groupId> <version>0.8.1</version> </parent> <modelVersion>4.0.0</modelVersion> <artifactId>bootstrap</artifactId> <name>Taskurotta :: Bootstrap</name> <scm> <connection>scm:git:git://github.com/taskurotta/taskurotta.git</connection> <developerConnection>scm:git:git@github.com:taskurotta/taskurotta.git</developerConnection> <url>http://taskurotta.org</url> </scm> <licenses> <license> <name>MIT License</name> <url>http://www.opensource.org/licenses/mit-license.php</url> </license> </licenses> <dependencies> <dependency> <groupId>ru.taskurotta</groupId> <artifactId>client</artifactId> <version>${project.version}</version> </dependency> <dependency> <groupId>ru.taskurotta</groupId> <artifactId>transport</artifactId> <version>${project.version}</version> </dependency> <dependency> <groupId>ru.taskurotta</groupId> <artifactId>util</artifactId> <version>${project.version}</version> </dependency> <dependency> <groupId>net.sourceforge.argparse4j</groupId> <artifactId>argparse4j</artifactId> <version>0.3.1</version> </dependency> <dependency> <groupId>com.fasterxml.jackson.dataformat</groupId> <artifactId>jackson-dataformat-yaml</artifactId> <version>${jackson.version}</version> </dependency> <dependency> <groupId>org.jdom</groupId> <artifactId>jdom</artifactId> <version>1.1</version> </dependency> <!-- metrics --> <dependency> <groupId>com.yammer.metrics</groupId> <artifactId>metrics-core</artifactId> <version>${yammer.metrics.version}</version> </dependency> <dependency> <groupId>com.yammer.metrics</groupId> <artifactId>metrics-logback</artifactId> <version>${yammer.metrics.version}</version> </dependency> <!-- /metrics --> <dependency> <groupId>junit</groupId> <artifactId>junit</artifactId> </dependency> <dependency> <groupId>org.springframework</groupId> <artifactId>spring-context</artifactId> <version>${spring.version}</version> <scope>test</scope> </dependency> </dependencies> <build> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-compiler-plugin</artifactId> <version>3.1</version> <configuration> <source>1.6</source> <target>1.6</target> <encoding>UTF-8</encoding> </configuration> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-source-plugin</artifactId> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-javadoc-plugin</artifactId> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-gpg-plugin</artifactId> </plugin> </plugins> </build> </project>