| 组织ID: |
com.github.stephenc.diffpatch |
| 项目ID: |
diffpatch-maven-plugin |
| 版本: |
0.3 |
| 最后修改时间: |
2019-11-01 01:13:32 |
| 包类型: |
maven-plugin |
| 标题: |
Diff-Patch Maven Plugin |
| 描述: |
A plugin for patching files. |
| 相关URL: |
http://stephenc.github.com/diffpatch-maven-plugin |
| 大小: |
15.75KB |
|
|
| Maven引入代码: |
<dependency>
<groupId>com.github.stephenc.diffpatch</groupId>
<artifactId>diffpatch-maven-plugin</artifactId>
<version>0.3</version>
</dependency>
|
| Gradle引入代码: |
com.github.stephenc.diffpatch:diffpatch-maven-plugin:0.3
|
| 下载Jar包: |
|
| POM文件内容: |
<?xml version="1.0" encoding="utf-8"?>
<!--
Copyright 2015 Stephen Connolly.
Licensed 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.sonatype.oss</groupId>
<artifactId>oss-parent</artifactId>
<version>7</version>
</parent>
<groupId>com.github.stephenc.diffpatch</groupId>
<artifactId>diffpatch-maven-plugin</artifactId>
<version>0.3</version>
<packaging>maven-plugin</packaging>
<name>Diff-Patch Maven Plugin</name>
<description>A plugin for patching files.</description>
<url>http://stephenc.github.com/diffpatch-maven-plugin</url>
<inceptionYear>2015</inceptionYear>
<licenses>
<license>
<name>The Apache Software License, Version 2.0</name>
<url>http://www.apache.org/licenses/LICENSE-2.0.txt</url>
<distribution>repo</distribution>
</license>
</licenses>
<prerequisites>
<maven>3.0.3</maven>
</prerequisites>
<developers>
<developer>
<id>stephenc</id>
<name>Stephen Connolly</name>
<roles>
<role>Developer</role>
</roles>
</developer>
</developers>
<scm>
<connection>scm:git:git://github.com/stephenc/diffpatch-maven-plugin.git</connection>
<developerConnection>scm:git:git@github.com:stephenc/diffpatch-maven-plugin.git</developerConnection>
<url>http://github.com/stephenc/diffpatch-maven-plugin/tree/master/</url>
<tag>diffpatch-maven-plugin-0.3</tag>
</scm>
<issueManagement>
<system>github</system>
<url>http://github.com/stephenc/diffpatch-maven-plugin/issues</url>
</issueManagement>
<properties>
<project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
<project.build.outputEncoding>UTF-8</project.build.outputEncoding>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<mavenVersion>3.0</mavenVersion>
</properties>
<dependencies>
<dependency>
<groupId>org.apache.maven</groupId>
<artifactId>maven-core</artifactId>
<version>${mavenVersion}</version>
</dependency>
<dependency>
<groupId>org.apache.maven</groupId>
<artifactId>maven-plugin-api</artifactId>
<version>${mavenVersion}</version>
</dependency>
<dependency>
<groupId>org.codehaus.plexus</groupId>
<artifactId>plexus-utils</artifactId>
<version>2.0.5</version>
</dependency>
<dependency>
<groupId>org.codehaus.plexus</groupId>
<artifactId>plexus-container-default</artifactId>
<version>1.0-alpha-9</version>
</dependency>
<!-- dependencies to annotations -->
<dependency>
<groupId>org.apache.maven.plugin-tools</groupId>
<artifactId>maven-plugin-annotations</artifactId>
<version>3.0</version>
<scope>compile</scope>
</dependency>
<dependency>
<groupId>org.apache.commons</groupId>
<artifactId>commons-lang3</artifactId>
<version>3.4</version>
</dependency>
<dependency>
<groupId>commons-io</groupId>
<artifactId>commons-io</artifactId>
<version>2.4</version>
</dependency>
<dependency>
<groupId>com.googlecode.java-diff-utils</groupId>
<artifactId>diffutils</artifactId>
<version>1.2.1</version>
</dependency>
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<version>4.12</version>
<scope>test</scope>
</dependency>
</dependencies>
<build>
<pluginManagement>
<plugins>
<plugin>
<artifactId>maven-clean-plugin</artifactId>
<version>2.6.1</version>
</plugin>
<plugin>
<artifactId>maven-compiler-plugin</artifactId>
<version>3.2</version>
</plugin>
<plugin>
<artifactId>maven-deploy-plugin</artifactId>
<version>2.8.2</version>
</plugin>
<plugin>
<artifactId>maven-gpg-plugin</artifactId>
<version>1.6</version>
</plugin>
<plugin>
<artifactId>maven-install-plugin</artifactId>
<version>2.5.2</version>
</plugin>
<plugin>
<artifactId>maven-invoker-plugin</artifactId>
<version>1.9</version>
</plugin>
<plugin>
<artifactId>maven-jar-plugin</artifactId>
<version>2.6</version>
</plugin>
<plugin>
<artifactId>maven-plugin-plugin</artifactId>
<version>3.3</version>
<configuration>
<skipErrorNoDescriptorsFound>true</skipErrorNoDescriptorsFound>
</configuration>
<executions>
<execution>
<id>mojo-descriptor</id>
<goals>
<goal>descriptor</goal>
</goals>
</execution>
<execution>
<id>help-mojo</id>
<goals>
<goal>helpmojo</goal>
</goals>
</execution>
</executions>
</plugin>
<plugin>
<artifactId>maven-release-plugin</artifactId>
<version>2.5.1</version>
</plugin>
<plugin>
<artifactId>maven-resources-plugin</artifactId>
<version>2.7</version>
</plugin>
<plugin>
<artifactId>maven-site-plugin</artifactId>
<version>3.4</version>
</plugin>
<plugin>
<artifactId>maven-surefire-plugin</artifactId>
<version>2.18.1</version>
</plugin>
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>mrm-maven-plugin</artifactId>
<version>1.0-beta-2</version>
<configuration>
<propertyName>repository.proxy.url</propertyName>
</configuration>
</plugin>
</plugins>
</pluginManagement>
<plugins>
<plugin>
<artifactId>maven-compiler-plugin</artifactId>
<configuration>
<source>1.5</source>
<target>1.5</target>
<compilerArgument>-g</compilerArgument>
</configuration>
</plugin>
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>mrm-maven-plugin</artifactId>
<executions>
<execution>
<goals>
<goal>start</goal>
<goal>stop</goal>
</goals>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-invoker-plugin</artifactId>
<executions>
<execution>
<id>integration-test</id>
<goals>
<goal>install</goal>
<goal>run</goal>
</goals>
<configuration>
<!--<streamLogs>false</streamLogs>-->
<!--<debug>true</debug>-->
</configuration>
</execution>
</executions>
<configuration>
<projectsDirectory>src/it</projectsDirectory>
<cloneProjectsTo>${project.build.directory}/it</cloneProjectsTo>
<localRepositoryPath>${project.build.directory}/local-repo</localRepositoryPath>
<settingsFile>src/it/settings.xml</settingsFile>
<showErrors>true</showErrors>
<streamLogs>true</streamLogs>
<pomIncludes>
<pomInclude>*/pom.xml</pomInclude>
</pomIncludes>
<postBuildHookScript>verify</postBuildHookScript>
<filterProperties>
<repository.proxy.url>${repository.proxy.url}</repository.proxy.url>
</filterProperties>
<mavenOpts>-Xmx256m</mavenOpts>
</configuration>
</plugin>
</plugins>
</build>
</project>
|
| Jar包内容: |
META-INF/MANIFEST.MF
io.github.stephenc.diffpatch.ApplyMojo$1.class
io.github.stephenc.diffpatch.ApplyMojo.class
io.github.stephenc.diffpatch.HelpMojo.class
META-INF/maven/com.github.stephenc.diffpatch/diffpatch-maven-plugin/plugin-help.xml
META-INF/maven/plugin.xml
META-INF/maven/com.github.stephenc.diffpatch/diffpatch-maven-plugin/pom.xml
META-INF/maven/com.github.stephenc.diffpatch/diffpatch-maven-plugin/pom.properties
|
| 依赖Jar: |
maven-core-${mavenVersion}.jar
/org.apache.maven/maven-core/${mavenVersion}
查看maven-core所有版本文件
maven-plugin-api-${mavenVersion}.jar
/org.apache.maven/maven-plugin-api/${mavenVersion}
查看maven-plugin-api所有版本文件
plexus-utils-2.0.5.jar
/org.codehaus.plexus/plexus-utils/2.0.5
查看plexus-utils所有版本文件
plexus-container-default-1.0-alpha-9.jar
/org.codehaus.plexus/plexus-container-default/1.0-alpha-9
查看plexus-container-default所有版本文件
maven-plugin-annotations-3.0.jar
/org.apache.maven.plugin-tools/maven-plugin-annotations/3.0
查看maven-plugin-annotations所有版本文件
commons-lang3-3.4.jar
/org.apache.commons/commons-lang3/3.4
查看commons-lang3所有版本文件
commons-io-2.4.jar
/commons-io/commons-io/2.4
查看commons-io所有版本文件
diffutils-1.2.1.jar
/com.googlecode.java-diff-utils/diffutils/1.2.1
查看diffutils所有版本文件
junit-4.12.jar
/junit/junit/4.12
查看junit所有版本文件
|