Skip to main content
summaryrefslogtreecommitdiffstats
blob: 7555a50def53972abc8fd3aa3a0190280c03a543 (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
<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>

	<groupId>org.eclipse.osee</groupId>
	<artifactId>org.eclipse.osee.x.parent</artifactId>
	<packaging>pom</packaging>
	<name>OSEE X Master - Parent (Incubation)</name>
	<version>0.10.0-SNAPSHOT</version>

	<modules>
		<module>../../plugins/org.eclipse.osee.x.core.parent</module>
		<module>../../plugins/org.eclipse.osee.orcs.parent</module>
		<module>../../plugins/org.eclipse.osee.x.server.parent</module>
	</modules>

	<properties>
		<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
		<jacoco-version>0.5.3.201107060350</jacoco-version>
	</properties>

	<profiles>
		<profile>
			<id>sonar</id>
			<activation>
				<activeByDefault>true</activeByDefault>
			</activation>
			<properties>
				<sonar.dynamicAnalysis>reuseReports</sonar.dynamicAnalysis>
				<sonar.core.codeCoveragePlugin>jacoco</sonar.core.codeCoveragePlugin>

				<!-- Sonar Server -->
				<sonar.jdbc.url>jdbc:postgresql://msa-linux-201.msc.az.boeing.com:5432/sonar</sonar.jdbc.url>
				<sonar.jdbc.driverClassName>org.postgresql.Driver</sonar.jdbc.driverClassName>
				<sonar.jdbc.username>sonar</sonar.jdbc.username>
				<sonar.jdbc.password>sonar</sonar.jdbc.password>
				<sonar.host.url>http://msa-linux-201.msc.az.boeing.com:9000/sonar</sonar.host.url>
			</properties>
		</profile>
	</profiles>
	
</project>

Back to the top