camel-oauth2
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>nl.axians.camel</groupId> <artifactId>camel-oauth2</artifactId> <version>1.0.36</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.36</version> <relativePath>../pom.xml</relativePath> </parent> <artifactId>camel-oauth2</artifactId> <version>1.0.36</version> <name>Axians :: Camel :: Components :: OAuth2</name> <description>Apache Camel OAuth2 component. 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>camel-components-1.0.36</tag> </scm> <properties> <mockserver.version>5.15.0</mockserver.version> </properties> <dependencies> <!-- Camel --> <dependency> <groupId>org.apache.camel</groupId> <artifactId>camel-support</artifactId> </dependency> <dependency> <groupId>com.fasterxml.jackson.core</groupId> <artifactId>jackson-annotations</artifactId> </dependency> <dependency> <groupId>com.fasterxml.jackson.core</groupId> <artifactId>jackson-databind</artifactId> </dependency> <dependency> <groupId>org.projectlombok</groupId> <artifactId>lombok</artifactId> </dependency> <!-- Test --> <dependency> <groupId>org.apache.camel</groupId> <artifactId>camel-test-spring-junit5</artifactId> <scope>test</scope> </dependency> <dependency> <groupId>org.mock-server</groupId> <artifactId>mockserver-netty</artifactId> <version>${mockserver.version}</version> <scope>test</scope> </dependency> <dependency> <groupId>org.mock-server</groupId> <artifactId>mockserver-client-java</artifactId> <version>${mockserver.version}</version> <scope>test</scope> </dependency> <dependency> <groupId>org.assertj</groupId> <artifactId>assertj-core</artifactId> <scope>test</scope> </dependency> <dependency> <groupId>org.slf4j</groupId> <artifactId>slf4j-simple</artifactId> <scope>test</scope> </dependency> </dependencies> <build> <plugins> <plugin> <groupId>org.apache.camel</groupId> <artifactId>camel-component-maven-plugin</artifactId> <version>${camel.version}</version> <configuration> <sourcesOutputDir>${project.build.directory}/generated-sources/camel</sourcesOutputDir> <resourcesOutputDir>${project.build.directory}/generated-sources/camel</resourcesOutputDir> </configuration> <executions> <execution> <id>generate</id> <goals> <goal>generate</goal> </goals> <phase>process-classes</phase> </execution> </executions> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-compiler-plugin</artifactId> <version>${maven-compiler-plugin.version}</version> <executions> <execution> <id>recompile</id> <goals> <goal>compile</goal> </goals> <phase>process-classes</phase> </execution> </executions> </plugin> <plugin> <groupId>org.codehaus.mojo</groupId> <artifactId>build-helper-maven-plugin</artifactId> <version>${builder-helper-maven-plugin.version}</version> <executions> <execution> <phase>generate-sources</phase> <goals> <goal>add-source</goal> <goal>add-resource</goal> </goals> <configuration> <sources> <source>${project.build.directory}/generated-sources/camel</source> </sources> <resources> <resource> <directory>${project.build.directory}/generated-sources/camel</directory> </resource> </resources> </configuration> </execution> </executions> </plugin> </plugins> </build> </project>