Skip to content
This repository was archived by the owner on Jan 19, 2026. It is now read-only.

Latest commit

 

History

History
25 lines (22 loc) · 828 Bytes

File metadata and controls

25 lines (22 loc) · 828 Bytes

Legacy to OML

Download

A tool to translate ontologies from Legacy OML to openCAESAR OML

Run as Gradle Task

In a build.gradle script, use:

buildscript {
	repositories {
		maven { url 'https://dl.bintray.com/jpl-imce/opencaesar-adapter' }
		mavenCentral()
		jcenter()
	}
	dependencies {
		classpath 'io.opencaesar.legacy:legacy2oml-gradle:+'
	}
}
task legacy2oml(type:Legacy2OmlTask) {
	inputCatalogPath = file('path/to/input/legacy/oml/catalog.xml') [Required]
	outputCatalogPath = file('path/to/output/opencaesar/oml/catalog.xml') [Required]
	outputDescriptionBundleIri = 'iri-of-opencaesar-description-bundle' [Optional]
}