2021-07-16 04:34:15 +00:00
|
|
|
<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>
|
|
|
|
<artifactId>lantern-datamodel-rules</artifactId>
|
|
|
|
<packaging>jar</packaging>
|
|
|
|
<version>1.0.0</version>
|
|
|
|
<name>lantern-datamodel-rules</name>
|
|
|
|
|
2022-04-29 19:59:56 +00:00
|
|
|
<parent>
|
|
|
|
<groupId>com.lanternsoftware.rules</groupId>
|
|
|
|
<artifactId>rules</artifactId>
|
|
|
|
<version>1.0.0</version>
|
|
|
|
</parent>
|
2021-07-16 04:34:15 +00:00
|
|
|
|
|
|
|
<dependencies>
|
|
|
|
<dependency>
|
|
|
|
<groupId>com.lanternsoftware.util</groupId>
|
|
|
|
<artifactId>lantern-util-dao</artifactId>
|
2022-04-29 19:59:56 +00:00
|
|
|
<version>${util.version}</version>
|
2021-07-16 04:34:15 +00:00
|
|
|
</dependency>
|
|
|
|
</dependencies>
|
|
|
|
<build>
|
|
|
|
<resources>
|
|
|
|
<resource>
|
|
|
|
<directory>src/main/resources</directory>
|
|
|
|
</resource>
|
|
|
|
</resources>
|
|
|
|
<plugins>
|
|
|
|
<plugin>
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
<artifactId>maven-compiler-plugin</artifactId>
|
2022-05-02 23:20:03 +00:00
|
|
|
<version>3.10.1</version>
|
2021-07-16 04:34:15 +00:00
|
|
|
<executions>
|
|
|
|
<execution>
|
|
|
|
<goals>
|
|
|
|
<goal>testCompile</goal>
|
|
|
|
</goals>
|
|
|
|
<phase>compile</phase>
|
|
|
|
</execution>
|
|
|
|
</executions>
|
|
|
|
<configuration>
|
|
|
|
<optimize>true</optimize>
|
|
|
|
<showDeprecation>true</showDeprecation>
|
|
|
|
<encoding>UTF-8</encoding>
|
2022-04-29 19:59:56 +00:00
|
|
|
<source>${maven.compiler.source}</source>
|
|
|
|
<target>${maven.compiler.target}</target>
|
2021-07-16 04:34:15 +00:00
|
|
|
</configuration>
|
|
|
|
</plugin>
|
|
|
|
<plugin>
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
<artifactId>maven-source-plugin</artifactId>
|
2022-05-02 23:20:03 +00:00
|
|
|
<version>3.2.1</version>
|
2021-07-16 04:34:15 +00:00
|
|
|
<executions>
|
|
|
|
<execution>
|
|
|
|
<phase>package</phase>
|
|
|
|
<goals>
|
|
|
|
<goal>jar</goal>
|
|
|
|
</goals>
|
|
|
|
</execution>
|
|
|
|
</executions>
|
|
|
|
</plugin>
|
|
|
|
</plugins>
|
|
|
|
</build>
|
|
|
|
</project>
|