Skip to content

Commit 4fe8479

Browse files
committed
[maven-release-plugin] prepare release pyrolite-4.21
1 parent 7d1163e commit 4fe8479

File tree

1 file changed

+104
-104
lines changed

1 file changed

+104
-104
lines changed

java/pom.xml

+104-104
Original file line numberDiff line numberDiff line change
@@ -1,104 +1,104 @@
1-
<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">
2-
<modelVersion>4.0.0</modelVersion>
3-
4-
<parent>
5-
<groupId>org.sonatype.oss</groupId>
6-
<artifactId>oss-parent</artifactId>
7-
<version>9</version>
8-
</parent>
9-
10-
<groupId>net.razorvine</groupId>
11-
<artifactId>pyrolite</artifactId>
12-
<version>4.21-SNAPSHOT</version>
13-
<packaging>jar</packaging>
14-
15-
<name>pyrolite</name>
16-
<url>https://github.com/irmen/Pyrolite</url>
17-
18-
<properties>
19-
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
20-
</properties>
21-
<build>
22-
<pluginManagement>
23-
<plugins>
24-
<plugin>
25-
<groupId>org.apache.maven.plugins</groupId>
26-
<artifactId>maven-compiler-plugin</artifactId>
27-
<version>3.3</version>
28-
<configuration>
29-
<source>1.8</source>
30-
<target>1.8</target>
31-
<compilerArgument>-Xlint:unchecked</compilerArgument>
32-
<compilerArgument>-Xlint:deprecation</compilerArgument>
33-
</configuration>
34-
</plugin>
35-
<plugin>
36-
<groupId>org.apache.maven.plugins</groupId>
37-
<artifactId>maven-gpg-plugin</artifactId>
38-
<version>1.5</version>
39-
</plugin>
40-
<plugin>
41-
<groupId>org.apache.maven.plugins</groupId>
42-
<artifactId>maven-release-plugin</artifactId>
43-
<version>2.5.2</version>
44-
</plugin>
45-
<plugin>
46-
<groupId>org.apache.maven.plugins</groupId>
47-
<artifactId>maven-javadoc-plugin</artifactId>
48-
<configuration>
49-
<additionalparam>-Xdoclint:none</additionalparam>
50-
</configuration>
51-
</plugin>
52-
</plugins>
53-
</pluginManagement>
54-
</build>
55-
<dependencies>
56-
<dependency>
57-
<groupId>junit</groupId>
58-
<artifactId>junit</artifactId>
59-
<version>4.12</version>
60-
<scope>test</scope>
61-
</dependency>
62-
<dependency>
63-
<groupId>net.razorvine</groupId>
64-
<artifactId>serpent</artifactId>
65-
<version>1.23</version>
66-
</dependency>
67-
</dependencies>
68-
<scm>
69-
<url>https://github.com/irmen/Pyrolite</url>
70-
<connection>scm:git:https://github.com/irmen/Pyrolite.git</connection>
71-
<developerConnection>scm:git:https://github.com/irmen/Pyrolite.git</developerConnection>
72-
<tag>HEAD</tag>
73-
</scm>
74-
<issueManagement>
75-
<system>Github</system>
76-
<url>https://github.com/irmen/Pyrolite/issues</url>
77-
</issueManagement>
78-
79-
<developers>
80-
<developer>
81-
<id>irmen</id>
82-
<name>Irmen de Jong</name>
83-
<email>[email protected]</email>
84-
<url>https://github.com/irmen</url>
85-
</developer>
86-
</developers>
87-
88-
<licenses>
89-
<license>
90-
<name>MIT License</name>
91-
<url>https://raw.githubusercontent.com/irmen/Pyrolite/master/LICENSE</url>
92-
</license>
93-
</licenses>
94-
<description>This library allows your Java program to interface very easily with the Python world. It uses the Pyro protocol to call methods on remote objects. (See https://github.com/irmen/Pyro4). To that end, it also contains and uses a feature complete pickle protocol implementation -read and write- to exchange data with Pyro/Python.
95-
96-
Pyrolite only implements part of the client side Pyro library, hence its name 'lite'... But because Pyrolite has no dependencies, it is a much lighter way to use Pyro from Java/.NET than a solution with jython+pyro or IronPython+Pyro would provide. So if you don't need Pyro's full feature set, and don't require your Java/.NET code to host Pyro objects itself, Pyrolite may be a good choice to connect java or .NET and python.
97-
98-
(More info about Pyro itself: https://pyro4.readthedocs.io/ )
99-
100-
Version 4.21 changes:
101-
Pickle memoization uses regular obj.hashCode again (compare by value) rather than identityHashCode (compare by object identity).
102-
This can be configured via a new Pickler(useMemo, valueCompare) constructor.
103-
</description>
104-
</project>
1+
<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">
2+
<modelVersion>4.0.0</modelVersion>
3+
4+
<parent>
5+
<groupId>org.sonatype.oss</groupId>
6+
<artifactId>oss-parent</artifactId>
7+
<version>9</version>
8+
</parent>
9+
10+
<groupId>net.razorvine</groupId>
11+
<artifactId>pyrolite</artifactId>
12+
<version>4.21</version>
13+
<packaging>jar</packaging>
14+
15+
<name>pyrolite</name>
16+
<url>https://github.com/irmen/Pyrolite</url>
17+
18+
<properties>
19+
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
20+
</properties>
21+
<build>
22+
<pluginManagement>
23+
<plugins>
24+
<plugin>
25+
<groupId>org.apache.maven.plugins</groupId>
26+
<artifactId>maven-compiler-plugin</artifactId>
27+
<version>3.3</version>
28+
<configuration>
29+
<source>1.8</source>
30+
<target>1.8</target>
31+
<compilerArgument>-Xlint:unchecked</compilerArgument>
32+
<compilerArgument>-Xlint:deprecation</compilerArgument>
33+
</configuration>
34+
</plugin>
35+
<plugin>
36+
<groupId>org.apache.maven.plugins</groupId>
37+
<artifactId>maven-gpg-plugin</artifactId>
38+
<version>1.5</version>
39+
</plugin>
40+
<plugin>
41+
<groupId>org.apache.maven.plugins</groupId>
42+
<artifactId>maven-release-plugin</artifactId>
43+
<version>2.5.2</version>
44+
</plugin>
45+
<plugin>
46+
<groupId>org.apache.maven.plugins</groupId>
47+
<artifactId>maven-javadoc-plugin</artifactId>
48+
<configuration>
49+
<additionalparam>-Xdoclint:none</additionalparam>
50+
</configuration>
51+
</plugin>
52+
</plugins>
53+
</pluginManagement>
54+
</build>
55+
<dependencies>
56+
<dependency>
57+
<groupId>junit</groupId>
58+
<artifactId>junit</artifactId>
59+
<version>4.12</version>
60+
<scope>test</scope>
61+
</dependency>
62+
<dependency>
63+
<groupId>net.razorvine</groupId>
64+
<artifactId>serpent</artifactId>
65+
<version>1.23</version>
66+
</dependency>
67+
</dependencies>
68+
<scm>
69+
<url>https://github.com/irmen/Pyrolite</url>
70+
<connection>scm:git:https://github.com/irmen/Pyrolite.git</connection>
71+
<developerConnection>scm:git:https://github.com/irmen/Pyrolite.git</developerConnection>
72+
<tag>pyrolite-4.21</tag>
73+
</scm>
74+
<issueManagement>
75+
<system>Github</system>
76+
<url>https://github.com/irmen/Pyrolite/issues</url>
77+
</issueManagement>
78+
79+
<developers>
80+
<developer>
81+
<id>irmen</id>
82+
<name>Irmen de Jong</name>
83+
<email>[email protected]</email>
84+
<url>https://github.com/irmen</url>
85+
</developer>
86+
</developers>
87+
88+
<licenses>
89+
<license>
90+
<name>MIT License</name>
91+
<url>https://raw.githubusercontent.com/irmen/Pyrolite/master/LICENSE</url>
92+
</license>
93+
</licenses>
94+
<description>This library allows your Java program to interface very easily with the Python world. It uses the Pyro protocol to call methods on remote objects. (See https://github.com/irmen/Pyro4). To that end, it also contains and uses a feature complete pickle protocol implementation -read and write- to exchange data with Pyro/Python.
95+
96+
Pyrolite only implements part of the client side Pyro library, hence its name 'lite'... But because Pyrolite has no dependencies, it is a much lighter way to use Pyro from Java/.NET than a solution with jython+pyro or IronPython+Pyro would provide. So if you don't need Pyro's full feature set, and don't require your Java/.NET code to host Pyro objects itself, Pyrolite may be a good choice to connect java or .NET and python.
97+
98+
(More info about Pyro itself: https://pyro4.readthedocs.io/ )
99+
100+
Version 4.21 changes:
101+
Pickle memoization uses regular obj.hashCode again (compare by value) rather than identityHashCode (compare by object identity).
102+
This can be configured via a new Pickler(useMemo, valueCompare) constructor.
103+
</description>
104+
</project>

0 commit comments

Comments
 (0)