-
Notifications
You must be signed in to change notification settings - Fork 54
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #122 from NASAWorldWind/release/v0.5.0-BETA1
Release WWSK v0.5.0 BETA1
- Loading branch information
Showing
1,054 changed files
with
234,817 additions
and
264 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,207 @@ | ||
<?xml version="1.0" encoding="UTF-8"?> | ||
<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"> | ||
<modelVersion>4.0.0</modelVersion> | ||
<parent> | ||
<groupId>gov.nasa.worldwind.server</groupId> | ||
<artifactId>worldwind-serverkit</artifactId> | ||
<version>0.5.0-BETA1</version> | ||
</parent> | ||
<artifactId>worldwind-gs-explorer</artifactId> | ||
<packaging>jar</packaging> | ||
|
||
|
||
<!--=====================================================================--> | ||
<!--Project Information --> | ||
<!--=====================================================================--> | ||
<name>WorldWind GeoServer Explorer</name> | ||
<description>The NASA WebWorldWind Explorer for viewing GeoServer WMS layers that displays the layers on a 3D virtual globe.</description> | ||
<url>https://github.com/NASAWorldWind/WorldWindServerKit</url> | ||
<organization> | ||
<name>NASA World Wind</name> | ||
<url>https://worldwind.arc.nasa.gov</url> | ||
</organization> | ||
<licenses> | ||
<license> | ||
<name>General Public License (GPL)</name> | ||
<url>http://www.gnu.org/copyleft/gpl.txt</url> | ||
</license> | ||
</licenses> | ||
<developers /> | ||
<contributors /> | ||
<mailingLists /> | ||
<prerequisites /> | ||
|
||
<!--=====================================================================--> | ||
<!--Environment Settings --> | ||
<!--=====================================================================--> | ||
<scm> | ||
<url>https://github.com/NASAWorldWind/WorldWindServerKit</url> | ||
<connection>scm:git:git://github.com/NASAWorldWind/WorldWindServerKit.git</connection> | ||
<developerConnection>scm:git:https://github.com/NASAWorldWind/WorldWindServerKit.git</developerConnection> | ||
<tag>HEAD</tag> | ||
</scm> | ||
<issueManagement> | ||
<system>GitHub Issues</system> | ||
<url>https://github.com/NASAWorldWind/WorldWindServerKit/issues</url> | ||
</issueManagement> | ||
<ciManagement> | ||
<system>Travis CI</system> | ||
<url>https://travis-ci.org/NASAWorldWind/WorldWindServerKit</url> | ||
</ciManagement> | ||
<distributionManagement /> | ||
|
||
<!--=====================================================================--> | ||
<!--The Basics --> | ||
<!--=====================================================================--> | ||
<dependencies> | ||
<!--Dependencies common the GeoServer modules--> | ||
<dependency> | ||
<groupId>org.springframework</groupId> | ||
<artifactId>spring-beans</artifactId> | ||
</dependency> | ||
<dependency> | ||
<groupId>org.springframework</groupId> | ||
<artifactId>spring-core</artifactId> | ||
</dependency> | ||
<dependency> | ||
<groupId>org.springframework</groupId> | ||
<artifactId>spring-context</artifactId> | ||
</dependency> | ||
<dependency> | ||
<groupId>org.springframework</groupId> | ||
<artifactId>spring-webmvc</artifactId> | ||
</dependency> | ||
|
||
<!--GeoServer Main module--> | ||
<dependency> | ||
<groupId>org.geoserver</groupId> | ||
<artifactId>gs-main</artifactId> | ||
</dependency> | ||
|
||
<!--GeoServer Open Web Service module--> | ||
<dependency> | ||
<groupId>org.geoserver</groupId> | ||
<artifactId>gs-ows</artifactId> | ||
</dependency> | ||
|
||
<!--WorldWind Core UI module--> | ||
<dependency> | ||
<groupId>gov.nasa.worldwind.server</groupId> | ||
<artifactId>worldwind-gs-web</artifactId> | ||
<version>${project.version}</version> | ||
</dependency> | ||
|
||
<!--Test dependencies--> | ||
<dependency> | ||
<groupId>org.springframework</groupId> | ||
<artifactId>spring-test</artifactId> | ||
<scope>test</scope> | ||
</dependency> | ||
<dependency> | ||
<groupId>org.easymock</groupId> | ||
<artifactId>easymockclassextension</artifactId> | ||
<scope>test</scope> | ||
</dependency> | ||
<dependency> | ||
<groupId>javax.servlet</groupId> | ||
<artifactId>javax.servlet-api</artifactId> | ||
<version>3.0.1</version> | ||
<scope>test</scope> | ||
</dependency> | ||
</dependencies> | ||
|
||
|
||
<reporting /> | ||
<!--=====================================================================--> | ||
<!--Build Settings --> | ||
<!--=====================================================================--> | ||
<build> | ||
<plugins> | ||
<plugin> | ||
<artifactId>maven-antrun-plugin</artifactId> | ||
<executions> | ||
<!-- | ||
Update the WWSK version number to the GeoServerApplication.properties | ||
file(s) so it can be dislayed in the About WWSK page. | ||
--> | ||
<execution> | ||
<id>process-resources</id> | ||
<phase>process-resources</phase> | ||
<configuration> | ||
<tasks> | ||
<replace dir="${project.build.outputDirectory}" encoding="ISO-8859-1"> | ||
<include name="*.properties"/> | ||
<replacefilter token="@wwsk.version@" value="${project.version}"/> | ||
</replace> | ||
</tasks> | ||
</configuration> | ||
<goals> | ||
<goal>run</goal> | ||
</goals> | ||
</execution> | ||
</executions> | ||
</plugin> | ||
</plugins> | ||
<resources> | ||
<resource> | ||
<!-- | ||
Include applicationContext.xml Spring bean factory configuration. | ||
--> | ||
<directory>${basedir}/src/main/java</directory> | ||
<excludes> | ||
<exclude>**/*.java</exclude> | ||
</excludes> | ||
</resource> | ||
<resource> | ||
<!-- | ||
Include GeoServerApplication.properties, html and javascript files. | ||
--> | ||
<directory>${basedir}/src/main/resources</directory> | ||
<includes> | ||
<include>**/*</include> | ||
</includes> | ||
</resource> | ||
</resources> | ||
</build> | ||
<profiles> | ||
<!--Generate the javadocs and sources jar files when the "release" profile is activated--> | ||
<profile> | ||
<id>release</id> | ||
<activation> | ||
<property> | ||
<name>release</name> | ||
</property> | ||
</activation> | ||
<dependencies /> | ||
<build> | ||
<plugins> | ||
<plugin> | ||
<groupId>org.apache.maven.plugins</groupId> | ||
<artifactId>maven-javadoc-plugin</artifactId> | ||
<executions> | ||
<execution> | ||
<id>attach-javadocs</id> | ||
<goals> | ||
<goal>jar</goal> | ||
</goals> | ||
</execution> | ||
</executions> | ||
</plugin> | ||
<plugin> | ||
<groupId>org.apache.maven.plugins</groupId> | ||
<artifactId>maven-source-plugin</artifactId> | ||
<executions> | ||
<execution> | ||
<id>attach-sources</id> | ||
<goals> | ||
<goal>jar</goal> | ||
</goals> | ||
</execution> | ||
</executions> | ||
</plugin> | ||
</plugins> | ||
</build> | ||
<modules /> | ||
</profile> | ||
</profiles> | ||
</project> |
Oops, something went wrong.