-
Notifications
You must be signed in to change notification settings - Fork 22
/
pom.xml
92 lines (89 loc) · 3.41 KB
/
pom.xml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
<?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">
<modelVersion>4.0.0</modelVersion>
<artifactId>jfixture-parent</artifactId>
<version>2.7.3-SNAPSHOT</version>
<groupId>com.flextrade.jfixture</groupId>
<name>JFixture Parent</name>
<description>JFixture is an open source library based on the popular .NET library, AutoFixture</description>
<url>https://github.com/FlexTradeUKLtd/jfixture</url>
<packaging>pom</packaging>
<licenses>
<license>
<name>MIT License</name>
<url>http://www.opensource.org/licenses/mit-license.php</url>
<distribution>repo</distribution>
</license>
</licenses>
<developers>
<developer>
<name>Richard Keenan</name>
<email>[email protected]</email>
<organization>FlexTrade UK Ltd</organization>
<organizationUrl>http://www.flextrade.com/</organizationUrl>
</developer>
</developers>
<build>
<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>
</plugins>
</build>
<scm>
<connection>scm:git:git://github.com/FlexTradeUKLtd/jfixture.git</connection>
<developerConnection>scm:git:[email protected]:FlexTradeUKLtd/jfixture.git</developerConnection>
<url>http://github.com/FlexTradeUKLtd/jfixture.git</url>
</scm>
<dependencyManagement>
<dependencies>
<dependency>
<groupId>com.flextrade.jfixture</groupId>
<artifactId>jfixture</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<version>4.13.1</version>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>org.mockito</groupId>
<artifactId>mockito-core</artifactId>
<version>2.24.0</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.hamcrest</groupId>
<artifactId>hamcrest-all</artifactId>
<version>1.3</version>
<scope>test</scope>
</dependency>
</dependencies>
</dependencyManagement>
<distributionManagement>
<snapshotRepository>
<id>sonatype-nexus-snapshots</id>
<url>https://oss.sonatype.org/content/repositories/snapshots</url>
</snapshotRepository>
<repository>
<id>sonatype-nexus-releases</id>
<url>https://oss.sonatype.org/service/local/staging/deploy/maven2</url>
</repository>
</distributionManagement>
<modules>
<module>jfixture</module>
<module>jfixture-mockito</module>
<module>jfixture-jodatime</module>
<module>jfixture-jupiter</module>
</modules>
</project>