Skip to main content
aboutsummaryrefslogtreecommitdiffstats
blob: 9ef148ec185cf4b088024c02f00305080cf867d5 (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
<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>
	<groupId>org.eclipse.m2e</groupId>
	<artifactId>org.eclipse.m2e.discovery-directory</artifactId>
	<version>1.0.0-SNAPSHOT</version>
	<packaging>pom</packaging>

	<parent>
		<groupId>org.eclipse.m2e</groupId>
		<artifactId>org.eclipse.m2e.discovery-parent</artifactId>
		<version>1.0.0-SNAPSHOT</version>
		<relativePath>org.eclipse.m2e.discovery-parent/pom.xml</relativePath>
	</parent>


	<modules>
		<module>org.eclipse.m2e.discovery.oss</module>
		<module>org.eclipse.m2e.discovery-parent</module>
	</modules> 

	<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>
									<fromFile>${project.directory}/</fromFile>
									<serverId>download.eclipse.org</serverId>
									<includes>directory.xml</includes>
									<url>scpexe://dev.eclipse.org/</url>
									<toDir>${discovery.folder}</toDir>
								</configuration>
							</execution>
						</executions>
					</plugin>
				</plugins>
			</build>

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

Back to the top