mirror of
https://github.com/theonedev/onedev.git
synced 2025-12-08 18:26:30 +00:00
56 lines
2.2 KiB
XML
56 lines
2.2 KiB
XML
<?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>
|
|
<artifactId>parent.general</artifactId>
|
|
<groupId>com.pmease</groupId>
|
|
<version>1.0.5</version>
|
|
</parent>
|
|
<artifactId>commons.jsw</artifactId>
|
|
<build>
|
|
<plugins>
|
|
<plugin>
|
|
<groupId>com.pmease</groupId>
|
|
<artifactId>plugin.maven</artifactId>
|
|
</plugin>
|
|
<plugin>
|
|
<artifactId>maven-antrun-plugin</artifactId>
|
|
<executions>
|
|
<execution>
|
|
<phase>prepare-package</phase>
|
|
<goals>
|
|
<goal>run</goal>
|
|
</goals>
|
|
<configuration>
|
|
<target>
|
|
<unzip src="wrapper/wrapper-delta-pack-st.zip" dest="${project.build.outputDirectory}" overwrite="true">
|
|
<regexpmapper from="^.*?/(.*)" to="\1"/>
|
|
</unzip>
|
|
<copy file="wrapper/wrapper.conf" tofile="${project.build.outputDirectory}/wrapper.conf"/>
|
|
</target>
|
|
</configuration>
|
|
</execution>
|
|
</executions>
|
|
</plugin>
|
|
</plugins>
|
|
</build>
|
|
<repositories>
|
|
<repository>
|
|
<id>pmeaseRepo</id>
|
|
<name>PMEase Repository</name>
|
|
<releases>
|
|
<enabled>true</enabled>
|
|
<updatePolicy>never</updatePolicy>
|
|
<checksumPolicy>fail</checksumPolicy>
|
|
</releases>
|
|
<snapshots>
|
|
<enabled>true</enabled>
|
|
<updatePolicy>always</updatePolicy>
|
|
<checksumPolicy>fail</checksumPolicy>
|
|
</snapshots>
|
|
<url>http://artifact.pmease.com/</url>
|
|
</repository>
|
|
</repositories>
|
|
</project>
|