| 组织ID: |
org.walkmod |
| 项目ID: |
merger |
| 版本: |
1.0 |
| 最后修改时间: |
2019-10-24 08:33:08 |
| 包类型: |
jar |
| 标题: |
GNU General Public License (GPL v.3) |
| 描述: |
Library to apply semantic merge into ASTs
|
| 相关URL: |
https://github.com/rpau/merger |
| 大小: |
12.68KB |
|
|
| Maven引入代码: |
<dependency>
<groupId>org.walkmod</groupId>
<artifactId>merger</artifactId>
<version>1.0</version>
</dependency>
|
| Gradle引入代码: |
org.walkmod:merger:1.0
|
| 下载Jar包: |
|
| POM文件内容: |
<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>org.walkmod</groupId>
<artifactId>merger</artifactId>
<version>1.0</version>
<packaging>jar</packaging>
<description>
Library to apply semantic merge into ASTs
</description>
<url>https://github.com/rpau/merger</url>
<licenses>
<license>
<name>GNU General Public License (GPL v.3)</name>
<url>http://www.gnu.org/licenses/gpl.txt</url>
</license>
</licenses>
<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<project.build.resourceEncoding>UTF-8</project.build.resourceEncoding>
<maven.compile.encoding>UTF-8</maven.compile.encoding>
</properties>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<version>2.3.2</version>
<configuration>
<source>1.6</source>
<target>1.6</target>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-javadoc-plugin</artifactId>
<executions>
<execution>
<id>attach-javadocs</id>
<goals>
<goal>jar</goal>
</goals>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-source-plugin</artifactId>
<executions>
<execution>
<id>attach-sources</id>
<goals>
<goal>jar</goal>
</goals>
</execution>
</executions>
</plugin>
</plugins>
</build>
<dependencies>
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<version>4.5</version>
<scope>test</scope>
</dependency>
</dependencies>
<profiles>
<profile>
<id>default-tools.jar</id>
<activation>
<property>
<name>java.vendor</name>
<value>Sun Microsystems Inc.</value>
</property>
</activation>
<dependencies>
<dependency>
<groupId>com.sun</groupId>
<artifactId>tools</artifactId>
<version>1.4.2</version>
<scope>system</scope>
<systemPath>${java.home}/../lib/tools.jar</systemPath>
</dependency>
</dependencies>
</profile>
</profiles>
<name>merger</name>
<scm>
<url>https://github.com/rpau/merger</url>
<connection>https://github.com/rpau/merger.git</connection>
</scm>
<developers>
<developer>
<id>rpau</id>
<name>rpau</name>
<email>raquelpau@gmail.com</email>
</developer>
<developer>
<id>acoroleu</id>
<name>acoroleu</name>
<email>acoroleu@gmail.com</email>
</developer>
</developers>
</project>
|
| Jar包内容: |
META-INF/MANIFEST.MF
org.walkmod.merger.AddAllMergePolicy.class
org.walkmod.merger.AppendMergePolicy.class
org.walkmod.merger.AssignMergePolicy.class
org.walkmod.merger.CollectionUtil.class
org.walkmod.merger.IdentificableNode.class
org.walkmod.merger.Mergeable.class
org.walkmod.merger.MergeEngine.class
org.walkmod.merger.MergeEngineAware.class
org.walkmod.merger.MergePolicy.class
org.walkmod.merger.ObjectMergePolicy.class
org.walkmod.merger.OverrideMergePolicy.class
org.walkmod.merger.TypeMergePolicy.class
org.walkmod.merger.UnmodifyMergePolicy.class
META-INF/maven/org.walkmod/merger/pom.xml
META-INF/maven/org.walkmod/merger/pom.properties
|
| 依赖Jar: |
junit-4.5.jar
/junit/junit/4.5
查看junit所有版本文件
|