Skip to main content
aboutsummaryrefslogtreecommitdiffstats
blob: a790f066014b8d069d3594b1143099c8ec1cd000 (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
63
64
65
66
67
68
69
70
71
72
73
74
75
76
<?xml version="1.0" encoding="UTF-8"?>
<project>
	<modelVersion>4.0.0</modelVersion>
	<parent>
		<artifactId>org.eclipse.papyrus</artifactId>
		<groupId>org.eclipse.papyrus</groupId>
		<version>1.1.0-SNAPSHOT</version>
		<relativePath>../../../releng/top-pom-main.xml</relativePath>
	</parent>
	<artifactId>org.eclipse.papyrus.infra.ui</artifactId>
	<groupId>org.eclipse.papyrus</groupId>
	<version>1.1.0-SNAPSHOT</version>
	<packaging>eclipse-plugin</packaging>
	<description>Plugin dedicated to manage generic menus and actions, linked to EMF but not to UML nor GMF technologies.</description>

	<build>
		<plugins>
			<plugin>
				<groupId>org.apache.maven.plugins</groupId>
				<artifactId>maven-site-plugin</artifactId>
				<version>3.3</version>
				<configuration>
					<skipDeploy>false</skipDeploy>
					<!-- stagingSiteURL>file://${siteMainDirectory}</stagingSiteURL -->
				</configuration>
				<dependencies>
					<dependency>
						<groupId>lt.velykis.maven.skins</groupId>
						<artifactId>reflow-velocity-tools</artifactId>
						<version>1.1.1</version>
					</dependency>
					<dependency>
						<groupId>org.apache.velocity</groupId>
						<artifactId>velocity</artifactId>
						<version>1.7</version>
					</dependency>
				</dependencies>
			</plugin>
			<plugin>
				<groupId>org.apache.maven.plugins</groupId>
				<artifactId>maven-pdf-plugin</artifactId>
				<version>1.3</version>
				<executions>
					<execution>
						<id>pdf</id>
						<phase>site</phase>
						<goals>
							<goal>pdf</goal>
						</goals>
						<configuration>
							<outputDirectory>${project.reporting.outputDirectory}</outputDirectory>
							<includeReports>false</includeReports>
							<docDescriptor>src/site/pdf/main.pdf.xml</docDescriptor>
						</configuration>
					</execution>
				</executions>
			</plugin>
		</plugins>
	</build>
	<reporting>
		<plugins>
			<plugin>
				<groupId>org.apache.maven.plugins</groupId>
				<artifactId>maven-project-info-reports-plugin</artifactId>
				<version>2.8</version>
			</plugin>
		</plugins>
	</reporting>
	<!-- repositories> <repository> <id>central</id> <name>Maven Repository 
		Switchboard</name> <layout>default</layout> <url>http://repo1.maven.org/maven2</url> 
		<snapshots> <enabled>true</enabled> <checksumPolicy>fail</checksumPolicy> 
		</snapshots> <releases> <enabled>true</enabled> </releases> </repository> 
		<repository> <id>central snapshots</id> <url>https://oss.sonatype.org/content/repositories/snapshots/</url> 
		<snapshots> <enabled>true</enabled> <checksumPolicy>fail</checksumPolicy> 
		</snapshots> </repository> </repositories -->
</project>

Back to the top