2012-02-13 11:18:26 +11:00
|
|
|
<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">
|
2011-06-08 23:13:35 +10:00
|
|
|
<modelVersion>4.0.0</modelVersion>
|
2012-01-17 00:36:48 +11:00
|
|
|
<groupId>com.github.javafaker</groupId>
|
|
|
|
|
<artifactId>javafaker</artifactId>
|
2011-06-08 23:13:35 +10:00
|
|
|
<packaging>jar</packaging>
|
2014-10-22 11:52:17 +11:00
|
|
|
<version>0.6-SNAPSHOT</version>
|
2011-08-07 22:09:59 +10:00
|
|
|
<name>Java Faker</name>
|
|
|
|
|
<description>
|
|
|
|
|
This library is a port of Ruby's stympy/faker gem (as well as Perl's Data::Faker library) that generates fake data.
|
|
|
|
|
It's useful when you're developing a new project and need some pretty data for showcase.
|
|
|
|
|
</description>
|
2011-08-07 21:14:16 +10:00
|
|
|
<url>http://github.com/DiUS/java-faker</url>
|
2011-08-07 22:09:59 +10:00
|
|
|
<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>
|
|
|
|
|
<scm>
|
2012-02-13 10:49:30 +11:00
|
|
|
<connection>scm:git:git://github.com/DiUS/java-faker.git</connection>
|
2012-02-13 11:17:09 +11:00
|
|
|
<developerConnection>scm:git:git@github.com:DiUS/java-faker.git</developerConnection>
|
2011-08-07 22:09:59 +10:00
|
|
|
<url>git://github.com/DiUS/java-faker.git</url>
|
|
|
|
|
</scm>
|
|
|
|
|
<developers>
|
|
|
|
|
<developer>
|
|
|
|
|
<id>renshao</id>
|
|
|
|
|
<name>Ren Shao</name>
|
|
|
|
|
<email>renshao@gmail.com</email>
|
|
|
|
|
</developer>
|
2014-10-22 09:18:43 +11:00
|
|
|
<developer>
|
|
|
|
|
<id>codingricky</id>
|
|
|
|
|
<name>Ricky Yim</name>
|
|
|
|
|
</developer>
|
2011-08-07 22:09:59 +10:00
|
|
|
</developers>
|
2012-02-13 10:49:30 +11:00
|
|
|
|
|
|
|
|
<parent>
|
|
|
|
|
<groupId>org.sonatype.oss</groupId>
|
|
|
|
|
<artifactId>oss-parent</artifactId>
|
|
|
|
|
<version>7</version>
|
|
|
|
|
</parent>
|
2011-08-07 22:09:59 +10:00
|
|
|
|
2011-06-08 23:13:35 +10:00
|
|
|
<dependencies>
|
2011-06-08 23:25:28 +10:00
|
|
|
<dependency>
|
|
|
|
|
<groupId>commons-lang</groupId>
|
|
|
|
|
<artifactId>commons-lang</artifactId>
|
|
|
|
|
<version>2.6</version>
|
|
|
|
|
</dependency>
|
|
|
|
|
<dependency>
|
2014-04-24 15:11:30 +10:00
|
|
|
<groupId>org.yaml</groupId>
|
|
|
|
|
<artifactId>snakeyaml</artifactId>
|
|
|
|
|
<version>1.13</version>
|
2011-06-08 23:25:28 +10:00
|
|
|
</dependency>
|
2011-08-07 20:51:53 +10:00
|
|
|
<dependency>
|
|
|
|
|
<groupId>org.slf4j</groupId>
|
2014-10-22 08:35:35 +11:00
|
|
|
<artifactId>slf4j-api</artifactId>
|
|
|
|
|
<version>1.7.7</version>
|
2011-08-07 20:51:53 +10:00
|
|
|
</dependency>
|
2011-06-08 23:13:35 +10:00
|
|
|
<dependency>
|
|
|
|
|
<groupId>junit</groupId>
|
|
|
|
|
<artifactId>junit</artifactId>
|
2013-12-17 21:51:41 +11:00
|
|
|
<version>4.11</version>
|
2011-06-08 23:13:35 +10:00
|
|
|
<scope>test</scope>
|
|
|
|
|
</dependency>
|
2014-04-24 21:39:34 +10:00
|
|
|
<dependency>
|
|
|
|
|
<groupId>org.reflections</groupId>
|
|
|
|
|
<artifactId>reflections</artifactId>
|
|
|
|
|
<version>0.9.9-RC1</version>
|
|
|
|
|
<scope>test</scope>
|
|
|
|
|
</dependency>
|
2014-04-25 14:12:54 +10:00
|
|
|
<dependency>
|
|
|
|
|
<groupId>org.mockito</groupId>
|
|
|
|
|
<artifactId>mockito-all</artifactId>
|
|
|
|
|
<version>1.9.5</version>
|
|
|
|
|
<scope>test</scope>
|
|
|
|
|
</dependency>
|
2011-06-08 23:13:35 +10:00
|
|
|
</dependencies>
|
2013-10-09 16:08:02 +07:00
|
|
|
<build>
|
|
|
|
|
<pluginManagement>
|
|
|
|
|
<plugins>
|
|
|
|
|
<plugin>
|
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
|
<artifactId>maven-compiler-plugin</artifactId>
|
|
|
|
|
<version>2.3.2</version>
|
|
|
|
|
<configuration>
|
|
|
|
|
<source>1.6</source>
|
|
|
|
|
<target>1.6</target>
|
|
|
|
|
</configuration>
|
|
|
|
|
</plugin>
|
2014-04-23 12:47:43 +10:00
|
|
|
<plugin>
|
|
|
|
|
<groupId>org.eluder.coveralls</groupId>
|
|
|
|
|
<artifactId>coveralls-maven-plugin</artifactId>
|
|
|
|
|
<version>2.2.0</version>
|
|
|
|
|
<configuration>
|
|
|
|
|
<repoToken>${env.COVERALLS_TOKEN}</repoToken>
|
|
|
|
|
</configuration>
|
|
|
|
|
</plugin>
|
|
|
|
|
<plugin>
|
|
|
|
|
<groupId>org.codehaus.mojo</groupId>
|
|
|
|
|
<artifactId>cobertura-maven-plugin</artifactId>
|
|
|
|
|
<version>2.6</version>
|
|
|
|
|
<configuration>
|
|
|
|
|
<format>xml</format>
|
|
|
|
|
<maxmem>256m</maxmem>
|
|
|
|
|
</configuration>
|
|
|
|
|
</plugin>
|
2013-10-09 16:08:02 +07:00
|
|
|
</plugins>
|
|
|
|
|
</pluginManagement>
|
|
|
|
|
</build>
|
2011-06-08 23:13:35 +10:00
|
|
|
</project>
|