gradle-camel-plugin


License

License

Categories

Categories

Gradle Build Tools
GroupId

GroupId

com.github.lburgazzoli
ArtifactId

ArtifactId

gradle-camel-plugin
Last Version

Last Version

0.0.8
Release Date

Release Date

Type

Type

jar
Description

Description

gradle-camel-plugin
gradle-camel-plugin
Project URL

Project URL

https://github.com/lburgazzoli/gradle-camel-plugin
Source Code Management

Source Code Management

https://github.com/lburgazzoli/gradle-camel-plugin

Download gradle-camel-plugin

How to add to project

<!-- https://jarcasting.com/artifacts/com.github.lburgazzoli/gradle-camel-plugin/ -->
<dependency>
    <groupId>com.github.lburgazzoli</groupId>
    <artifactId>gradle-camel-plugin</artifactId>
    <version>0.0.8</version>
</dependency>
// https://jarcasting.com/artifacts/com.github.lburgazzoli/gradle-camel-plugin/
implementation 'com.github.lburgazzoli:gradle-camel-plugin:0.0.8'
// https://jarcasting.com/artifacts/com.github.lburgazzoli/gradle-camel-plugin/
implementation ("com.github.lburgazzoli:gradle-camel-plugin:0.0.8")
'com.github.lburgazzoli:gradle-camel-plugin:jar:0.0.8'
<dependency org="com.github.lburgazzoli" name="gradle-camel-plugin" rev="0.0.8">
  <artifact name="gradle-camel-plugin" type="jar" />
</dependency>
@Grapes(
@Grab(group='com.github.lburgazzoli', module='gradle-camel-plugin', version='0.0.8')
)
libraryDependencies += "com.github.lburgazzoli" % "gradle-camel-plugin" % "0.0.8"
[com.github.lburgazzoli/gradle-camel-plugin "0.0.8"]

Dependencies

test (1)

Group / Artifact Type Version
org.spockframework : spock-core jar 1.0-groovy-2.4

Project Modules

There are no modules declared in this project.

gradle-camel-plugin

plugins {
  id "com.github.lburgazzoli.camel" version "0.0.7"
}

group 'com.github.lburgazzoli'
version '1.0-SNAPSHOT'

ext {
    versions = [
        camel       : '2.16.1',
        slf4j       : '1.7.13',
        log4j2      : '2.4.1',
        weld        : '2.3.1.Final',
        deltaspike  : '1.5.1'
    ]
}

sourceCompatibility = 1.8
targetCompatibility = 1.8

repositories {
    mavenLocal()
    mavenCentral()
    jcenter()

    maven { url = 'https://oss.sonatype.org/content/repositories/snapshots/' }
    maven { url = 'https://repository.apache.org/content/repositories/snapshots/' }

}

dependencies {
    compile "org.slf4j:slf4j-api:$versions.slf4j"

    compile "org.apache.camel:camel-spring:$versions.camel"
    compile "org.apache.camel:camel-spring-javaconfig:$versions.camel"
    compile "org.apache.camel:camel-test-blueprint:$versions.camel"
    compile "org.apache.camel:camel-cdi:$versions.camel"

    compile "org.jboss.weld.se:weld-se:$versions.weld"
    compile "org.jboss.weld:weld-core:$versions.weld"
    compile "org.apache.deltaspike.cdictrl:deltaspike-cdictrl-weld:$versions.deltaspike"

    runtime "org.apache.logging.log4j:log4j-core:$versions.log4j2"
    runtime "org.apache.logging.log4j:log4j-slf4j-impl:$versions.log4j2"
    runtime "org.apache.logging.log4j:log4j-jul:$versions.log4j2"
}

camelRun {
    trace = true
    //duration = '60s'

    //springJavaConfig {
    //    configClass 'com.github.lburgazzoli.gradle.plugin.examples.camel.MySpringRouteConfiguration'
    //}

    //spring {
    //}

    //blueprint {
    //}

    cdi {
        // Workaround, needs to be fixed
        additionalPath jar.archivePath 
    }

    jvmArgs = [
        "-Djava.util.logging.manager=org.apache.logging.log4j.jul.LogManager"
    ]
}

Versions

Version
0.0.8
0.0.7
0.0.6
0.0.4