This repository was archived by the owner on Nov 10, 2017. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 68
/
Copy pathpom.xml
63 lines (58 loc) · 1.98 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
58
59
60
61
62
63
<?xml version="1.0" encoding="UTF-8"?>
<project
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"
xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
<modelVersion>4.0.0</modelVersion>
<parent>
<artifactId>m2e-android</artifactId>
<groupId>me.gladwell.eclipse.m2e.android</groupId>
<version>1.2.0</version>
</parent>
<artifactId>me.gladwell.eclipse.m2e.android.update</artifactId>
<name>Android for Maven Eclipse Repository</name>
<packaging>eclipse-repository</packaging>
<properties>
<github-site-plugin-version>0.10</github-site-plugin-version>
</properties>
<profiles>
<profile>
<id>release</id>
<activation>
<property>
<name>release</name>
</property>
</activation>
<build>
<plugins>
<plugin>
<groupId>com.github.github</groupId>
<artifactId>site-maven-plugin</artifactId>
<version>${github-site-plugin-version}</version>
<configuration>
<message>Updating release update site for
${project.version}</message>
<outputDirectory>${project.build.directory}/repository</outputDirectory>
<path>updates/m2e-android</path>
<merge>true</merge>
</configuration>
</plugin>
</plugins>
</build>
</profile>
</profiles>
<build>
<plugins>
<plugin>
<groupId>com.github.github</groupId>
<artifactId>site-maven-plugin</artifactId>
<version>${github-site-plugin-version}</version>
<configuration>
<message>Updating master/snapshot update site for ${project.version}</message>
<outputDirectory>${project.build.directory}/repository</outputDirectory>
<path>updates/master/m2e-android</path>
<merge>true</merge>
</configuration>
</plugin>
</plugins>
</build>
</project>