forked from sakaiproject/sakai
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpom.xml
57 lines (50 loc) · 2.2 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
52
53
54
55
56
57
<?xml version="1.0"?>
<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>
<parent>
<groupId>org.sakaiproject.pack</groupId>
<artifactId>pack</artifactId>
<version>19-SNAPSHOT</version>
<relativePath>../pom.xml</relativePath>
</parent>
<name>Sakai Pack Binary</name>
<groupId>org.sakaiproject.pack</groupId>
<artifactId>pack-bin</artifactId>
<packaging>pom</packaging>
<organization>
<name>Sakai Project</name>
<url>http://sakaiproject.org/</url>
</organization>
<prerequisites>
<maven>${maven.prereq.version}</maven>
</prerequisites>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-antrun-plugin</artifactId>
<executions>
<execution>
<id>pack-bin-build</id>
<phase>install</phase>
<configuration>
<target>
<property name="basedir" value="${project.basedir}" />
<property name="localRepo" value="${settings.localRepository}" />
<property name="sakai.skip.tests" value="${sakai.skip.tests}" />
<property name="sakai.tomcat.version" value="${sakai.tomcat.version}" />
<property name="sakai.version" value="${sakai.version}" />
<ant antfile="${basedir}/build.xml">
<target name="pack.bin" />
</ant>
</target>
</configuration>
<goals>
<goal>run</goal>
</goals>
</execution>
</executions>
</plugin>
</plugins>
</build>
</project>