tinydi
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency>
<groupId>com.googlecode.tinydi</groupId>
<artifactId>tinydi</artifactId>
<version>1.2</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/maven-v4_0_0.xsd">
<modelVersion>4.0.0</modelVersion>
<groupId>com.googlecode.tinydi</groupId>
<artifactId>tinydi</artifactId>
<version>1.2</version>
<parent>
<groupId>org.sonatype.oss</groupId>
<artifactId>oss-parent</artifactId>
<version>7</version>
</parent>
<properties>
<slf4j.version>1.5.2</slf4j.version>
</properties>
<dependencies>
<dependency>
<groupId>org.slf4j</groupId>
<artifactId>slf4j-api</artifactId>
<version>${slf4j.version}</version>
</dependency>
<dependency>
<groupId>javax.inject</groupId>
<artifactId>javax.inject</artifactId>
<version>1</version>
</dependency>
<dependency>
<groupId>javax.servlet</groupId>
<artifactId>servlet-api</artifactId>
<version>2.5</version>
<scope>provided</scope>
</dependency>
</dependencies>
<url>http://tinydi.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>
<issueManagement>
<url>http://code.google.com/p/tinydi/issues/list</url>
</issueManagement>
<scm>
<url>http://tinydi.googlecode.com/svn/tags/tinydi-1.2</url>
<connection>scm:svn:http://tinydi.googlecode.com/svn/tags/tinydi-1.2</connection>
<developerConnection>scm:svn:http://tinydi.googlecode.com/svn/tags/tinydi-1.2</developerConnection>
</scm>
<organization>
<url>tinydi.googlecode.com</url>
</organization>
<developers>
<developer>
<id>palr</id>
<name>Richard Pal</name>
<email>testmailbox5@gmail.com</email>
</developer>
</developers>
<build>
<plugins>
<!-- skip unittests by default. Re-enable with -DskipTest=false -->
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-surefire-plugin</artifactId>
<version>2.8</version>
<configuration>
<skipTests>${skipTests}</skipTests>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-gpg-plugin</artifactId>
<version>1.4</version>
<executions>
<execution>
<id>sign-artifacts</id>
<phase>verify</phase>
<goals>
<goal>sign</goal>
</goals>
</execution>
</executions>
</plugin>
</plugins>
</build>
</project>