timis1 68f6c19109 JAVA-18148 Create a new java-nashorn project from the existing langua… ()
* JAVA-18148 Create a new java-nashorn project from the existing language-interop

* JAVA-18148 Cleanup the project to contain just the python related language interop

---------

Co-authored-by: timis1 <noreplay@yahoo.com>
2023-06-21 09:22:00 +05:30

30 lines
980 B
XML

<?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>
<artifactId>java-nashorn</artifactId>
<version>0.0.1-SNAPSHOT</version>
<name>java-nashorn</name>
<parent>
<groupId>com.baeldung</groupId>
<artifactId>parent-modules</artifactId>
<version>1.0.0-SNAPSHOT</version>
</parent>
<build>
<finalName>java-nashorn</finalName>
<resources>
<resource>
<directory>src/main/resources</directory>
<filtering>true</filtering>
</resource>
<resource>
<directory>src/test/resources</directory>
<filtering>true</filtering>
</resource>
</resources>
</build>
</project>