|
@@ -1,89 +0,0 @@
|
|
|
-<?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">
|
|
|
|
|
- <modelVersion>4.0.0</modelVersion>
|
|
|
|
|
- <parent>
|
|
|
|
|
- <groupId>net.ranides</groupId>
|
|
|
|
|
- <artifactId>assira.project</artifactId>
|
|
|
|
|
- <version>2.8.0-SNAPSHOT</version>
|
|
|
|
|
- </parent>
|
|
|
|
|
-
|
|
|
|
|
- <artifactId>assira.jdk11</artifactId>
|
|
|
|
|
- <packaging>jar</packaging>
|
|
|
|
|
-
|
|
|
|
|
- <name>${project.groupId}:${project.artifactId}</name>
|
|
|
|
|
- <description>assira: general purpose java library: release for JDK11</description>
|
|
|
|
|
-
|
|
|
|
|
- <build>
|
|
|
|
|
- <plugins>
|
|
|
|
|
- <plugin>
|
|
|
|
|
- <groupId>org.apache.maven.plugins</groupId>
|
|
|
|
|
- <artifactId>maven-shade-plugin</artifactId>
|
|
|
|
|
- <version>2.4.3</version>
|
|
|
|
|
- <executions>
|
|
|
|
|
- <execution>
|
|
|
|
|
- <phase>package</phase>
|
|
|
|
|
- <goals>
|
|
|
|
|
- <goal>shade</goal>
|
|
|
|
|
- </goals>
|
|
|
|
|
- <configuration>
|
|
|
|
|
- <shadedArtifactAttached>true</shadedArtifactAttached>
|
|
|
|
|
- <shadedClassifierName>all</shadedClassifierName>
|
|
|
|
|
- <createDependencyReducedPom>true</createDependencyReducedPom>
|
|
|
|
|
- <createSourcesJar>true</createSourcesJar>
|
|
|
|
|
- <minimizeJar>false</minimizeJar>
|
|
|
|
|
- </configuration>
|
|
|
|
|
- </execution>
|
|
|
|
|
- </executions>
|
|
|
|
|
- </plugin>
|
|
|
|
|
- </plugins>
|
|
|
|
|
- </build>
|
|
|
|
|
-
|
|
|
|
|
- <profiles>
|
|
|
|
|
- <profile>
|
|
|
|
|
- <id>release</id>
|
|
|
|
|
- <build>
|
|
|
|
|
- <plugins>
|
|
|
|
|
- <plugin>
|
|
|
|
|
- <groupId>org.codehaus.mojo</groupId>
|
|
|
|
|
- <artifactId>build-helper-maven-plugin</artifactId>
|
|
|
|
|
- <version>3.2.0</version>
|
|
|
|
|
- <executions>
|
|
|
|
|
- <execution>
|
|
|
|
|
- <id>attach-artifacts</id>
|
|
|
|
|
- <phase>package</phase>
|
|
|
|
|
- <goals>
|
|
|
|
|
- <goal>attach-artifact</goal>
|
|
|
|
|
- </goals>
|
|
|
|
|
- <configuration>
|
|
|
|
|
- <artifacts>
|
|
|
|
|
- <artifact>
|
|
|
|
|
- <file>../assira.core11/target/assira.core11-${project.version}-javadoc.jar</file>
|
|
|
|
|
- <type>jar</type>
|
|
|
|
|
- <classifier>javadoc</classifier>
|
|
|
|
|
- </artifact>
|
|
|
|
|
- </artifacts>
|
|
|
|
|
- </configuration>
|
|
|
|
|
- </execution>
|
|
|
|
|
- </executions>
|
|
|
|
|
- </plugin>
|
|
|
|
|
- </plugins>
|
|
|
|
|
- </build>
|
|
|
|
|
- </profile>
|
|
|
|
|
- </profiles>
|
|
|
|
|
-
|
|
|
|
|
- <dependencies>
|
|
|
|
|
- <dependency>
|
|
|
|
|
- <groupId>${project.groupId}</groupId>
|
|
|
|
|
- <artifactId>assira.core</artifactId>
|
|
|
|
|
- </dependency>
|
|
|
|
|
- <dependency>
|
|
|
|
|
- <groupId>${project.groupId}</groupId>
|
|
|
|
|
- <artifactId>assira.core11</artifactId>
|
|
|
|
|
- </dependency>
|
|
|
|
|
- <dependency>
|
|
|
|
|
- <groupId>${project.groupId}</groupId>
|
|
|
|
|
- <artifactId>assira.lambda</artifactId>
|
|
|
|
|
- </dependency>
|
|
|
|
|
- </dependencies>
|
|
|
|
|
-</project>
|
|
|