Skip to content

Commit de68c49

Browse files
committed
[maven-release-plugin] prepare release lept4j-1.13.3
1 parent d24c5a5 commit de68c49

File tree

1 file changed

+114
-114
lines changed

1 file changed

+114
-114
lines changed

pom.xml

Lines changed: 114 additions & 114 deletions
Original file line numberDiff line numberDiff line change
@@ -1,114 +1,114 @@
1-
<?xml version="1.0" encoding="UTF-8"?>
2-
<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">
3-
<modelVersion>4.0.0</modelVersion>
4-
<groupId>net.sourceforge.lept4j</groupId>
5-
<artifactId>lept4j</artifactId>
6-
<version>1.13.3-SNAPSHOT</version>
7-
<packaging>jar</packaging>
8-
9-
<properties>
10-
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
11-
<maven.compiler.source>1.8</maven.compiler.source>
12-
<maven.compiler.target>1.8</maven.compiler.target>
13-
</properties>
14-
15-
<name>Lept4J - Leptonica for Java</name>
16-
<url>https://github.com/nguyenq/lept4j</url>
17-
18-
<description>
19-
# Lept4J
20-
21-
## Description:
22-
23-
A Java JNA wrapper for Leptonica Image Processing library.
24-
25-
Lept4J is released and distributed under the Apache License, v2.0.
26-
</description>
27-
28-
<parent>
29-
<groupId>org.sonatype.oss</groupId>
30-
<artifactId>oss-parent</artifactId>
31-
<version>9</version>
32-
</parent>
33-
34-
<licenses>
35-
<license>
36-
<name>Apache License 2.0</name>
37-
<url>http://www.apache.org/licenses/LICENSE-2.0.txt</url>
38-
<distribution>repo</distribution>
39-
</license>
40-
</licenses>
41-
42-
<scm>
43-
<connection>scm:svn:https://github.com/nguyenq/lept4j/branches/1.13/</connection>
44-
<developerConnection>scm:svn:https://github.com/nguyenq/lept4j/branches/1.13/</developerConnection>
45-
<url>https://github.com/nguyenq/lept4j/branches/1.13/</url>
46-
</scm>
47-
48-
<developers>
49-
<developer>
50-
<name>Quan Nguyen</name>
51-
<email>nguyenq@users.sf.net</email>
52-
</developer>
53-
</developers>
54-
55-
<contributors>
56-
<contributor>
57-
<name>O.J. Sousa Rodrigues</name>
58-
<email>osoriojaques@gmail.com</email>
59-
<roles>
60-
<role>developer</role>
61-
<role>contributor</role>
62-
</roles>
63-
<timezone>+1</timezone>
64-
</contributor>
65-
</contributors>
66-
<build>
67-
<plugins>
68-
<plugin>
69-
<groupId>org.apache.maven.plugins</groupId>
70-
<artifactId>maven-compiler-plugin</artifactId>
71-
<version>3.8.1</version>
72-
<configuration>
73-
<debug>false</debug>
74-
</configuration>
75-
</plugin>
76-
<plugin>
77-
<groupId>org.apache.maven.plugins</groupId>
78-
<artifactId>maven-javadoc-plugin</artifactId>
79-
<version>3.2.0</version>
80-
<configuration>
81-
<detectJavaApiLink>false</detectJavaApiLink>
82-
<offlineLinks>
83-
<offlineLink>
84-
<url>https://docs.oracle.com/en/java/javase/12/docs/api/</url>
85-
</offlineLink>
86-
</offlineLinks>
87-
</configuration>
88-
</plugin>
89-
</plugins>
90-
</build>
91-
<dependencies>
92-
<dependency>
93-
<groupId>net.java.dev.jna</groupId>
94-
<artifactId>jna</artifactId>
95-
<version>5.8.0</version>
96-
</dependency>
97-
<dependency>
98-
<groupId>commons-io</groupId>
99-
<artifactId>commons-io</artifactId>
100-
<version>2.11.0</version>
101-
</dependency>
102-
<dependency>
103-
<groupId>com.github.jai-imageio</groupId>
104-
<artifactId>jai-imageio-core</artifactId>
105-
<version>1.4.0</version>
106-
</dependency>
107-
<dependency>
108-
<groupId>junit</groupId>
109-
<artifactId>junit</artifactId>
110-
<version>4.13.2</version>
111-
<scope>test</scope>
112-
</dependency>
113-
</dependencies>
114-
</project>
1+
<?xml version="1.0" encoding="UTF-8"?>
2+
<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">
3+
<modelVersion>4.0.0</modelVersion>
4+
<groupId>net.sourceforge.lept4j</groupId>
5+
<artifactId>lept4j</artifactId>
6+
<version>1.13.3</version>
7+
<packaging>jar</packaging>
8+
9+
<properties>
10+
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
11+
<maven.compiler.source>1.8</maven.compiler.source>
12+
<maven.compiler.target>1.8</maven.compiler.target>
13+
</properties>
14+
15+
<name>Lept4J - Leptonica for Java</name>
16+
<url>https://github.com/nguyenq/lept4j</url>
17+
18+
<description>
19+
# Lept4J
20+
21+
## Description:
22+
23+
A Java JNA wrapper for Leptonica Image Processing library.
24+
25+
Lept4J is released and distributed under the Apache License, v2.0.
26+
</description>
27+
28+
<parent>
29+
<groupId>org.sonatype.oss</groupId>
30+
<artifactId>oss-parent</artifactId>
31+
<version>9</version>
32+
</parent>
33+
34+
<licenses>
35+
<license>
36+
<name>Apache License 2.0</name>
37+
<url>http://www.apache.org/licenses/LICENSE-2.0.txt</url>
38+
<distribution>repo</distribution>
39+
</license>
40+
</licenses>
41+
42+
<scm>
43+
<connection>scm:svn:https://github.com/nguyenq/lept4j/tags/lept4j-1.13.3</connection>
44+
<developerConnection>scm:svn:https://github.com/nguyenq/lept4j/tags/lept4j-1.13.3</developerConnection>
45+
<url>https://github.com/nguyenq/lept4j/tags/lept4j-1.13.3</url>
46+
</scm>
47+
48+
<developers>
49+
<developer>
50+
<name>Quan Nguyen</name>
51+
<email>nguyenq@users.sf.net</email>
52+
</developer>
53+
</developers>
54+
55+
<contributors>
56+
<contributor>
57+
<name>O.J. Sousa Rodrigues</name>
58+
<email>osoriojaques@gmail.com</email>
59+
<roles>
60+
<role>developer</role>
61+
<role>contributor</role>
62+
</roles>
63+
<timezone>+1</timezone>
64+
</contributor>
65+
</contributors>
66+
<build>
67+
<plugins>
68+
<plugin>
69+
<groupId>org.apache.maven.plugins</groupId>
70+
<artifactId>maven-compiler-plugin</artifactId>
71+
<version>3.8.1</version>
72+
<configuration>
73+
<debug>false</debug>
74+
</configuration>
75+
</plugin>
76+
<plugin>
77+
<groupId>org.apache.maven.plugins</groupId>
78+
<artifactId>maven-javadoc-plugin</artifactId>
79+
<version>3.2.0</version>
80+
<configuration>
81+
<detectJavaApiLink>false</detectJavaApiLink>
82+
<offlineLinks>
83+
<offlineLink>
84+
<url>https://docs.oracle.com/en/java/javase/12/docs/api/</url>
85+
</offlineLink>
86+
</offlineLinks>
87+
</configuration>
88+
</plugin>
89+
</plugins>
90+
</build>
91+
<dependencies>
92+
<dependency>
93+
<groupId>net.java.dev.jna</groupId>
94+
<artifactId>jna</artifactId>
95+
<version>5.8.0</version>
96+
</dependency>
97+
<dependency>
98+
<groupId>commons-io</groupId>
99+
<artifactId>commons-io</artifactId>
100+
<version>2.11.0</version>
101+
</dependency>
102+
<dependency>
103+
<groupId>com.github.jai-imageio</groupId>
104+
<artifactId>jai-imageio-core</artifactId>
105+
<version>1.4.0</version>
106+
</dependency>
107+
<dependency>
108+
<groupId>junit</groupId>
109+
<artifactId>junit</artifactId>
110+
<version>4.13.2</version>
111+
<scope>test</scope>
112+
</dependency>
113+
</dependencies>
114+
</project>

0 commit comments

Comments
 (0)