| pom.xml | pom.xml | |||
|---|---|---|---|---|
| <?xml version="1.0" encoding="UTF-8"?> | <?xml version="1.0" encoding="UTF-8"?> | |||
| <project xmlns="http://maven.apache.org/POM/4.0.0" | <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3 | |||
| xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" | .org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/P | |||
| xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache | OM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd"> | |||
| .org/maven-v4_0_0.xsd"> | ||||
| <modelVersion>4.0.0</modelVersion> | <modelVersion>4.0.0</modelVersion> | |||
| <groupId>com.jcraft</groupId> | <groupId>org.jruby</groupId> | |||
| <artifactId>jzlib</artifactId> | <artifactId>jzlib</artifactId> | |||
| <version>1.1.3</version> | <version>1.1.5</version> | |||
| <name>JZlib</name> | <name>JZlib</name> | |||
| <description>JZlib is a re-implementation of zlib in pure Java</descripti on> | <description>JZlib is a re-implementation of zlib in pure Java</descripti on> | |||
| <url>http://www.jcraft.com/jzlib/</url> | <url>http://www.jcraft.com/jzlib/</url> | |||
| <parent> | ||||
| <groupId>org.sonatype.oss</groupId> | ||||
| <artifactId>oss-parent</artifactId> | ||||
| <version>7</version> | ||||
| </parent> | ||||
| <organization> | <organization> | |||
| <name>jcraft</name> | <name>jcraft</name> | |||
| <url>http://www.jcraft.com/</url> | <url>http://www.jcraft.com/</url> | |||
| </organization> | </organization> | |||
| <issueManagement> | ||||
| <system>GitHub</system> | ||||
| <url>https://github.com/jruby/jzlib/issues</url> | ||||
| </issueManagement> | ||||
| <scm> | ||||
| <connection>scm:git:https://github.com/jruby/jzlib.git</connection> | ||||
| <developerConnection>scm:git:git@github.com:jruby/jzlib.git</developerC | ||||
| onnection> | ||||
| <url>https://github.com/jruby/jzlib</url> | ||||
| </scm> | ||||
| <licenses> | <licenses> | |||
| <license> | <license> | |||
| <name>BSD</name> | <name>BSD</name> | |||
| <url>http://www.jcraft.com/jzlib/LICENSE.txt</url> | <url>http://www.jcraft.com/jzlib/LICENSE.txt</url> | |||
| </license> | </license> | |||
| </licenses> | </licenses> | |||
| <build> | <build> | |||
| <plugins> | <plugins> | |||
| <plugin> | <plugin> | |||
| <artifactId>maven-compiler-plugin</artifactId> | <artifactId>maven-compiler-plugin</artifactId> | |||
| <version>2.0</version> | <version>3.8.0</version> | |||
| <configuration> | <configuration> | |||
| <source>1.5</source> | <source>7</source> | |||
| <target>1.5</target> | <target>7</target> | |||
| <optimize>true</optimize> | <optimize>true</optimize> | |||
| </configuration> | </configuration> | |||
| </plugin> | </plugin> | |||
| <plugin> | ||||
| <groupId>org.apache.maven.plugins</groupId> | ||||
| <artifactId>maven-jar-plugin</artifactId> | ||||
| <version>3.2.0</version> | ||||
| <configuration> | ||||
| <archive> | ||||
| <manifestEntries> | ||||
| <Automatic-Module-Name>org.jruby.jzlib</Automatic-Module-Name | ||||
| > | ||||
| </manifestEntries> | ||||
| </archive> | ||||
| </configuration> | ||||
| </plugin> | ||||
| </plugins> | </plugins> | |||
| </build> | </build> | |||
| </project> | </project> | |||
| End of changes. 8 change blocks. | ||||
| 9 lines changed or deleted | 39 lines changed or added | |||
This html diff was produced by rfcdiff 1.41. The latest version is available from http://tools.ietf.org/tools/rfcdiff/ | ||||