Skip to content

Small Java library that provides an interface for generating HALE projects

License

Notifications You must be signed in to change notification settings

sfrese/hale-project-generator

 
 

Repository files navigation

hale-project-generator

Build Status

Small Java library that provides an interface for generating HALE projects

How to add to your application

The library is available in the wetransform artifactory. You will need to configure specific Maven repositories for your build. Following is an example configuration for Gradle:

repositories {
  maven { // Geotools
    url 'http://download.osgeo.org/webdav/geotools/'
  }
  jcenter() // (or Maven Central)
  maven { // wetransform release repository (HALE releases and Eclipse dependencies)
    url 'https://artifactory.wetransform.to/artifactory/libs-release-local'
  }
  maven { // wetransform snapshot repository (HALE snapshots)
    url 'https://artifactory.wetransform.to/artifactory/libs-snapshot-local'
  }
  maven { // HALE artifactory (dependencies for HALE)
    url 'http://artifactory.esdi-humboldt.eu/artifactory/libs-release/'
  }
}

The latest version can be added as a dependency like this:

Gradle

dependencies {
  compile 'to.wetransform:hale-project-generator:1.0.0'
}

Maven

<dependency>
    <groupId>to.wetransform</groupId>
    <artifactId>hale-project-generator</artifactId>
    <version>1.0.0</version>
</dependency>

About

Small Java library that provides an interface for generating HALE projects

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • Groovy 62.7%
  • Java 37.3%