-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpom.xml
55 lines (49 loc) · 1.72 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
<?xml version="1.0" encoding="UTF-8"?>
<project>
<modelVersion>4.0.0</modelVersion>
<groupId>ZendExt</groupId>
<artifactId>ZendExt</artifactId>
<packaging>php</packaging>
<name>ZendExt</name>
<version>1.6-SNAPSHOT</version>
<description>An extension library for Zend Framework adding multiple new features.</description>
<parent>
<groupId>com.monits</groupId>
<artifactId>php-pom</artifactId>
<version>1.2</version>
</parent>
<scm>
<developerConnection>scm:[email protected]:Monits/ZendExt.git</developerConnection>
<url>https://github.com/Monits/ZendExt</url>
<connection>scm:git://github.com/Monits/ZendExt.git</connection>
</scm>
<issueManagement>
<system>Mantis BugTracker</system>
<url>http://mantis.monits.com/</url>
</issueManagement>
<repositories>
<repository>
<id>monits-external</id>
<url>http://nexus.monits.com/content/repositories/external/</url>
<name>Monits external</name>
</repository>
</repositories>
<dependencies>
<dependency>
<groupId>com.zend</groupId>
<artifactId>zend-framework-stripped</artifactId>
<version>1.10.2</version>
</dependency>
<dependency>
<groupId>com.zend</groupId>
<artifactId>zend-framework-test</artifactId>
<version>1.10.2</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>com.facebook</groupId>
<artifactId>graphapi</artifactId>
<version>3.2.0</version>
</dependency>
</dependencies>
</project>