gdxapp4d/gdxapp4d-chain-dep-osgi-lib/pom.xml

71 lines
2.5 KiB
XML
Raw Normal View History

2022-02-26 01:45:20 +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 https://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<parent>
<groupId>love.distributedrebirth.gdxapp4d</groupId>
<artifactId>gdxapp4d</artifactId>
<version>0.0.1-SNAPSHOT</version>
</parent>
2022-10-11 15:31:59 +00:00
<artifactId>gdxapp4d-chain-dep-osgi-lib</artifactId>
<name>GDXApp⁴ᴰ-Chain-Dep-OSGI-LIB</name>
2022-02-26 01:45:20 +00:00
<packaging>pom</packaging>
2022-10-11 15:31:59 +00:00
<dependencies>
<dependency>
<groupId>ch.qos.logback</groupId>
<artifactId>logback-classic</artifactId>
</dependency>
<dependency>
<groupId>org.apache.commons</groupId>
<artifactId>commons-lang3</artifactId>
</dependency>
</dependencies>
2022-03-15 15:53:12 +00:00
<build>
<plugins>
2022-10-11 15:31:59 +00:00
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-dependency-plugin</artifactId>
<executions>
<execution>
<id>unpack-dependencies</id>
<phase>package</phase>
<goals>
<goal>copy-dependencies</goal>
</goals>
</execution>
</executions>
</plugin>
2022-03-15 15:53:12 +00:00
<plugin>
<artifactId>maven-antrun-plugin</artifactId>
<executions>
<execution>
<phase>package</phase>
<configuration>
<target>
<copy todir="target/chain">
<fileset dir="src/main/chain" />
</copy>
2022-10-11 15:31:59 +00:00
<copy todir="target/chain/bundle">
<file file="target/dependency/slf4j-api-1.7.36.jar" />
<file file="target/dependency/logback-core-1.2.10.jar" />
<file file="target/dependency/logback-classic-1.2.10.jar" />
<file file="target/dependency/commons-lang3-3.5.jar" />
</copy>
2022-03-15 15:53:12 +00:00
<java failonerror="true" fork="true" classname="love.distributedrebirth.warpme.hash.WaterShotAddict">
<arg value="target/chain" />
<classpath>
<pathelement location="../gdxapp4d-lib-warpme/target/gdxapp4d-lib-warpme.jar" />
2022-10-14 12:05:38 +00:00
<pathelement location="../gdxapp4d-lib-warpme/target/dependency/x4o-driver-${x4o.version}.jar" />
<pathelement location="../gdxapp4d-lib-warpme/target/dependency/jasper-el-${jasper-el.version}.jar" />
<pathelement location="../gdxapp4d-lib-warpme/target/dependency/el-api-${jasper-el.version}.jar" />
2022-03-15 15:53:12 +00:00
</classpath>
</java>
</target>
</configuration>
<goals>
<goal>run</goal>
</goals>
</execution>
</executions>
</plugin>
</plugins>
</build>
2022-02-26 01:45:20 +00:00
</project>