组织ID: |
cd.go.plugin |
项目ID: |
go-plugin-api-experimental |
版本: |
17.2.0-4564 |
最后修改时间: |
2019-11-01 08:54:34 |
包类型: |
jar |
标题: |
API for plugins of GoCD |
描述: |
The APIs described here are needed for developing plugins for GoCD - A continuous delivery server |
相关URL: |
http://gocd.io |
大小: |
41.49KB |
|
Maven引入代码: |
<dependency>
<groupId>cd.go.plugin</groupId>
<artifactId>go-plugin-api-experimental</artifactId>
<version>17.2.0-4564</version>
</dependency>
|
Gradle引入代码: |
cd.go.plugin:go-plugin-api-experimental:17.2.0-4564
|
下载Jar包: |
|
POM文件内容: |
<?xml version="1.0" encoding="UTF-8"?>
<!-- File autogenerated by chef. All changes will be lost -->
<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>
<groupId>cd.go.plugin</groupId>
<artifactId>go-plugin-api-experimental</artifactId>
<version>17.2.0-4564</version>
<packaging>pom</packaging>
<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<autoReleaseToCentral>false</autoReleaseToCentral>
</properties>
<name>API for plugins of GoCD</name>
<description>The APIs described here are needed for developing plugins for GoCD - A continuous delivery server</description>
<url>http://gocd.io</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>GoCD Team</name>
<email>go-cd@googlegroups.com</email>
<organization>ThoughtWorks, Inc.</organization>
<organizationUrl>http://go.cd</organizationUrl>
</developer>
<developer>
<name>ThoughtWorks</name>
<email>support@thoughtworks.com</email>
<organization>ThoughtWorks, Inc.</organization>
<organizationUrl>http://www.thoughtworks.com</organizationUrl>
</developer>
</developers>
<scm>
<connection>scm:git:https://github.com/gocd/gocd</connection>
<developerConnection>scm:git:https://github.com/gocd/gocd</developerConnection>
<url>https://github.com/gocd/gocd.git</url>
</scm>
<build>
<plugins>
<!-- Tell Maven which files to consider as artifacts, for signing and deployment. -->
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>build-helper-maven-plugin</artifactId>
<version>1.9.1</version>
<executions>
<execution>
<id>attach-artifacts</id>
<phase>package</phase>
<goals>
<goal>attach-artifact</goal>
</goals>
<configuration>
<artifacts>
<artifact>
<file>go-plugin-api-experimental-17.2.0-4564.jar</file>
<type>jar</type>
</artifact>
<artifact>
<file>go-plugin-api-experimental-17.2.0-4564-javadoc.jar</file>
<type>jar</type>
<classifier>javadoc</classifier>
</artifact>
<artifact>
<file>go-plugin-api-experimental-17.2.0-4564-sources.jar</file>
<type>jar</type>
<classifier>sources</classifier>
</artifact>
</artifacts>
</configuration>
</execution>
</executions>
</plugin>
<!-- Use GPG and sign all the artifacts. -->
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-gpg-plugin</artifactId>
<version>1.5</version>
<configuration>
<keyname>D8843F288816C449</keyname>
<gpgArguments>
<arg>--batch</arg>
</gpgArguments>
</configuration>
<executions>
<execution>
<id>sign-artifacts</id>
<phase>verify</phase>
<goals>
<goal>sign</goal>
</goals>
</execution>
</executions>
</plugin>
<!-- Upload it to Nexus. -->
<plugin>
<groupId>org.sonatype.plugins</groupId>
<artifactId>nexus-staging-maven-plugin</artifactId>
<version>1.6.3</version>
<extensions>true</extensions>
<configuration>
<serverId>nexus-oss</serverId>
<nexusUrl>https://oss.sonatype.org/</nexusUrl>
<autoReleaseAfterClose>${autoReleaseToCentral}</autoReleaseAfterClose>
</configuration>
</plugin>
</plugins>
</build>
</project>
|
Jar包内容: |
META-INF/MANIFEST.MF
com.thoughtworks.go.plugin.api.AbstractGoPlugin.class
com.thoughtworks.go.plugin.api.GoPlugin.class
com.thoughtworks.go.plugin.api.GoPluginApiMarker.class
com.thoughtworks.go.plugin.api.GoApplicationAccessor.class
com.thoughtworks.go.plugin.api.request.GoPluginApiRequest.class
com.thoughtworks.go.plugin.api.request.GoApiRequest.class
com.thoughtworks.go.plugin.api.request.DefaultGoApiRequest.class
com.thoughtworks.go.plugin.api.request.DefaultGoPluginApiRequest.class
com.thoughtworks.go.plugin.api.response.GoPluginApiResponse.class
com.thoughtworks.go.plugin.api.response.GoApiResponse.class
com.thoughtworks.go.plugin.api.response.DefaultGoApiResponse.class
com.thoughtworks.go.plugin.api.response.DefaultGoPluginApiResponse.class
com.thoughtworks.go.plugin.api.response.Result$Status.class
com.thoughtworks.go.plugin.api.response.Result.class
com.thoughtworks.go.plugin.api.response.execution.ExecutionResult.class
com.thoughtworks.go.plugin.api.response.validation.ValidationError.class
com.thoughtworks.go.plugin.api.response.validation.ValidationResult.class
com.thoughtworks.go.plugin.api.exceptions.UnhandledRequestTypeException.class
com.thoughtworks.go.plugin.api.GoPluginIdentifier.class
com.thoughtworks.go.plugin.api.annotation.Extension.class
com.thoughtworks.go.plugin.api.annotation.Load.class
com.thoughtworks.go.plugin.api.annotation.UnLoad.class
com.thoughtworks.go.plugin.api.annotation.UsedOnGoAgent.class
com.thoughtworks.go.plugin.api.annotation.UsedOnGoServer.class
com.thoughtworks.go.plugin.api.config.Configuration.class
com.thoughtworks.go.plugin.api.config.PluginPreference.class
com.thoughtworks.go.plugin.api.config.Property.class
com.thoughtworks.go.plugin.api.config.Option.class
com.thoughtworks.go.plugin.api.config.Options.class
com.thoughtworks.go.plugin.api.info.PluginContext.class
com.thoughtworks.go.plugin.api.info.PluginDescriptor$About.class
com.thoughtworks.go.plugin.api.info.PluginDescriptor$Vendor.class
com.thoughtworks.go.plugin.api.info.PluginDescriptor.class
com.thoughtworks.go.plugin.api.info.PluginDescriptorAware.class
com.thoughtworks.go.plugin.api.logging.Logger.class
com.thoughtworks.go.plugin.api.material.packagerepository.PackageConfiguration.class
com.thoughtworks.go.plugin.api.material.packagerepository.PackageMaterialProperty.class
com.thoughtworks.go.plugin.api.material.packagerepository.PackageRevision.class
com.thoughtworks.go.plugin.api.material.packagerepository.exceptions.InvalidPackageRevisionDataException.class
com.thoughtworks.go.plugin.api.material.packagerepository.RepositoryConfiguration.class
#内容未全部加载,请点击展开加载全部代码(NowJava.com)
|
依赖Jar: |
无
|