BAEL-3925 - How to call Python from Java (#9312)

* BAEL-3491 - Check for null before calling parse in the
Double.parseDouble

* BAEL-3491 - Check for null before calling parse in the
Double.parseDouble

- Return to indentation with spaces.

* BAEL-3854 - Pattern Matching for instanceof in Java 14

* BAEL-3854 - Pattern Matching for instanceof in Java 14 - add unit test

* BAEL-3868 - Fix the integrations tests in mocks

* BAEL-3925 - How to call Python from Java

* BAEL-3925-How to call Python from Java

* BAEL-3925-How to call Python from Java

Co-authored-by: Jonathan Cook <jcook@sciops.esa.int>
This commit is contained in:
Jonathan Cook 2020-05-18 23:15:04 +02:00 committed by GitHub
parent efa30fe9f4
commit 51b4218f25
8 changed files with 13 additions and 13 deletions

View File

@ -1,5 +0,0 @@
## Java Python Interop
This module contains articles about Java and Python interoperability.
### Relevant Articles:

View File

@ -0,0 +1,5 @@
## Language Interop
This module contains articles about Java interop with other language integrations.
### Relevant Articles:

View File

@ -3,9 +3,9 @@
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" 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"> 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> <modelVersion>4.0.0</modelVersion>
<artifactId>java-python-interop</artifactId> <artifactId>language-interop</artifactId>
<version>0.0.1-SNAPSHOT</version> <version>0.0.1-SNAPSHOT</version>
<name>java-python-interop</name> <name>language-interop</name>
<parent> <parent>
<groupId>com.baeldung</groupId> <groupId>com.baeldung</groupId>
@ -33,7 +33,7 @@
</dependencies> </dependencies>
<build> <build>
<finalName>java-python-interop</finalName> <finalName>language-interop</finalName>
<resources> <resources>
<resource> <resource>
<directory>src/main/resources</directory> <directory>src/main/resources</directory>

View File

@ -1,4 +1,4 @@
package com.baeldung.python.interop; package com.baeldung.language.interop.python;
import java.util.List; import java.util.List;

View File

@ -1,4 +1,4 @@
package com.baeldung.python.interop; package com.baeldung.language.interop.python;
import static org.hamcrest.Matchers.containsString; import static org.hamcrest.Matchers.containsString;
import static org.hamcrest.Matchers.empty; import static org.hamcrest.Matchers.empty;

View File

@ -463,7 +463,6 @@
<module>java-numbers</module> <module>java-numbers</module>
<module>java-numbers-2</module> <module>java-numbers-2</module>
<module>java-numbers-3</module> <module>java-numbers-3</module>
<module>java-python-interop</module>
<module>java-rmi</module> <module>java-rmi</module>
<module>java-spi</module> <module>java-spi</module>
<module>java-vavr-stream</module> <module>java-vavr-stream</module>
@ -497,6 +496,7 @@
<module>kotlin-quasar</module> <module>kotlin-quasar</module>
<!-- <module>lagom</module> --> <!-- Not a maven project --> <!-- <module>lagom</module> --> <!-- Not a maven project -->
<module>language-interop</module>
<module>libraries-2</module> <module>libraries-2</module>
<module>libraries-3</module> <module>libraries-3</module>
<module>libraries-apache-commons</module> <module>libraries-apache-commons</module>