Files
jfaker/pom.xml
T

175 lines
6.2 KiB
XML
Raw Normal View History

<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>
2012-01-17 00:36:48 +11:00
<groupId>com.github.javafaker</groupId>
<artifactId>javafaker</artifactId>
<packaging>jar</packaging>
<version>0.11-SNAPSHOT</version>
<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>
<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>
<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>
</developers>
2015-12-04 09:30:52 +11:00
2012-02-13 10:49:30 +11:00
<parent>
<groupId>org.sonatype.oss</groupId>
<artifactId>oss-parent</artifactId>
<version>7</version>
2015-12-04 09:30:52 +11:00
</parent>
<repositories>
<repository>
<id>jitpack.io</id>
<url>https://jitpack.io</url>
</repository>
</repositories>
<dependencies>
<dependency>
2016-08-12 00:05:03 -04:00
<groupId>org.apache.commons</groupId>
<artifactId>commons-lang3</artifactId>
<version>3.4</version>
</dependency>
<dependency>
<groupId>com.github.bmoliveira</groupId>
<artifactId>snake-yaml</artifactId>
<version>v1.18-android</version>
</dependency>
2016-04-24 23:20:39 +02:00
<dependency>
<groupId>com.github.mifmif</groupId>
<artifactId>generex</artifactId>
<version>1.0.1</version>
2016-04-24 23:20:39 +02:00
</dependency>
<dependency>
<groupId>org.slf4j</groupId>
<artifactId>slf4j-api</artifactId>
2016-05-06 15:51:09 +10:00
<version>1.7.21</version>
2015-12-04 09:30:52 +11:00
<scope>test</scope>
</dependency>
2015-12-07 10:21:01 +11:00
<dependency>
<groupId>org.slf4j</groupId>
<artifactId>slf4j-simple</artifactId>
2016-05-06 15:51:09 +10:00
<version>1.7.21</version>
2015-12-07 10:21:01 +11:00
<scope>test</scope>
</dependency>
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
2016-05-06 15:51:09 +10:00
<version>4.12</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.hamcrest</groupId>
<artifactId>hamcrest-library</artifactId>
<version>1.3</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.reflections</groupId>
<artifactId>reflections</artifactId>
2016-05-06 15:51:09 +10:00
<version>0.9.10</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.mockito</groupId>
<artifactId>mockito-all</artifactId>
2016-05-06 15:51:09 +10:00
<version>1.10.19</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>commons-validator</groupId>
<artifactId>commons-validator</artifactId>
2016-05-06 15:51:09 +10:00
<version>1.5.1</version>
<scope>test</scope>
</dependency>
</dependencies>
2013-10-09 16:08:02 +07:00
<build>
<pluginManagement>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
2016-05-06 15:57:23 +10:00
<version>3.5.1</version>
2013-10-09 16:08:02 +07:00
<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>4.2.0</version>
2014-04-23 12:47:43 +10:00
<configuration>
<repoToken>${env.COVERALLS_TOKEN}</repoToken>
</configuration>
</plugin>
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>cobertura-maven-plugin</artifactId>
2016-05-06 16:18:15 +10:00
<version>2.7</version>
2014-04-23 12:47:43 +10:00
<configuration>
<format>xml</format>
<maxmem>256m</maxmem>
</configuration>
2015-05-07 10:49:58 +10:00
</plugin>
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>failsafe-maven-plugin</artifactId>
<version>2.4.3-alpha-1</version>
<executions>
<execution>
<goals>
<goal>integration-test</goal>
<goal>verify</goal>
</goals>
</execution>
</executions>
2014-04-23 12:47:43 +10:00
</plugin>
2013-10-09 16:08:02 +07:00
</plugins>
</pluginManagement>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-shade-plugin</artifactId>
<version>2.4.3</version>
<configuration>
<artifactSet>
<includes>
<include>com.github.bmoliveira:snake-yaml</include>
</includes>
</artifactSet>
</configuration>
<executions>
<execution>
<phase>package</phase>
<goals>
<goal>shade</goal>
</goals>
</execution>
</executions>
</plugin>
</plugins>
2013-10-09 16:08:02 +07:00
</build>
</project>