The project consists of
myProject/src/myClasses/<all_java_classes.java> //Все классы проекта myProject/data/myDb.db //База данных myProject/config.properties //Файл проперти Pom.xml itself
<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/maven-v4_0_0.xsd"> <modelVersion>4.0.0</modelVersion> <groupId>ngrmr</groupId> <artifactId>myProject</artifactId> <packaging>jar</packaging> <version>1.0</version> <name>OART</name> <url>http://maven.apache.org</url> <build> <directory>out/maven_build</directory> <outputDirectory>myProject/out/classes</outputDirectory> </build> </project> The final build, as you see, happens in out / maven_build
How can I supplement the pom.xml file so that the database file and the * .perperties file remain unchanged in the out folder?