Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

https://github.com/base2Services/kagura

That's great, but where can I download it?

https://kagurabi.ci.cloudbees.com/job/kagura-release/

Where to get a base template Karaf Kagura project

https://github.com/kagurabi/kagura-custom-assembly

Versions

Current version: 1.9

Code Block
titleMaven properties config
<properties>
	<kagura.version>1.9</kagura.version>
</properties>

 

Maven Details

Do not add them all, add them depending on the component you want. For instance if you want to use the library component, for instance, add the "reporting-core"

Code Block
titleMaven Libraries
        <dependency>
	        <groupId>com.kagurabi.shared</groupId>
		    <artifactId>reporting-core</artifactId>
		    <packaging>bundle</packaging>
        </dependency>
        <dependency>
	        <groupId>com.kagurabi.shared</groupId>
		    <artifactId>kagura-resources</artifactId>
		    <packaging>bundle</packaging>
        </dependency>
        <dependency>
		    <groupId>com.kagurabi.shared</groupId>
		    <artifactId>rest-api</artifactId>
		    <packaging>bundle</packaging>
        </dependency>
Code Block
titleExample Karaf assembly
        <dependency>
            <groupId>com.kagurabi.services</groupId>
            <artifactId>kagura-assembly</artifactId>
            <version>${kagura.version}</version>
            <type>tar.gz</type>
        </dependency>
Code Block
titleExample projects
        <dependency>
		    <groupId>com.kagurabi</groupId>
		    <artifactId>war-rest</artifactId>
		    <packaging>war</packaging>
        </dependency>
        <dependency>
            <groupId>com.kagurabi.example</groupId>
            <artifactId>kagura-example-javascript</artifactId>
            <version>${kagura.version}</version>
            <type>war</type>
        </dependency>