camel-oauth2-starter
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>nl.axians.camel</groupId> <artifactId>camel-oauth2-starter</artifactId> <version>1.0.26</version> </dependency>
<?xml version="1.0" encoding="UTF-8"?> <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> <modelVersion>4.0.0</modelVersion> <parent> <groupId>nl.axians.camel</groupId> <artifactId>camel-components</artifactId> <version>1.0.26</version> <relativePath>../pom.xml</relativePath> </parent> <artifactId>camel-oauth2-starter</artifactId> <version>1.0.26</version> <name>Axians :: Camel :: Components :: OAuth2 Starter</name> <description>Spring Boot Apache Camel OAuth2 component starter. See README.md for details/</description> <url>https://github.com/axians-oss/camel-components</url> <licenses> <license> <name>The Apache License, Version 2.0</name> <url>http://www.apache.org/licenses/LICENSE-2.0.txt</url> </license> </licenses> <developers> <developer> <name>Jacob Hoeflaken</name> <email>jacob.hoeflaken@axians.com</email> <organization>Axians</organization> <organizationUrl>http://www.axians.nl</organizationUrl> </developer> </developers> <scm> <connection>scm:https://github.com/axians-oss/camel-components.git</connection> <developerConnection>scm:git:https://github.com/axians-oss/camel-components.git</developerConnection> <url>https://github.com/axians-oss/camel-components</url> <tag>1.0.26</tag> </scm> <properties> </properties> <dependencies> <dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot</artifactId> <scope>provided</scope> </dependency> <dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-autoconfigure-processor</artifactId> <optional>true</optional> </dependency> <dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-configuration-processor</artifactId> <optional>true</optional> </dependency> <dependency> <groupId>org.projectlombok</groupId> <artifactId>lombok</artifactId> <scope>provided</scope> </dependency> <dependency> <groupId>org.apache.camel.springboot</groupId> <artifactId>camel-spring-boot-starter</artifactId> </dependency> <dependency> <groupId>org.apache.camel.springboot</groupId> <artifactId>camel-core-starter</artifactId> </dependency> <dependency> <groupId>nl.axians.camel</groupId> <artifactId>camel-oauth2</artifactId> <version>${project.version}</version> </dependency> </dependencies> <build> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-compiler-plugin</artifactId> <version>${maven-compiler-plugin.version}</version> <configuration> <annotationProcessorPaths> <path> <groupId>org.projectlombok</groupId> <artifactId>lombok</artifactId> <version>${lombok.version}</version> </path> <!-- Should be defined AFTER lombok --> <path> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-configuration-processor</artifactId> <version>${spring-boot.version}</version> </path> <!-- Should be defined AFTER lombok --> <path> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-autoconfigure-processor</artifactId> <version>${spring-boot.version}</version> </path> </annotationProcessorPaths> </configuration> </plugin> </plugins> </build> </project>