money
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency>
<groupId>com.github.lehphyro.money</groupId>
<artifactId>money</artifactId>
<version>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> <name>money-utility</name> <description>Implementation of the Money class as described by Martin Fowler</description> <url>https://github.com/leandroaparecido/money</url> <parent> <groupId>org.sonatype.oss</groupId> <artifactId>oss-parent</artifactId> <version>7</version> </parent> <groupId>com.github.lehphyro.money</groupId> <artifactId>money</artifactId> <version>0.1</version> <dependencies> <dependency> <groupId>com.google.guava</groupId> <artifactId>guava</artifactId> <version>12.0</version> </dependency> <dependency> <groupId>junit</groupId> <artifactId>junit</artifactId> <version>4.8.2</version> <scope>test</scope> </dependency> </dependencies> <scm> <connection>scm:git:git@github.com:leandroaparecido/money.git</connection> <developerConnection>scm:git:git@github.com:leandroaparecido/money.git</developerConnection> <url>git@github.com:leandroaparecido/money.git</url> </scm> <build> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-compiler-plugin</artifactId> <version>2.5.1</version> <configuration> <source>1.6</source> <target>1.6</target> </configuration> </plugin> </plugins> </build> <developers> <developer> <id>leandro</id> <email>lehphyro@gmail.com</email> <roles> <role>leader</role> </roles> </developer> </developers> </project>