forked from xp-framework/xp-framework
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpom.xml
66 lines (59 loc) · 1.94 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
<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>
<!-- The Basics -->
<groupId>net.xp-framework</groupId>
<artifactId>pom</artifactId>
<version>5.8.7</version>
<packaging>pom</packaging>
<!-- More Project Information -->
<name>XP-Framework</name>
<description>The XP framework is an all-purpose, object oriented PHP framework</description>
<url>https://github.com/xp-framework/xp-framework</url>
<inceptionYear>2001</inceptionYear>
<organization>
<name>XP-Framework Team</name>
<url>http://xp-framework.net/</url>
</organization>
<developers>
<developer>
<id>xp-framework</id>
<name>XP-Framework Team</name>
<email>[email protected]</email>
<url>http://xp-framework.net</url>
</developer>
</developers>
<licenses>
<license>
<name>BSD</name>
<url>http://www.opensource.org/licenses/BSD-3-Clause</url>
<distribution>repo</distribution>
</license>
</licenses>
<!-- Project modules -->
<modules>
<module>./core</module>
<module>./tools</module>
</modules>
<!-- Properties -->
<properties>
<project.build.sourceEncoding>ISO-8859-15</project.build.sourceEncoding>
</properties>
<!-- Build Settings -->
<build>
<plugins>
<plugin>
<groupId>net.xp-forge.maven.plugins</groupId>
<artifactId>xp-maven-plugin</artifactId>
<version>3.0.0</version>
<extensions>true</extensions>
</plugin>
</plugins>
</build>
<!-- Source code management -->
<scm>
<connection>scm:git:git://github.com/xp-framework/xp-framework.git</connection>
<developerConnection>scm:git:[email protected]:xp-framework/xp-framework.git</developerConnection>
<url>https://github.com/xp-framework/xp-framework</url>
</scm>
</project>