Skip to content

Commit 6f181f1

Browse files
authored
Merge pull request #122 from NASAWorldWind/release/v0.5.0-BETA1
Release WWSK v0.5.0 BETA1
2 parents 7615d7e + a2279ba commit 6f181f1

File tree

1,054 files changed

+234817
-264
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

1,054 files changed

+234817
-264
lines changed

pom.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@
2929

3030
<groupId>gov.nasa.worldwind.server</groupId>
3131
<artifactId>worldwind-serverkit</artifactId>
32-
<version>0.5.0-SNAPSHOT</version>
32+
<version>0.5.0-BETA1</version>
3333
<packaging>pom</packaging>
3434

3535
<!--=====================================================================-->
@@ -63,9 +63,9 @@
6363
<module>worldwind-gs-geopkg</module>
6464
<module>worldwind-gs-wms</module>
6565
<module>worldwind-gs-web</module>
66+
<module>worldwind-gs-explorer</module>
6667
<module>worldwind-geoserver</module>
6768
<module>worldwind-geoserver-dist</module>
68-
<module>worldwind-gs-viewer</module>
6969
</modules>
7070

7171
<!--=====================================================================-->

worldwind-geoserver-dist/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
<parent>
55
<groupId>gov.nasa.worldwind.server</groupId>
66
<artifactId>worldwind-serverkit</artifactId>
7-
<version>0.5.0-SNAPSHOT</version>
7+
<version>0.5.0-BETA1</version>
88
</parent>
99
<artifactId>worldwind-geoserver-dist</artifactId>
1010
<packaging>pom</packaging>

worldwind-geoserver/pom.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
<parent>
55
<groupId>gov.nasa.worldwind.server</groupId>
66
<artifactId>worldwind-serverkit</artifactId>
7-
<version>0.5.0-SNAPSHOT</version>
7+
<version>0.5.0-BETA1</version>
88
</parent>
99
<artifactId>worldwind-geoserver</artifactId>
1010
<packaging>war</packaging>
@@ -176,7 +176,7 @@
176176
<!--WorldWind GeoServer Viewer module-->
177177
<dependency>
178178
<groupId>${project.groupId}</groupId>
179-
<artifactId>worldwind-gs-viewer</artifactId>
179+
<artifactId>worldwind-gs-explorer</artifactId>
180180
<version>${project.version}</version>
181181
</dependency>
182182

worldwind-gs-explorer/pom.xml

Lines changed: 207 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,207 @@
1+
<?xml version="1.0" encoding="UTF-8"?>
2+
<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/xsd/maven-4.0.0.xsd">
3+
<modelVersion>4.0.0</modelVersion>
4+
<parent>
5+
<groupId>gov.nasa.worldwind.server</groupId>
6+
<artifactId>worldwind-serverkit</artifactId>
7+
<version>0.5.0-BETA1</version>
8+
</parent>
9+
<artifactId>worldwind-gs-explorer</artifactId>
10+
<packaging>jar</packaging>
11+
12+
13+
<!--=====================================================================-->
14+
<!--Project Information -->
15+
<!--=====================================================================-->
16+
<name>WorldWind GeoServer Explorer</name>
17+
<description>The NASA WebWorldWind Explorer for viewing GeoServer WMS layers that displays the layers on a 3D virtual globe.</description>
18+
<url>https://github.com/NASAWorldWind/WorldWindServerKit</url>
19+
<organization>
20+
<name>NASA World Wind</name>
21+
<url>https://worldwind.arc.nasa.gov</url>
22+
</organization>
23+
<licenses>
24+
<license>
25+
<name>General Public License (GPL)</name>
26+
<url>http://www.gnu.org/copyleft/gpl.txt</url>
27+
</license>
28+
</licenses>
29+
<developers />
30+
<contributors />
31+
<mailingLists />
32+
<prerequisites />
33+
34+
<!--=====================================================================-->
35+
<!--Environment Settings -->
36+
<!--=====================================================================-->
37+
<scm>
38+
<url>https://github.com/NASAWorldWind/WorldWindServerKit</url>
39+
<connection>scm:git:git://github.com/NASAWorldWind/WorldWindServerKit.git</connection>
40+
<developerConnection>scm:git:https://github.com/NASAWorldWind/WorldWindServerKit.git</developerConnection>
41+
<tag>HEAD</tag>
42+
</scm>
43+
<issueManagement>
44+
<system>GitHub Issues</system>
45+
<url>https://github.com/NASAWorldWind/WorldWindServerKit/issues</url>
46+
</issueManagement>
47+
<ciManagement>
48+
<system>Travis CI</system>
49+
<url>https://travis-ci.org/NASAWorldWind/WorldWindServerKit</url>
50+
</ciManagement>
51+
<distributionManagement />
52+
53+
<!--=====================================================================-->
54+
<!--The Basics -->
55+
<!--=====================================================================-->
56+
<dependencies>
57+
<!--Dependencies common the GeoServer modules-->
58+
<dependency>
59+
<groupId>org.springframework</groupId>
60+
<artifactId>spring-beans</artifactId>
61+
</dependency>
62+
<dependency>
63+
<groupId>org.springframework</groupId>
64+
<artifactId>spring-core</artifactId>
65+
</dependency>
66+
<dependency>
67+
<groupId>org.springframework</groupId>
68+
<artifactId>spring-context</artifactId>
69+
</dependency>
70+
<dependency>
71+
<groupId>org.springframework</groupId>
72+
<artifactId>spring-webmvc</artifactId>
73+
</dependency>
74+
75+
<!--GeoServer Main module-->
76+
<dependency>
77+
<groupId>org.geoserver</groupId>
78+
<artifactId>gs-main</artifactId>
79+
</dependency>
80+
81+
<!--GeoServer Open Web Service module-->
82+
<dependency>
83+
<groupId>org.geoserver</groupId>
84+
<artifactId>gs-ows</artifactId>
85+
</dependency>
86+
87+
<!--WorldWind Core UI module-->
88+
<dependency>
89+
<groupId>gov.nasa.worldwind.server</groupId>
90+
<artifactId>worldwind-gs-web</artifactId>
91+
<version>${project.version}</version>
92+
</dependency>
93+
94+
<!--Test dependencies-->
95+
<dependency>
96+
<groupId>org.springframework</groupId>
97+
<artifactId>spring-test</artifactId>
98+
<scope>test</scope>
99+
</dependency>
100+
<dependency>
101+
<groupId>org.easymock</groupId>
102+
<artifactId>easymockclassextension</artifactId>
103+
<scope>test</scope>
104+
</dependency>
105+
<dependency>
106+
<groupId>javax.servlet</groupId>
107+
<artifactId>javax.servlet-api</artifactId>
108+
<version>3.0.1</version>
109+
<scope>test</scope>
110+
</dependency>
111+
</dependencies>
112+
113+
114+
<reporting />
115+
<!--=====================================================================-->
116+
<!--Build Settings -->
117+
<!--=====================================================================-->
118+
<build>
119+
<plugins>
120+
<plugin>
121+
<artifactId>maven-antrun-plugin</artifactId>
122+
<executions>
123+
<!--
124+
Update the WWSK version number to the GeoServerApplication.properties
125+
file(s) so it can be dislayed in the About WWSK page.
126+
-->
127+
<execution>
128+
<id>process-resources</id>
129+
<phase>process-resources</phase>
130+
<configuration>
131+
<tasks>
132+
<replace dir="${project.build.outputDirectory}" encoding="ISO-8859-1">
133+
<include name="*.properties"/>
134+
<replacefilter token="@wwsk.version@" value="${project.version}"/>
135+
</replace>
136+
</tasks>
137+
</configuration>
138+
<goals>
139+
<goal>run</goal>
140+
</goals>
141+
</execution>
142+
</executions>
143+
</plugin>
144+
</plugins>
145+
<resources>
146+
<resource>
147+
<!--
148+
Include applicationContext.xml Spring bean factory configuration.
149+
-->
150+
<directory>${basedir}/src/main/java</directory>
151+
<excludes>
152+
<exclude>**/*.java</exclude>
153+
</excludes>
154+
</resource>
155+
<resource>
156+
<!--
157+
Include GeoServerApplication.properties, html and javascript files.
158+
-->
159+
<directory>${basedir}/src/main/resources</directory>
160+
<includes>
161+
<include>**/*</include>
162+
</includes>
163+
</resource>
164+
</resources>
165+
</build>
166+
<profiles>
167+
<!--Generate the javadocs and sources jar files when the "release" profile is activated-->
168+
<profile>
169+
<id>release</id>
170+
<activation>
171+
<property>
172+
<name>release</name>
173+
</property>
174+
</activation>
175+
<dependencies />
176+
<build>
177+
<plugins>
178+
<plugin>
179+
<groupId>org.apache.maven.plugins</groupId>
180+
<artifactId>maven-javadoc-plugin</artifactId>
181+
<executions>
182+
<execution>
183+
<id>attach-javadocs</id>
184+
<goals>
185+
<goal>jar</goal>
186+
</goals>
187+
</execution>
188+
</executions>
189+
</plugin>
190+
<plugin>
191+
<groupId>org.apache.maven.plugins</groupId>
192+
<artifactId>maven-source-plugin</artifactId>
193+
<executions>
194+
<execution>
195+
<id>attach-sources</id>
196+
<goals>
197+
<goal>jar</goal>
198+
</goals>
199+
</execution>
200+
</executions>
201+
</plugin>
202+
</plugins>
203+
</build>
204+
<modules />
205+
</profile>
206+
</profiles>
207+
</project>

0 commit comments

Comments
 (0)