46 lines
1.6 KiB
XML
46 lines
1.6 KiB
XML
<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 https://maven.apache.org/xsd/maven-4.0.0.xsd">
|
|
<modelVersion>4.0.0</modelVersion>
|
|
<parent>
|
|
<groupId>com.primeton.eos</groupId>
|
|
<artifactId>demo</artifactId>
|
|
<version>1.0.0</version>
|
|
<relativePath>../</relativePath>
|
|
</parent>
|
|
<artifactId>com.primeton.eos.demo.model</artifactId>
|
|
<name>com.primeton.eos.demo.model</name>
|
|
<build>
|
|
<sourceDirectory>src</sourceDirectory>
|
|
<plugins>
|
|
<plugin>
|
|
<groupId>com.primeton.eos.maven.plugin</groupId>
|
|
<artifactId>eos-ptp-maven-plugin</artifactId>
|
|
<executions>
|
|
<execution>
|
|
<id>merge-sql</id>
|
|
<phase>prepare-package</phase>
|
|
<goals>
|
|
<goal>filesmerge</goal>
|
|
</goals>
|
|
<configuration>
|
|
<dir>${basedir}/target/classes/META-INF/db-scripts</dir>
|
|
<mergeFileName>all.sql</mergeFileName>
|
|
<charset>UTF-8</charset>
|
|
<mergeCurrentDir>true</mergeCurrentDir>
|
|
<includes>
|
|
<include>**/*.sql</include>
|
|
</includes>
|
|
</configuration>
|
|
</execution>
|
|
</executions>
|
|
</plugin>
|
|
<plugin>
|
|
<artifactId>maven-jar-plugin</artifactId>
|
|
<configuration>
|
|
<archive>
|
|
<manifestFile>src/META-INF/MANIFEST.MF</manifestFile>
|
|
</archive>
|
|
</configuration>
|
|
</plugin>
|
|
</plugins>
|
|
</build>
|
|
</project> |