|
2 | 2 | xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> |
3 | 3 | <modelVersion>4.0.0</modelVersion> |
4 | 4 | <parent> |
5 | | - <artifactId>geowave-parent</artifactId> |
| 5 | + <artifactId>geowave-analytic-parent</artifactId> |
6 | 6 | <groupId>mil.nga.giat</groupId> |
7 | 7 | <relativePath>../</relativePath> |
8 | 8 | <version>0.8.7-SNAPSHOT</version> |
9 | 9 | </parent> |
10 | | - <artifactId>geowave-utils</artifactId> |
11 | | - <name>geowave-utils</name> |
| 10 | + <artifactId>geowave-analytic-api</artifactId> |
| 11 | + <name>GeoWave Analytics API</name> |
12 | 12 | <dependencies> |
13 | 13 | <dependency> |
14 | 14 | <groupId>mil.nga.giat</groupId> |
15 | | - <artifactId>geowave-accumulo</artifactId> |
| 15 | + <artifactId>geowave-datastore-accumulo</artifactId> |
16 | 16 | <version>${project.version}</version> |
17 | | - <exclusions> |
18 | | - <exclusion> |
19 | | - <artifactId>jersey-core</artifactId> |
20 | | - <groupId>com.sun.jersey</groupId> |
21 | | - </exclusion> |
22 | | - </exclusions> |
23 | 17 | </dependency> |
24 | 18 | <dependency> |
25 | 19 | <groupId>mil.nga.giat</groupId> |
26 | | - <artifactId>geowave-index</artifactId> |
| 20 | + <artifactId>geowave-adapter-vector</artifactId> |
27 | 21 | <version>${project.version}</version> |
| 22 | + <exclusions> |
| 23 | + <exclusion> |
| 24 | + <artifactId>jdk.tools</artifactId> |
| 25 | + <groupId>jdk.tools</groupId> |
| 26 | + </exclusion> |
| 27 | + <exclusion> |
| 28 | + <artifactId>mockito-all</artifactId> |
| 29 | + <groupId>org.mockito</groupId> |
| 30 | + </exclusion> |
| 31 | + <exclusion> |
| 32 | + <groupId>javax.servlet</groupId> |
| 33 | + <artifactId>*</artifactId> |
| 34 | + </exclusion> |
| 35 | + <exclusion> |
| 36 | + <groupId>org.geoserver</groupId> |
| 37 | + <artifactId>gs-wms</artifactId> |
| 38 | + </exclusion> |
| 39 | + <exclusion> |
| 40 | + <groupId>org.geoserver</groupId> |
| 41 | + <artifactId>gs-main</artifactId> |
| 42 | + </exclusion> |
| 43 | + </exclusions> |
28 | 44 | </dependency> |
29 | 45 | <dependency> |
30 | 46 | <groupId>mil.nga.giat</groupId> |
31 | | - <artifactId>geowave-vector</artifactId> |
| 47 | + <artifactId>geowave-adapter-raster</artifactId> |
32 | 48 | <version>${project.version}</version> |
33 | | - </dependency> |
34 | | - <dependency> |
35 | | - <groupId>org.apache.accumulo</groupId> |
36 | | - <artifactId>accumulo-minicluster</artifactId> |
37 | 49 | <exclusions> |
38 | 50 | <exclusion> |
39 | | - <groupId>org.apache.accumulo</groupId> |
40 | | - <artifactId>accumulo-monitor</artifactId> |
| 51 | + <artifactId>jdk.tools</artifactId> |
| 52 | + <groupId>jdk.tools</groupId> |
| 53 | + </exclusion> |
| 54 | + <exclusion> |
| 55 | + <artifactId>mockito-all</artifactId> |
| 56 | + <groupId>org.mockito</groupId> |
41 | 57 | </exclusion> |
42 | 58 | <exclusion> |
43 | | - <groupId>org.slf4j</groupId> |
| 59 | + <groupId>javax.servlet</groupId> |
44 | 60 | <artifactId>*</artifactId> |
45 | 61 | </exclusion> |
46 | 62 | <exclusion> |
47 | | - <artifactId>jersey-core</artifactId> |
48 | | - <groupId>com.sun.jersey</groupId> |
| 63 | + <groupId>org.geoserver</groupId> |
| 64 | + <artifactId>gs-wms</artifactId> |
| 65 | + </exclusion> |
| 66 | + <exclusion> |
| 67 | + <groupId>org.geoserver</groupId> |
| 68 | + <artifactId>gs-main</artifactId> |
49 | 69 | </exclusion> |
50 | 70 | </exclusions> |
51 | 71 | </dependency> |
| 72 | + <dependency> |
| 73 | + <groupId>junit</groupId> |
| 74 | + <artifactId>junit</artifactId> |
| 75 | + <version>4.11</version> |
| 76 | + <scope>test</scope> |
| 77 | + </dependency> |
| 78 | + <dependency> |
| 79 | + <groupId>com.esotericsoftware.kryo</groupId> |
| 80 | + <artifactId>kryo</artifactId> |
| 81 | + <version>2.21</version> |
| 82 | + </dependency> |
52 | 83 | </dependencies> |
53 | | - <profiles> |
54 | | - <profile> |
55 | | - <id>accumulo-server</id> |
56 | | - <activation> |
57 | | - <property> |
58 | | - <name>accumulo.legacy</name> |
59 | | - </property> |
60 | | - </activation> |
61 | | - <dependencies> |
62 | | - <dependency> |
63 | | - <groupId>org.apache.accumulo</groupId> |
64 | | - <artifactId>accumulo-server</artifactId> |
65 | | - </dependency> |
66 | | - </dependencies> |
67 | | - </profile> |
68 | | - <profile> |
69 | | - <id>accumulo-monitor</id> |
70 | | - <activation> |
71 | | - <property> |
72 | | - <name>!accumulo.legacy</name> |
73 | | - </property> |
74 | | - </activation> |
75 | | - <dependencies> |
76 | | - <dependency> |
77 | | - <groupId>org.apache.accumulo</groupId> |
78 | | - <artifactId>accumulo-monitor</artifactId> |
79 | | - </dependency> |
80 | | - </dependencies> |
81 | | - </profile> |
82 | | - </profiles> |
83 | 84 | <build> |
84 | 85 | <plugins> |
85 | 86 | <plugin> |
|
0 commit comments