forked from mazemaze567/presto-parcel
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pom.xml
51 lines (46 loc) · 1.57 KB
/
pom.xml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
<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>
<groupId>com.facebook.presto.parcel</groupId>
<artifactId>PRESTO-PARCEL</artifactId>
<packaging>jar</packaging>
<version>0.2</version>
<name>presto-parcel</name>
<build>
<finalName>PRESTO-${parcel.version}</finalName>
<plugins>
<plugin>
<artifactId>exec-maven-plugin</artifactId>
<groupId>org.codehaus.mojo</groupId>
<executions>
<execution>
<id>assemble</id>
<phase>package</phase>
<goals>
<goal>exec</goal>
</goals>
<configuration>
<executable>/bin/sh</executable>
<arguments>
<argument>${project.build.outputDirectory}/assemble.sh</argument>
</arguments>
</configuration>
</execution>
</executions>
</plugin>
</plugins>
<resources>
<resource>
<directory>src/main/resources</directory>
<filtering>true</filtering>
</resource>
</resources>
</build>
<properties>
<presto.version>330</presto.version>
<presto.url.base>https://maven.aliyun.com/repository/central/io/prestosql</presto.url.base>
<jdk.tar.gz.path></jdk.tar.gz.path>
<additional.dir.path></additional.dir.path>
<parcel.version>${presto.version}.presto${project.version}</parcel.version>
</properties>
</project>