Giter VIP home page Giter VIP logo

dandanyouxiang / suite Goto Github PK

View Code? Open in Web Editor NEW

This project forked from tschaub/suite

0.0 2.0 0.0 437.98 MB

Boundless Suite (formerly OpenGeo Suite) Git repository

Home Page: https://boundlessgeo.com/boundless-suite/

Shell 7.40% Python 0.44% CSS 2.60% HTML 3.74% JavaScript 0.41% Scheme 0.95% Fortran 21.22% Java 57.47% FreeMarker 0.06% Dockerfile 0.91% Groovy 4.33% Makefile 0.08% Ruby 0.39%

suite's Introduction

Boundless Server

These instructions describe how to build platform independent components of Boundless Server.

Prerequisites

The following base software packages are required.

Some modules require additional packages:

Ensure that all the above are installed so that the associated executables are on the PATH of the user building the server.

Developer Guide

If you just want to build server locally, and do not intend to contribute changes, you can skip this section and proceed to the Quickstart.

Getting Started

  1. Fork the server projuct to your github account. This fork will be used to stage your changes.

  2. Clone your fork of server in the desktop:

     % git clone git://github.com/<yourusername>/server.git server
     % cd server
    
  3. Add an upstream remote pointing to the boundless server project:

     % git remote add upstream https://www.github.com/boundlessgeo/server.git server
    
  4. This remote will be used to update your fork of server to the latest from the boundless suie repository. Any time you want to get the latest changes, simply pull from the upstream remote:

     % git pull upstream master
    

Submodules

Server includes code from several other projects by way of Git Submodules. Most server submodules are in geoserver/externals. Submodules function like a link to a specific revision of a project. When using git on the desktop, submodules behave like single files as long as you are outside of them. However, they can be traversed like directories and once inside a submodule, git behaves as if you are in a checkout of the submodule project itself.

  1. When inside a submodule, you can update the revision it links to by pulling from a remote. Many submodules link to a specific branch, so make sure you get the right one (ask a developer if you are unsure)!

     % cd geoserver/externals/geoserver
     % git pull origin 2.7.x
    
  2. In order for this update to be reflected in the server project, it must be commited like any other change:

     % cd ../
     % git add geoserver
     % git commit -m "update geoserver submodule"
    
  3. You can then push this change to your fork and create a pull request, like any other commit.

Release Branches

During regular development, server changes are commited to the master branch. Prior to a release, a release branch (of the form r4.7) is created. Any changes should be made against that branch instead, and backported to master if necessary.

  1. When commiting a change to the release branch, note the commit id:

     [r4.7 0c66de5] update geoserver submodule
    
  2. To backport this commit to master, switch to the master branch and use cherry-pick to copy the commit. Remember to push your change up to the server repository:

     % git checkout master
     % git cherry-pick 0c66de5
     % git push upstream master
    

Certain submodules (mainly geoserver) will also have release specific branches. If you are updating a submodule on the release branch, first check if it has its own branch for this release (usually of the form server-4.7). Ask a developer if you are unsure.

What's next

To build Boundless Server, go to step 2 of the Quickstart.

For more information about the build system, see the Build System Overview.

For information on the individual components that comprise server, follow the links in the Modules section.

If you are preparing for a new release of Boundless Server, refer to the Release Procedure section.

Quickstart

  1. Clone the repository:

     % git clone git://github.com/boundlessgeo/server.git server
     % cd server
    
  2. Initialize submodule dependencies:

     % git submodule update --init --recursive
    
  3. Do a full build:

     % ant
    
  4. Or build the module of your choice:

     % cd docs
     % ant 
    

Build System Overview

The server repository is made up a number of modules (ie projects). During development typically modules are built individually as opposed to all at once. The primary build tool for server is Ant. For some modules the ant script delegates to the modules native build tool such as Maven or Sphinx.

All top level modules have a build.xml that defines the following targets:

  1. build - Builds the project, the result of this is something deployable in the development environment. This target is the default.
  2. clean - Cleans the project deleting all build artifacts.
  3. assemble - Assembles the project into a zip archive suitable for deployment in production. This is the artifact consumed by installer builders.
  4. publish - Publishes the zip archive to a final location.
  5. all - Runs all the above targets.

Building for development purposes typically looks like:

ant clean build

Building for deployment purposes typically looks like:

ant clean build assemble

Or to build everything:

ant all

The highest level build files simply delegate to the lower level build files. This means that performing a top level build and performing a build for a specific module will result in the same artifacts being produced for that module.

The build directory contains common build files used by modules.

  • common.xml - Common ant targets used by module build files. Every module build file imports this file as the first step.
  • build.properties - Default build properties that can be overridden on a global or per module basis.
  • build_properties.py - Used by the doc build to parse properties from build.properties into the server build environment.

Build Properties

Many aspects of the server build such as file locations, executable names, etc... are parameterized into build properties. The default build.properties contains a list of default values. Often these default properties must be overridden to cater to the environment (eg. Windows vs Unix) or to cater to specifics of a particular module.

There are two ways to override build properties:

  1. The first is to specify them directly to the ant build command with the Java system property (-D) syntax. For example:

       % ant -Dserver.build_cat=release build
    
  2. Creating a file named local.properties either at the global level or at the module level. The global local.properties is located in the build directory next to build.properties. Module specific local.properties files are located next to the module build.xml file. Naturally the module specific local properties file overrides properties from its global counterpart.

Using any combination of the above method it should never be necessary to modify the build.properties file directly.

The build.properties file should be modified when development begins on a new server version, in order to update the appropriate version numbers and geoserver extensions.

Release Procedure

When performing a new Server release, there are several changes that should be made in this repo to prepare for the release.

Update Versions

In build.properties, update the following properties:

  • server.version - This controls the version that is displayed on the Dashboard and in the Docs, and should be updated for every release.

If this release includes a change to the geoserver major version (For example, from 2.12 to 2.13), you also need to update the following properties:

  • gt.major_version
  • gwc.major_version
  • gs.major_version

Additionally, you will need to update the GeoTools, GeoWebcache, and GeoServer versions in the following files:

  • geoserver/webapp/pom.xml
  • geowebcache/pom.xml

Update Submodules

Update any submodules that have changed since the last release. For a minor release, this is usually just geotools, geowebcache, and geoserver. This should typically be updated to the latest commit in the stable branch.

For a major release, also be sure to update geomesa and geoserver-exts to a version that supports the new geotools/geoserver major versions.

Update Docs

Update the What's new page with a short, user-friendly list of the highlights of the current release.

If there have been any changes in the packaging or install procedures, update the installation instructions accordingly. This is usually only necessary for major releases.

Versioned build

To build server with a specific minor version assigned to geotools, geowebcache, and geoserver (instead of -SNAPSHOT), use the build/versions.xml ant script to set a custom version. For example, to build server 4.9-beta1:

    % ant -f build/versions.xml set-versions -Dserver.minor_version=-beta1
    % ant all -Dserver.minor_version=-beta1

To undo this action and reset te versions back to -SNAPSHOT:

   % git reset --hard HEAD
   % git submodule foreach --recursive git reset --hard

Custom-building a GeoServer extension for Support

Occasionally, we will have to build (or re-build) an extension or jar after a server release has gone out. I will be using Server 4.9.1 as the server version for the purposes of this example.

  1. Checkout the correct server branch and update submodules:

     % git checkout r4.9.1
     % git submodule update --init --recursive
    
  2. Set the server version for the geoserver artifacts:

     % ant -f build/versions.xml set-versions -Dserver.minor_version=-server-4.9.1
    
  3. If you are building an extension that does not normally ship with server, modify build/build.properties and add that module to gs.exts_core or gs.exts_comm (depending upon whether or not it is a community module).

  4. Change to the geoserver directory and run a build.

     % cd geoserver
     % ant clean build assemble -Dserver.minor_version=-server-4.9.1
    
  5. The geoserver artifacts will be in geoserver/geoserver/src/target/release. The server war will be in webapp/target.

Modules

The server repository is composed of the following modules:

Consult the module README files for module specific information.

suite's People

Contributors

bmmpxf avatar tbarsballe avatar tschaub avatar mweisman avatar ahocevar avatar jdeolive avatar jodygarnett avatar dblasby avatar smithkm avatar nstires-boundless avatar cuttlefish avatar goudine avatar bartvde avatar robertdenis avatar malaretv avatar ischneider avatar dwins avatar dakcarto avatar rmarianski avatar cdelpinogeo avatar jmarin avatar travislbrundage avatar volaya avatar johngschulz avatar dvntucker avatar dmkelsey avatar srnetochan avatar francbartoli avatar igor-chernikov avatar oscarfonts avatar

Watchers

James Cloos avatar  avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.