|
|
@@ -1,70 +1,49 @@
|
|
|
<?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">
|
|
|
+<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>
|
|
|
<parent>
|
|
|
- <artifactId>assira.project</artifactId>
|
|
|
<groupId>net.ranides</groupId>
|
|
|
- <version>2.6.0</version>
|
|
|
+ <artifactId>assira.project</artifactId>
|
|
|
+ <version>2.7.0</version>
|
|
|
</parent>
|
|
|
- <modelVersion>4.0.0</modelVersion>
|
|
|
-
|
|
|
<artifactId>assira.jdk11</artifactId>
|
|
|
-
|
|
|
- <properties>
|
|
|
- <assira.junit.debug>false</assira.junit.debug>
|
|
|
- <maven.compiler.source>11</maven.compiler.source>
|
|
|
- <maven.compiler.target>11</maven.compiler.target>
|
|
|
- </properties>
|
|
|
-
|
|
|
+ <packaging>jar</packaging>
|
|
|
+
|
|
|
<build>
|
|
|
<plugins>
|
|
|
<plugin>
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
- <artifactId>maven-compiler-plugin</artifactId>
|
|
|
- <configuration>
|
|
|
- <source>${maven.compiler.source}</source>
|
|
|
- <target>${maven.compiler.target}</target>
|
|
|
- <compilerArgs>
|
|
|
- <argument>-Xlint:unchecked</argument>
|
|
|
- <argument>-Xlint:removal</argument>
|
|
|
- <argument>-parameters</argument>
|
|
|
- </compilerArgs>
|
|
|
- </configuration>
|
|
|
- </plugin>
|
|
|
- <plugin>
|
|
|
- <groupId>org.jacoco</groupId>
|
|
|
- <artifactId>jacoco-maven-plugin</artifactId>
|
|
|
- <configuration>
|
|
|
- <excludes>
|
|
|
- <exclude>net/ranides/assira/test/**</exclude>
|
|
|
- </excludes>
|
|
|
- </configuration>
|
|
|
+ <artifactId>maven-shade-plugin</artifactId>
|
|
|
+ <version>2.4.3</version>
|
|
|
+ <executions>
|
|
|
+ <execution>
|
|
|
+ <phase>package</phase>
|
|
|
+ <goals>
|
|
|
+ <goal>shade</goal>
|
|
|
+ </goals>
|
|
|
+ <configuration>
|
|
|
+ <shadedArtifactAttached>false</shadedArtifactAttached>
|
|
|
+ <createDependencyReducedPom>true</createDependencyReducedPom>
|
|
|
+ <minimizeJar>false</minimizeJar>
|
|
|
+ </configuration>
|
|
|
+ </execution>
|
|
|
+ </executions>
|
|
|
</plugin>
|
|
|
</plugins>
|
|
|
</build>
|
|
|
|
|
|
<dependencies>
|
|
|
<dependency>
|
|
|
- <groupId>junit</groupId>
|
|
|
- <artifactId>junit</artifactId>
|
|
|
- </dependency>
|
|
|
- <dependency>
|
|
|
- <groupId>net.ranides</groupId>
|
|
|
+ <groupId>${project.groupId}</groupId>
|
|
|
<artifactId>assira.core</artifactId>
|
|
|
</dependency>
|
|
|
<dependency>
|
|
|
- <groupId>net.ranides</groupId>
|
|
|
- <artifactId>assira.junit</artifactId>
|
|
|
+ <groupId>${project.groupId}</groupId>
|
|
|
+ <artifactId>assira.core11</artifactId>
|
|
|
</dependency>
|
|
|
<dependency>
|
|
|
- <groupId>org.slf4j</groupId>
|
|
|
- <artifactId>slf4j-api</artifactId>
|
|
|
- </dependency>
|
|
|
- <dependency>
|
|
|
- <groupId>org.projectlombok</groupId>
|
|
|
- <artifactId>lombok</artifactId>
|
|
|
+ <groupId>${project.groupId}</groupId>
|
|
|
+ <artifactId>assira.lambda</artifactId>
|
|
|
</dependency>
|
|
|
</dependencies>
|
|
|
-
|
|
|
</project>
|