pyrolite
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>net.razorvine</groupId> <artifactId>pyrolite</artifactId> <version>5.1</version> </dependency>
<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> <parent> <groupId>org.sonatype.oss</groupId> <artifactId>oss-parent</artifactId> <version>9</version> </parent> <groupId>net.razorvine</groupId> <artifactId>pyrolite</artifactId> <version>5.1</version> <packaging>jar</packaging> <name>pyrolite</name> <url>https://github.com/irmen/Pyrolite</url> <properties> <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> </properties> <build> <pluginManagement> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-compiler-plugin</artifactId> <version>3.8.0</version> <configuration> <source>1.8</source> <target>1.8</target> <compilerArgs> <arg>-Xlint:all</arg> </compilerArgs> </configuration> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-gpg-plugin</artifactId> <version>1.5</version> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-release-plugin</artifactId> <version>2.5.2</version> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-javadoc-plugin</artifactId> <configuration> <doclint>none</doclint> <additionalparam>-Xdoclint:none</additionalparam> <additionalJOption>-Xdoclint:none</additionalJOption> </configuration> </plugin> </plugins> </pluginManagement> </build> <dependencies> <dependency> <groupId>junit</groupId> <artifactId>junit</artifactId> <version>4.13.1</version> <scope>test</scope> </dependency> <dependency> <groupId>net.razorvine</groupId> <artifactId>serpent</artifactId> <version>1.40</version> </dependency> </dependencies> <scm> <url>https://github.com/irmen/Pyrolite</url> <connection>scm:git:https://github.com/irmen/Pyrolite.git</connection> <developerConnection>scm:git:https://github.com/irmen/Pyrolite.git</developerConnection> <tag>pyrolite-5.1</tag> </scm> <issueManagement> <system>Github</system> <url>https://github.com/irmen/Pyrolite/issues</url> </issueManagement> <developers> <developer> <id>irmen</id> <name>Irmen de Jong</name> <email>irmen@razorvine.net</email> <url>https://github.com/irmen</url> </developer> </developers> <licenses> <license> <name>MIT License</name> <url>https://raw.githubusercontent.com/irmen/Pyrolite/master/LICENSE</url> </license> </licenses> <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://pyro5.readthedocs.io/). Pyrolite only implements part of the client side Pyro library, hence its name 'lite'... So if you don't need Pyro's full feature set, Pyrolite may be a good choice to connect java or .NET and python. Version 5.0 changes: support Pyro5 wire protocol. Dropped support of Pyro4 (stick to version 4.xx for that). </description> </project>