Skip to main content
aboutsummaryrefslogtreecommitdiffstats
blob: 9c287754ddeca22b72b9b853ed76284d0cc7cf6a (plain) (blame)
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
<?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">
	<parent>
		<artifactId>org.eclipse.m2e.discovery-parent</artifactId>
		<groupId>org.eclipse.m2e</groupId>
		<version>1.0.0-SNAPSHOT</version>
		<relativePath>../org.eclipse.m2e.discovery-parent/pom.xml</relativePath>
	</parent>
	<modelVersion>4.0.0</modelVersion>

	<artifactId>org.eclipse.m2e.discovery.oss</artifactId>
	<packaging>eclipse-plugin</packaging>

	<build>
		<resources>
			<resource>
				<targetPath>.</targetPath>
				<filtering>false</filtering>
				<directory>${basedir}/</directory>
				<includes>
					<include>plugin.*</include>
					<include>images/**</include>
					<include>lifecycle/**</include>
				</includes>
			</resource>
		</resources>
	</build>

	<profiles>
		<profile>
			<id>publish-site</id>
			<build>
				<plugins>
					<plugin>
						<groupId>org.codehaus.mojo</groupId>
						<artifactId>wagon-maven-plugin</artifactId>
						<version>1.0-beta-4-SNAPSHOT</version>
						<executions>
							<execution>
								<id>upload-file</id>
								<phase>deploy</phase>
								<goals>
									<goal>upload</goal>
								</goals>
								<configuration>
									<fromDir>${project.build.directory}</fromDir>
									<serverId>download.eclipse.org</serverId>
									<includes>org.eclipse.m2e.discovery.oss-1.0.0-SNAPSHOT.jar</includes>
									<url>scpexe://dev.eclipse.org/</url>
									<toDir>${discovery.folder}/${project.artifactId}/</toDir>
								</configuration>
							</execution>
						</executions>
					</plugin>
				</plugins>
			</build>

		</profile>
	</profiles>
</project>

Back to the top