Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/halestudio/hale-project-generator
Small Java library that provides an interface for generating HALE projects
https://github.com/halestudio/hale-project-generator
Last synced: 2 months ago
JSON representation
Small Java library that provides an interface for generating HALE projects
- Host: GitHub
- URL: https://github.com/halestudio/hale-project-generator
- Owner: halestudio
- License: apache-2.0
- Created: 2016-03-24T16:15:22.000Z (almost 9 years ago)
- Default Branch: master
- Last Pushed: 2024-10-25T09:22:35.000Z (3 months ago)
- Last Synced: 2024-10-25T15:44:57.037Z (3 months ago)
- Language: Groovy
- Homepage:
- Size: 263 KB
- Stars: 0
- Watchers: 4
- Forks: 2
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
- License: LICENSE
Awesome Lists containing this project
README
# hale-project-generator
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:```groovy
repositories {
maven { // Geotools
url 'https://repo.osgeo.org/repository/release/'
}
mavenCentral()
maven { // wetransform repository (HALE and Eclipse dependencies)
url 'https://artifactory.wetransform.to/artifactory/local'
}
}
```It can be added as a dependency like this (replace `<#version>` by the desired version):
**Gradle**
```groovy
dependencies {
compile 'to.wetransform:hale-project-generator:<#version>'
}
```**Maven**
```xml
to.wetransform
hale-project-generator
<#version>```