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/xsd/maven-4.0.0.xsd"> |
---|
3 | <modelVersion>4.0.0</modelVersion> |
---|
4 | <parent> |
---|
5 | <artifactId>project</artifactId> |
---|
6 | <groupId>ndg.services.rediscovery</groupId> |
---|
7 | <version>3.0.0-SNAPSHOT</version> |
---|
8 | <relativePath>..</relativePath> |
---|
9 | </parent> |
---|
10 | <artifactId>ear</artifactId> |
---|
11 | <packaging>ear</packaging> |
---|
12 | |
---|
13 | <name>NDG rediscovery - EAR</name> |
---|
14 | |
---|
15 | <organization> |
---|
16 | <name>BADC</name> |
---|
17 | <url>http://badc.nerc.ac.uk</url> |
---|
18 | </organization> |
---|
19 | |
---|
20 | <developers> |
---|
21 | <developer> |
---|
22 | <id>mnagni</id> |
---|
23 | <name>Maurizio Nagni</name> |
---|
24 | <email>maurizio.nagni@stcf.ac.uk</email> |
---|
25 | <organization>BADC</organization> |
---|
26 | <organizationUrl>http://badc.nerc.ac.uk</organizationUrl> |
---|
27 | <roles> |
---|
28 | <role>Java Architect</role> |
---|
29 | </roles> |
---|
30 | </developer> |
---|
31 | </developers> |
---|
32 | |
---|
33 | <dependencies> |
---|
34 | <dependency> |
---|
35 | <groupId>ndg.services.rediscovery</groupId> |
---|
36 | <artifactId>dpws</artifactId> |
---|
37 | <version>3.0.0-SNAPSHOT</version> |
---|
38 | <type>ejb</type> |
---|
39 | </dependency> |
---|
40 | |
---|
41 | <!-- <dependency> --> |
---|
42 | <!-- <groupId>ndg.services.schemas</groupId> --> |
---|
43 | <!-- <artifactId>dataprovider</artifactId> --> |
---|
44 | <!-- <version>2.1.0</version> --> |
---|
45 | <!-- </dependency> --> |
---|
46 | |
---|
47 | <!-- <dependency> --> |
---|
48 | <!-- <groupId>ndg.services.schemas</groupId> --> |
---|
49 | <!-- <artifactId>discovery</artifactId> --> |
---|
50 | <!-- <version>1.0.0</version> --> |
---|
51 | <!-- </dependency> --> |
---|
52 | |
---|
53 | <dependency> |
---|
54 | <groupId>ndg.services.rediscovery</groupId> |
---|
55 | <artifactId>dataProviderSchema</artifactId> |
---|
56 | <version>3.0.0-SNAPSHOT</version> |
---|
57 | </dependency> |
---|
58 | |
---|
59 | <dependency> |
---|
60 | <groupId>ndg.services.rediscovery</groupId> |
---|
61 | <artifactId>discoverySchema</artifactId> |
---|
62 | <version>3.0.0-SNAPSHOT</version> |
---|
63 | </dependency> |
---|
64 | |
---|
65 | <dependency> |
---|
66 | <groupId>ndg.services.schemas</groupId> |
---|
67 | <artifactId>ows</artifactId> |
---|
68 | <version>1.0.0</version> |
---|
69 | </dependency> |
---|
70 | |
---|
71 | <dependency> |
---|
72 | <groupId>ndg.services.schemas</groupId> |
---|
73 | <artifactId>gml</artifactId> |
---|
74 | <version>3.1.1</version> |
---|
75 | </dependency> |
---|
76 | |
---|
77 | <dependency> |
---|
78 | <groupId>ndg.services.schemas</groupId> |
---|
79 | <artifactId>filter</artifactId> |
---|
80 | <version>1.1.0</version> |
---|
81 | </dependency> |
---|
82 | |
---|
83 | <dependency> |
---|
84 | <groupId>ndg.services.schemas</groupId> |
---|
85 | <artifactId>csw</artifactId> |
---|
86 | <version>2.0.2</version> |
---|
87 | </dependency> |
---|
88 | |
---|
89 | <dependency> |
---|
90 | <groupId>ndg.services</groupId> |
---|
91 | <artifactId>common</artifactId> |
---|
92 | <version>1.1.1</version> |
---|
93 | <exclusions> |
---|
94 | <exclusion> |
---|
95 | <artifactId>slf4j-api</artifactId> |
---|
96 | <groupId>org.slf4j</groupId> |
---|
97 | </exclusion> |
---|
98 | </exclusions> |
---|
99 | </dependency> |
---|
100 | |
---|
101 | <dependency> |
---|
102 | <groupId>ndg.services</groupId> |
---|
103 | <artifactId>jboss</artifactId> |
---|
104 | <version>1.0.0</version> |
---|
105 | </dependency> |
---|
106 | </dependencies> |
---|
107 | |
---|
108 | <build> |
---|
109 | <plugins> |
---|
110 | <plugin> |
---|
111 | <groupId>org.apache.maven.plugins</groupId> |
---|
112 | <artifactId>maven-ear-plugin</artifactId> |
---|
113 | <version>2.7</version> |
---|
114 | <configuration> |
---|
115 | <includeLibInApplicationXml>true</includeLibInApplicationXml> |
---|
116 | <displayName>Ear Project</displayName> |
---|
117 | <description>Some description</description> |
---|
118 | <modules> |
---|
119 | <ejbModule> |
---|
120 | <groupId>ndg.services.rediscovery</groupId> |
---|
121 | <artifactId>dpws</artifactId> |
---|
122 | <bundleFileName>dpws.jar</bundleFileName> |
---|
123 | </ejbModule> |
---|
124 | </modules> |
---|
125 | <jboss> |
---|
126 | <version>5</version> |
---|
127 | <loader-repository> |
---|
128 | discovery.service.ndg:loader=DiscoveryNERC |
---|
129 | </loader-repository> |
---|
130 | </jboss> |
---|
131 | <finalName>dpws</finalName> |
---|
132 | </configuration> |
---|
133 | <dependencies> |
---|
134 | <dependency> |
---|
135 | <groupId>ndg.services.rediscovery</groupId> |
---|
136 | <artifactId>dpws</artifactId> |
---|
137 | <version>3.0.0-SNAPSHOT</version> |
---|
138 | <type>ejb</type> |
---|
139 | </dependency> |
---|
140 | </dependencies> |
---|
141 | </plugin> |
---|
142 | </plugins> |
---|
143 | </build> |
---|
144 | </project> |
---|