-
Notifications
You must be signed in to change notification settings - Fork 12
/
pom.xml
104 lines (94 loc) · 3.55 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
93
94
95
96
97
98
99
100
101
102
<?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/maven-v4_0_0.xsd">
<modelVersion>4.0.0</modelVersion>
<groupId>com.shazam</groupId>
<artifactId>gwen</artifactId>
<packaging>jar</packaging>
<version>1.0.3-SNAPSHOT</version>
<name>Gwen</name>
<description>Library for specifying acceptance criteria in tests in a Given-When-Then format</description>
<url>http://github.com/shazam/gwen</url>
<parent>
<groupId>org.sonatype.oss</groupId>
<artifactId>oss-parent</artifactId>
<version>7</version>
</parent>
<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>
<connection>scm:git:git://github.com/shazam/gwen.git</connection>
<developerConnection>scm:git:[email protected]:shazam/gwen.git</developerConnection>
<url>http://github.com/shazam/gwen</url>
</scm>
<developers>
<developer>
<id>savvas.dalkitsis</id>
<name>Savvas Dalkitsis</name>
<email>[email protected]</email>
<organization>Shazam Entertainment</organization>
<organizationUrl>http://www.shazam.com</organizationUrl>
<url>https://github.com/savvasdalkitsis</url>
<roles>
<role>author</role>
</roles>
</developer>
<developer>
<id>colin.vipurs</id>
<name>Colin Vipurs</name>
<email>[email protected]</email>
<organization>Shazam Entertainment</organization>
<organizationUrl>http://www.shazam.com</organizationUrl>
<url>https://github.com/mrwiggles</url>
<roles>
<role>developer</role>
</roles>
</developer>
<developer>
<id>daniel.josefsson</id>
<name>Daniel Josefsson</name>
<email>[email protected]</email>
<organization>Shazam Entertainment</organization>
<organizationUrl>http://www.shazam.com</organizationUrl>
<url>https://github.com/jideji</url>
<roles>
<role>developer</role>
</roles>
</developer>
</developers>
<profiles>
<profile>
<id>customDeployment</id>
<distributionManagement>
<snapshotRepository>
<id>snapshots</id>
<name>Nexus Snapshots</name>
<url>${snapshotsUrl}</url>
</snapshotRepository>
<repository>
<id>releases</id>
<name>Nexus Release Repository</name>
<url>${releasesUrl}</url>
</repository>
</distributionManagement>
</profile>
</profiles>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<version>2.5.1</version>
<inherited>true</inherited>
<configuration>
<source>1.6</source>
<target>1.6</target>
</configuration>
</plugin>
</plugins>
</build>
</project>