Skip to main content
summaryrefslogtreecommitdiffstats
blob: d7951afa4cbad566454a92ed6775948b0df649b5 (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
77
78
79
80
81
82
83
<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.eclipse.osee</groupId>
		<artifactId>org.eclipse.osee.x.server.parent</artifactId>
		<version>0.19.0-SNAPSHOT</version>
		<relativePath>../../plugins/org.eclipse.osee.x.server.parent</relativePath>
	</parent>

	<artifactId>org.eclipse.osee.define.report</artifactId>
	<packaging>eclipse-plugin</packaging>
	<name>OSEE Define Report - (Incubation)</name>
	<build>
		<plugins>
			<plugin>
				<artifactId>maven-clean-plugin</artifactId>
				<version>${maven-clean-version}</version>
				<configuration>
					<filesets>
						<fileset>
							<directory>REST-INF</directory>
							<includes>
								<include>**/*</include>
							</includes>
							<excludes>
								<exclude>application-doc.xml</exclude>
								<exclude>application-grammars.xml</exclude>
								<exclude>.gitignore</exclude>
							</excludes>
						</fileset>
					</filesets>
				</configuration>
			</plugin>
			<plugin>
				<groupId>org.apache.maven.plugins</groupId>
				<artifactId>maven-javadoc-plugin</artifactId>
				<version>${javadoc-version}</version>
				<inherited>false</inherited>
				<executions>
					<execution>
						<id>resource-doc-define</id>
						<goals>
							<goal>javadoc</goal>
						</goals>
						<phase>compile</phase>
						<configuration>
							<debug>false</debug>
							<encoding>UTF-8</encoding>
							<verbose>false</verbose>
							<show>public</show>
							<sourcepath>${basedir}/src</sourcepath>
							<subpackages>org.eclipse.osee.define.report.internal</subpackages>
							<doclet>com.sun.jersey.wadl.resourcedoc.ResourceDoclet</doclet>
							<docletArtifacts>
								<docletArtifact>
									<groupId>com.sun.jersey.contribs</groupId>
									<artifactId>wadl-resourcedoc-doclet</artifactId>
									<version>${jersey-wadlgen-version}</version>
								</docletArtifact>
								<docletArtifact>
									<groupId>com.sun.jersey</groupId>
									<artifactId>jersey-server</artifactId>
									<version>${jersey-version}</version>
								</docletArtifact>
								<docletArtifact>
									<groupId>xerces</groupId>
									<artifactId>xercesImpl</artifactId>
									<version>${xerces-version}</version>
								</docletArtifact>
							</docletArtifacts>
							<additionalparam>-output
								${rest-output-directory}/resourcedoc.xml</additionalparam>
							<useStandardDocletOptions>false</useStandardDocletOptions>
						</configuration>
					</execution>
				</executions>
			</plugin>
		</plugins>
	</build>
</project>

Back to the top