-
Notifications
You must be signed in to change notification settings - Fork 3
Installation
Jan Wiemer edited this page Dec 22, 2020
·
13 revisions
The easiest way to use JACIS is to use e.g. gradle or another build tool that can manage maven repositories. For JACIS the maven repository included in the GitHub packages is used. The URL of a this maven repository containing all JACIS releases is: https://maven.pkg.github.com/janwiemer/jacis
A sample gradle build file may look like:
plugins {
id 'java'
id 'maven-publish'
}
group = 'org.jacisexampleproject'
version = '2.0.0'
ext {
projectName = "JacisExampleProject"
projectDescription = "Example Project using JACIS."
projectURL = "https://github.com/JanWiemer/jacisexampleproject"
author = "Jan Wiemer"
authorId = "JanWiemer"
authorPwd = System.properties.get("githubPAT") // read access token for GitHub package access.
jacisMavenUrl = "https://maven.pkg.github.com/janwiemer/jacis"
}
dependencies {
implementation group: 'org.jacis', name: 'jacis', version: '2.0.0-SNAPSHOT'
}
repositories {
mavenLocal()
mavenCentral()
maven {
credentials {
username authorId
password authorPwd
}
url jacisMavenUrl
}
}A little example project using JACIS can be found here: https://github.com/JanWiemer/jacisexampleprj
Next Chapter: Getting Started