1<?xml version="1.0" encoding="UTF-8"?> 2<!-- 3 WARNING: This pom.xml is used only by IDE not for the actual product building. 4 Actual build performed by CMake. 5--> 6<project xmlns="http://maven.apache.org/POM/4.0.0" 7 xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" 8 xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> 9 <modelVersion>4.0.0</modelVersion> 10 <groupId>softmotions</groupId> 11 <artifactId>ejdb2</artifactId> 12 <version>1.0-SNAPSHOT</version> 13 <properties> 14 <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> 15 <java.source.version>11</java.source.version> 16 <java.target.version>11</java.target.version> 17 </properties> 18 <build> 19 <plugins> 20 <plugin> 21 <groupId>org.apache.maven.plugins</groupId> 22 <artifactId>maven-compiler-plugin</artifactId> 23 <version>3.8.1</version> 24 <configuration> 25 <source>${java.source.version}</source> 26 <target>${java.target.version}</target> 27 <encoding>UTF-8</encoding> 28 </configuration> 29 </plugin> 30 </plugins> 31 </build> 32</project>