-
Notifications
You must be signed in to change notification settings - Fork 14
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[maven-release-plugin] prepare release lept4j-1.18.2
- Loading branch information
Showing
1 changed file
with
122 additions
and
122 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,122 +1,122 @@ | ||
<?xml version="1.0" encoding="UTF-8"?> | ||
<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>net.sourceforge.lept4j</groupId> | ||
<artifactId>lept4j</artifactId> | ||
<version>1.18.2-SNAPSHOT</version> | ||
<packaging>jar</packaging> | ||
|
||
<properties> | ||
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> | ||
<maven.compiler.source>1.8</maven.compiler.source> | ||
<maven.compiler.target>1.8</maven.compiler.target> | ||
</properties> | ||
|
||
<name>Lept4J - Leptonica for Java</name> | ||
<url>https://github.com/nguyenq/lept4j</url> | ||
|
||
<description> | ||
# Lept4J | ||
|
||
## Description: | ||
|
||
A Java JNA wrapper for Leptonica Image Processing library. | ||
|
||
Lept4J is released and distributed under the Apache License, v2.0. | ||
</description> | ||
|
||
<parent> | ||
<groupId>org.sonatype.oss</groupId> | ||
<artifactId>oss-parent</artifactId> | ||
<version>9</version> | ||
</parent> | ||
|
||
<licenses> | ||
<license> | ||
<name>Apache License 2.0</name> | ||
<url>http://www.apache.org/licenses/LICENSE-2.0.txt</url> | ||
<distribution>repo</distribution> | ||
</license> | ||
</licenses> | ||
|
||
<scm> | ||
<connection>scm:svn:https://github.com/nguyenq/lept4j/trunk</connection> | ||
<developerConnection>scm:svn:https://github.com/nguyenq/lept4j/trunk</developerConnection> | ||
<url>https://github.com/nguyenq/lept4j/trunk</url> | ||
</scm> | ||
|
||
<developers> | ||
<developer> | ||
<name>Quan Nguyen</name> | ||
<email>nguyenq@users.sf.net</email> | ||
</developer> | ||
</developers> | ||
|
||
<contributors> | ||
<contributor> | ||
<name>O.J. Sousa Rodrigues</name> | ||
<email>osoriojaques@gmail.com</email> | ||
<roles> | ||
<role>developer</role> | ||
<role>contributor</role> | ||
</roles> | ||
<timezone>+1</timezone> | ||
</contributor> | ||
</contributors> | ||
<build> | ||
<plugins> | ||
<plugin> | ||
<groupId>org.apache.maven.plugins</groupId> | ||
<artifactId>maven-compiler-plugin</artifactId> | ||
<version>3.11.0</version> | ||
<configuration> | ||
<debug>false</debug> | ||
</configuration> | ||
</plugin> | ||
<plugin> | ||
<groupId>org.apache.maven.plugins</groupId> | ||
<artifactId>maven-javadoc-plugin</artifactId> | ||
<version>3.5.0</version> | ||
<configuration> | ||
<detectJavaApiLink>false</detectJavaApiLink> | ||
<offlineLinks> | ||
<offlineLink> | ||
<url>https://docs.oracle.com/en/java/javase/12/docs/api/</url> | ||
</offlineLink> | ||
</offlineLinks> | ||
</configuration> | ||
</plugin> | ||
<plugin> | ||
<groupId>org.apache.maven.plugins</groupId> | ||
<artifactId>maven-surefire-plugin</artifactId> | ||
<version>3.1.2</version> | ||
<configuration> | ||
<argLine>-Dfile.encoding=${project.build.sourceEncoding}</argLine> | ||
</configuration> | ||
</plugin> | ||
</plugins> | ||
</build> | ||
<dependencies> | ||
<dependency> | ||
<groupId>net.java.dev.jna</groupId> | ||
<artifactId>jna</artifactId> | ||
<version>5.13.0</version> | ||
</dependency> | ||
<dependency> | ||
<groupId>commons-io</groupId> | ||
<artifactId>commons-io</artifactId> | ||
<version>2.14.0</version> | ||
</dependency> | ||
<dependency> | ||
<groupId>com.github.jai-imageio</groupId> | ||
<artifactId>jai-imageio-core</artifactId> | ||
<version>1.4.0</version> | ||
</dependency> | ||
<dependency> | ||
<groupId>org.junit.jupiter</groupId> | ||
<artifactId>junit-jupiter-engine</artifactId> | ||
<version>5.10.0</version> | ||
<scope>test</scope> | ||
</dependency> | ||
</dependencies> | ||
</project> | ||
<?xml version="1.0" encoding="UTF-8"?> | ||
<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>net.sourceforge.lept4j</groupId> | ||
<artifactId>lept4j</artifactId> | ||
<version>1.18.2</version> | ||
<packaging>jar</packaging> | ||
|
||
<properties> | ||
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> | ||
<maven.compiler.source>1.8</maven.compiler.source> | ||
<maven.compiler.target>1.8</maven.compiler.target> | ||
</properties> | ||
|
||
<name>Lept4J - Leptonica for Java</name> | ||
<url>https://github.com/nguyenq/lept4j</url> | ||
|
||
<description> | ||
# Lept4J | ||
|
||
## Description: | ||
|
||
A Java JNA wrapper for Leptonica Image Processing library. | ||
|
||
Lept4J is released and distributed under the Apache License, v2.0. | ||
</description> | ||
|
||
<parent> | ||
<groupId>org.sonatype.oss</groupId> | ||
<artifactId>oss-parent</artifactId> | ||
<version>9</version> | ||
</parent> | ||
|
||
<licenses> | ||
<license> | ||
<name>Apache License 2.0</name> | ||
<url>http://www.apache.org/licenses/LICENSE-2.0.txt</url> | ||
<distribution>repo</distribution> | ||
</license> | ||
</licenses> | ||
|
||
<scm> | ||
<connection>scm:svn:https://github.com/nguyenq/lept4j/tags/lept4j-1.18.2</connection> | ||
<developerConnection>scm:svn:https://github.com/nguyenq/lept4j/tags/lept4j-1.18.2</developerConnection> | ||
<url>https://github.com/nguyenq/lept4j/tags/lept4j-1.18.2</url> | ||
</scm> | ||
|
||
<developers> | ||
<developer> | ||
<name>Quan Nguyen</name> | ||
<email>nguyenq@users.sf.net</email> | ||
</developer> | ||
</developers> | ||
|
||
<contributors> | ||
<contributor> | ||
<name>O.J. Sousa Rodrigues</name> | ||
<email>osoriojaques@gmail.com</email> | ||
<roles> | ||
<role>developer</role> | ||
<role>contributor</role> | ||
</roles> | ||
<timezone>+1</timezone> | ||
</contributor> | ||
</contributors> | ||
<build> | ||
<plugins> | ||
<plugin> | ||
<groupId>org.apache.maven.plugins</groupId> | ||
<artifactId>maven-compiler-plugin</artifactId> | ||
<version>3.11.0</version> | ||
<configuration> | ||
<debug>false</debug> | ||
</configuration> | ||
</plugin> | ||
<plugin> | ||
<groupId>org.apache.maven.plugins</groupId> | ||
<artifactId>maven-javadoc-plugin</artifactId> | ||
<version>3.5.0</version> | ||
<configuration> | ||
<detectJavaApiLink>false</detectJavaApiLink> | ||
<offlineLinks> | ||
<offlineLink> | ||
<url>https://docs.oracle.com/en/java/javase/12/docs/api/</url> | ||
</offlineLink> | ||
</offlineLinks> | ||
</configuration> | ||
</plugin> | ||
<plugin> | ||
<groupId>org.apache.maven.plugins</groupId> | ||
<artifactId>maven-surefire-plugin</artifactId> | ||
<version>3.1.2</version> | ||
<configuration> | ||
<argLine>-Dfile.encoding=${project.build.sourceEncoding}</argLine> | ||
</configuration> | ||
</plugin> | ||
</plugins> | ||
</build> | ||
<dependencies> | ||
<dependency> | ||
<groupId>net.java.dev.jna</groupId> | ||
<artifactId>jna</artifactId> | ||
<version>5.13.0</version> | ||
</dependency> | ||
<dependency> | ||
<groupId>commons-io</groupId> | ||
<artifactId>commons-io</artifactId> | ||
<version>2.14.0</version> | ||
</dependency> | ||
<dependency> | ||
<groupId>com.github.jai-imageio</groupId> | ||
<artifactId>jai-imageio-core</artifactId> | ||
<version>1.4.0</version> | ||
</dependency> | ||
<dependency> | ||
<groupId>org.junit.jupiter</groupId> | ||
<artifactId>junit-jupiter-engine</artifactId> | ||
<version>5.10.0</version> | ||
<scope>test</scope> | ||
</dependency> | ||
</dependencies> | ||
</project> |