| 组织ID: |
org.apache.camel |
| 项目ID: |
camel-google-drive |
| 版本: |
2.16.2 |
| 最后修改时间: |
2019-10-25 07:38:43 |
| 包类型: |
jar |
| 标题: |
Camel :: GoogleDrive |
| 描述: |
Camel Component for GoogleDrive |
| 大小: |
72.25KB |
|
|
| Maven引入代码: |
<dependency>
<groupId>org.apache.camel</groupId>
<artifactId>camel-google-drive</artifactId>
<version>2.16.2</version>
</dependency>
|
| Gradle引入代码: |
org.apache.camel:camel-google-drive:2.16.2
|
| 下载Jar包: |
|
| POM文件内容: |
<?xml version="1.0" encoding="UTF-8"?>
<!--
Licensed to the Apache Software Foundation (ASF) under one or more
contributor license agreements. See the NOTICE file distributed with
this work for additional information regarding copyright ownership.
The ASF licenses this file to You under the Apache License, Version 2.0
(the "License"); you may not use this file except in compliance with
the License. You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
-->
<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/maven-v4_0_0.xsd">
<modelVersion>4.0.0</modelVersion>
<parent>
<groupId>org.apache.camel</groupId>
<artifactId>components</artifactId>
<version>2.16.2</version>
</parent>
<artifactId>camel-google-drive</artifactId>
<packaging>bundle</packaging>
<name>Camel :: GoogleDrive</name>
<description>Camel Component for GoogleDrive</description>
<properties>
<schemeName>google-drive</schemeName>
<componentName>GoogleDrive</componentName>
<componentPackage>org.apache.camel.component.google.drive</componentPackage>
<outPackage>org.apache.camel.component.google.drive.internal</outPackage>
<camel.osgi.private.pkg>org.apache.camel.component.google.drive.internal</camel.osgi.private.pkg>
<camel.osgi.export.pkg>org.apache.camel.component.google.drive</camel.osgi.export.pkg>
<camel.osgi.export.service>
org.apache.camel.spi.ComponentResolver;component=google-drive
</camel.osgi.export.service>
</properties>
<dependencies>
<dependency>
<groupId>org.apache.camel</groupId>
<artifactId>camel-core</artifactId>
</dependency>
<dependency>
<groupId>com.google.api-client</groupId>
<artifactId>google-api-client</artifactId>
<version>${google-api-client-version}</version>
</dependency>
<dependency>
<groupId>com.google.oauth-client</groupId>
<artifactId>google-oauth-client-jetty</artifactId>
<version>${google-api-client-version}</version>
</dependency>
<dependency>
<groupId>com.google.http-client</groupId>
<artifactId>google-http-client-jackson2</artifactId>
<version>${google-api-client-version}</version>
</dependency>
<dependency>
<groupId>com.google.apis</groupId>
<artifactId>google-api-services-drive</artifactId>
<version>${google-api-services-drive-version}</version>
</dependency>
<!-- Camel annotations in provided scope to avoid compile errors in IDEs -->
<dependency>
<groupId>org.apache.camel</groupId>
<artifactId>spi-annotations</artifactId>
<version>${project.version}</version>
<scope>provided</scope>
</dependency>
<!-- Component API javadoc in provided scope to read API signatures -->
<dependency>
<groupId>com.google.apis</groupId>
<artifactId>google-api-services-drive</artifactId>
<version>${google-api-services-drive-version}</version>
<classifier>javadoc</classifier>
<scope>provided</scope>
</dependency>
<!-- logging -->
<dependency>
<groupId>org.slf4j</groupId>
<artifactId>slf4j-api</artifactId>
</dependency>
<dependency>
<groupId>org.slf4j</groupId>
<artifactId>slf4j-log4j12</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>log4j</groupId>
<artifactId>log4j</artifactId>
<scope>test</scope>
</dependency>
<!-- testing -->
<dependency>
<groupId>org.apache.camel</groupId>
<artifactId>camel-test</artifactId>
<scope>test</scope>
</dependency>
</dependencies>
<build>
<defaultGoal>install</defaultGoal>
<plugins>
<!-- generate Component source and test source -->
<plugin>
<groupId>org.apache.camel</groupId>
<artifactId>camel-api-component-maven-plugin</artifactId>
<executions>
<execution>
<id>generate-test-component-classes</id>
<goals>
<goal>fromApis</goal>
</goals>
<configuration>
<apis>
<api>
<apiName>drive-about</apiName>
<proxyClass>com.google.api.services.drive.Drive$About</proxyClass>
<fromJavadoc />
</api>
<api>
<apiName>drive-apps</apiName>
<proxyClass>com.google.api.services.drive.Drive$Apps</proxyClass>
<fromJavadoc />
</api>
<api>
<apiName>drive-changes</apiName>
<proxyClass>com.google.api.services.drive.Drive$Changes</proxyClass>
<fromJavadoc />
</api>
<api>
<apiName>drive-channels</apiName>
<proxyClass>com.google.api.services.drive.Drive$Channels</proxyClass>
<fromJavadoc />
</api>
<api>
<apiName>drive-children</apiName>
<proxyClass>com.google.api.services.drive.Drive$Children</proxyClass>
<fromJavadoc />
</api>
<api>
<apiName>drive-comments</apiName>
<proxyClass>com.google.api.services.drive.Drive$Comments</proxyClass>
<fromJavadoc />
</api>
<api>
<apiName>drive-files</apiName>
<proxyClass>com.google.api.services.drive.Drive$Files</proxyClass>
<fromJavadoc />
</api>
<api>
<apiName>drive-parents</apiName>
<proxyClass>com.google.api.services.drive.Drive$Parents</proxyClass>
<fromJavadoc />
</api>
<api>
<apiName>drive-permissions</apiName>
<proxyClass>com.google.api.services.drive.Drive$Permissions</proxyClass>
<fromJavadoc />
</api>
<api>
<apiName>drive-properties</apiName>
<proxyClass>com.google.api.services.drive.Drive$Properties</proxyClass>
<fromJavadoc />
</api>
<api>
<apiName>drive-realtime</apiName>
<proxyClass>com.google.api.services.drive.Drive$Realtime</proxyClass>
<fromJavadoc />
</api>
<api>
<apiName>drive-replies</apiName>
<proxyClass>com.google.api.services.drive.Drive$Replies</proxyClass>
<fromJavadoc />
</api>
<api>
<apiName>drive-revisions</apiName>
<proxyClass>com.google.api.services.drive.Drive$Revisions</proxyClass>
<fromJavadoc />
</api>
</apis>
<substitutions>
<substitution>
<method>^.+$</method>
<argName>content</argName>
<argType>com.google.api.services.drive.model.Channel</argType>
<replacement>contentChannel</replacement>
</substitution>
</substitutions>
</configuration>
</execution>
</executions>
</plugin>
<!-- add generated source and test source to build -->
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>build-helper-maven-plugin</artifactId>
<version>1.8</version>
<executions>
<execution>
<id>add-generated-sources</id>
<goals>
<goal>add-source</goal>
</goals>
<configuration>
<sources>
<source>${project.build.directory}/generated-sources/camel-component</source>
</sources>
</configuration>
</execution>
<execution>
<id>add-generated-test-sources</id>
<goals>
<goal>add-test-source</goal>
</goals>
<configuration>
<sources>
<source>${project.build.directory}/generated-test-sources/camel-component</source>
</sources>
</configuration>
</execution>
</executions>
</plugin>
</plugins>
<pluginManagement>
<plugins>
<plugin>
<groupId>org.apache.camel</groupId>
<artifactId>camel-api-component-maven-plugin</artifactId>
<version>${project.version}</version>
<configuration>
<scheme>${schemeName}</scheme>
<componentName>${componentName}</componentName>
<componentPackage>${componentPackage}</componentPackage>
<outPackage>${outPackage}</outPackage>
</configuration>
</plugin>
</plugins>
</pluginManagement>
</build>
<reporting>
<plugins>
<plugin>
<groupId>org.apache.camel</groupId>
<artifactId>camel-api-component-maven-plugin</artifactId>
<version>${project.version}</version>
<configuration>
<scheme>${schemeName}</scheme>
<componentName>${componentName}</componentName>
<componentPackage>${componentPackage}</componentPackage>
<outPackage>${outPackage}</outPackage>
</configuration>
</plugin>
</plugins>
</reporting>
<profiles>
<profile>
<id>google-drive-test</id>
<build>
<plugins>
<plugin>
<artifactId>maven-surefire-plugin</artifactId>
<configuration>
<childDelegation>false</childDelegation>
<useFile>true</useFile>
<forkCount>1</forkCount>
<reuseForks>true</reuseForks>
<forkedProcessTimeoutInSeconds>300</forkedProcessTimeoutInSeconds>
<excludes>
<exclude>**/*XXXTest.java</exclude>
</excludes>
<includes>
<include>**/*Test.java</include>
</includes>
</configuration>
</plugin>
</plugins>
</build>
</profile>
</profiles>
</project>
|
| Jar包内容: |
META-INF/MANIFEST.MF
META-INF/DEPENDENCIES
META-INF/LICENSE
META-INF/LICENSE.txt
META-INF/NOTICE
META-INF/NOTICE.txt
META-INF/maven/org.apache.camel/camel-google-drive/pom.properties
META-INF/maven/org.apache.camel/camel-google-drive/pom.xml
META-INF/services/org/apache/camel/TypeConverter
META-INF/services/org/apache/camel/component.properties
META-INF/services/org/apache/camel/component/google-drive
org.apache.camel.component.google.drive.BatchGoogleDriveClientFactory.class
org.apache.camel.component.google.drive.DriveAboutEndpointConfiguration.class
org.apache.camel.component.google.drive.DriveAppsEndpointConfiguration.class
org.apache.camel.component.google.drive.DriveChangesEndpointConfiguration.class
org.apache.camel.component.google.drive.DriveChannelsEndpointConfiguration.class
org.apache.camel.component.google.drive.DriveChildrenEndpointConfiguration.class
org.apache.camel.component.google.drive.DriveCommentsEndpointConfiguration.class
org.apache.camel.component.google.drive.DriveFilesEndpointConfiguration.class
org.apache.camel.component.google.drive.DriveParentsEndpointConfiguration.class
org.apache.camel.component.google.drive.DrivePermissionsEndpointConfiguration.class
org.apache.camel.component.google.drive.DrivePropertiesEndpointConfiguration.class
org.apache.camel.component.google.drive.DriveRealtimeEndpointConfiguration.class
org.apache.camel.component.google.drive.DriveRepliesEndpointConfiguration.class
org.apache.camel.component.google.drive.DriveRevisionsEndpointConfiguration.class
org.apache.camel.component.google.drive.GoogleDriveClientFactory.class
org.apache.camel.component.google.drive.GoogleDriveComponent.class
org.apache.camel.component.google.drive.GoogleDriveConfiguration.class
org.apache.camel.component.google.drive.GoogleDriveConsumer.class
org.apache.camel.component.google.drive.GoogleDriveEndpoint$1.class
org.apache.camel.component.google.drive.GoogleDriveEndpoint.class
org.apache.camel.component.google.drive.GoogleDriveFilesConverter.class
org.apache.camel.component.google.drive.GoogleDriveProducer.class
org.apache.camel.component.google.drive.InteractiveGoogleDriveClientFactory.class
org/apache/camel/component/google/drive/google-drive.html
org/apache/camel/component/google/drive/google-drive.json
org.apache.camel.component.google.drive.internal.DriveAboutApiMethod.class
org.apache.camel.component.google.drive.internal.DriveAppsApiMethod.class
org.apache.camel.component.google.drive.internal.DriveChangesApiMethod.class
org.apache.camel.component.google.drive.internal.DriveChannelsApiMethod.class
org.apache.camel.component.google.drive.internal.DriveChildrenApiMethod.class
org.apache.camel.component.google.drive.internal.DriveCommentsApiMethod.class
org.apache.camel.component.google.drive.internal.DriveFilesApiMethod.class
org.apache.camel.component.google.drive.internal.DriveParentsApiMethod.class
org.apache.camel.component.google.drive.internal.DrivePermissionsApiMethod.class
#内容未全部加载,请点击展开加载全部代码(NowJava.com)
|
| 依赖Jar: |
google-api-client-${google-api-client-version}.jar
/com.google.api-client/google-api-client/${google-api-client-version}
查看google-api-client所有版本文件
google-oauth-client-jetty-${google-api-client-version}.jar
/com.google.oauth-client/google-oauth-client-jetty/${google-api-client-version}
查看google-oauth-client-jetty所有版本文件
google-http-client-jackson2-${google-api-client-version}.jar
/com.google.http-client/google-http-client-jackson2/${google-api-client-version}
查看google-http-client-jackson2所有版本文件
google-api-services-drive-${google-api-services-drive-version}.jar
/com.google.apis/google-api-services-drive/${google-api-services-drive-version}
查看google-api-services-drive所有版本文件
spi-annotations-${project.version}.jar
/org.apache.camel/spi-annotations/${project.version}
查看spi-annotations所有版本文件
google-api-services-drive-${google-api-services-drive-version}.jar
/com.google.apis/google-api-services-drive/${google-api-services-drive-version}
查看google-api-services-drive所有版本文件
|