1 | <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" |
---|
2 | xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd" |
---|
3 | > |
---|
4 | <modelVersion>4.0.0</modelVersion> |
---|
5 | |
---|
6 | <groupId>org.ibisph</groupId> |
---|
7 | <artifactId>ibisph-admin</artifactId> |
---|
8 | <packaging>war</packaging> |
---|
9 | <version>2.2.0</version> |
---|
10 | <name>ibisph-admin</name> |
---|
11 | <description>IBIS-PH Admin Web Application Example POM</description> |
---|
12 | |
---|
13 | <properties> |
---|
14 | <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> |
---|
15 | </properties> |
---|
16 | |
---|
17 | <repositories> |
---|
18 | <repository> |
---|
19 | <id>jboss-public-repository-group</id> |
---|
20 | <name>JBoss Public Maven Repository Group</name> |
---|
21 | <url>http://repository.jboss.org/nexus/content/groups/public-jboss/</url> |
---|
22 | </repository> |
---|
23 | |
---|
24 | <repository> |
---|
25 | <id>maven2-repository.java.net</id> |
---|
26 | <name>Java.net Repository for Maven</name> |
---|
27 | <url>http://download.java.net/maven/2/</url> |
---|
28 | <layout>default</layout> |
---|
29 | </repository> |
---|
30 | |
---|
31 | <repository> |
---|
32 | <id>com.springsource.repository.bundles.release</id> |
---|
33 | <name>SpringSource Enterprise Bundle Repository - SpringSource Releases</name> |
---|
34 | <url>http://repository.springsource.com/maven/bundles/release</url> |
---|
35 | </repository> |
---|
36 | <repository> |
---|
37 | <id>com.springsource.repository.bundles.external</id> |
---|
38 | <name>SpringSource Enterprise Bundle Repository - External Releases</name> |
---|
39 | <url>http://repository.springsource.com/maven/bundles/external</url> |
---|
40 | </repository> |
---|
41 | <repository> |
---|
42 | <id>com.springsource.repository.bundles.milestone</id> |
---|
43 | <name>SpringSource Enterprise Bundle Repository - SpringSource Milestones</name> |
---|
44 | <url>http://repository.springsource.com/maven/bundles/milestone</url> |
---|
45 | </repository> |
---|
46 | <repository> |
---|
47 | <id>com.springsource.repository.bundles.snapshot</id> |
---|
48 | <name>SpringSource Enterprise Bundle Repository - Snapshot Releases</name> |
---|
49 | <url>http://repository.springsource.com/maven/bundles/snapshot</url> |
---|
50 | </repository> |
---|
51 | </repositories> |
---|
52 | |
---|
53 | <dependencies> |
---|
54 | <dependency> |
---|
55 | <groupId>org.ibisph</groupId> |
---|
56 | <artifactId>ibisph</artifactId> |
---|
57 | <version>2.2</version> |
---|
58 | <scope>compile</scope> |
---|
59 | </dependency> |
---|
60 | </dependencies> |
---|
61 | |
---|
62 | <build> |
---|
63 | <finalName>ibisph-admin</finalName> |
---|
64 | <plugins> |
---|
65 | <plugin> |
---|
66 | <groupId>org.apache.maven.plugins</groupId> |
---|
67 | <artifactId>maven-compiler-plugin</artifactId> |
---|
68 | <configuration> |
---|
69 | <source>1.6</source> |
---|
70 | <target>1.6</target> |
---|
71 | </configuration> |
---|
72 | </plugin> |
---|
73 | </plugins> |
---|
74 | </build> |
---|
75 | |
---|
76 | </project> |
---|
77 | |
---|