forked from gx9702/FogLight
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpom.xml
63 lines (50 loc) · 1.61 KB
/
pom.xml
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
<?xml version="1.0" encoding="UTF-8"?>
<project>
<modelVersion>4.0.0</modelVersion>
<groupId>com.ociweb</groupId>
<artifactId>open-edge-foglight</artifactId>
<version>1.0.0-SNAPSHOT</version>
<packaging>pom</packaging>
<modules>
<module>foglight</module>
<module>foglighter</module>
<module>apidemo</module>
<module>examples</module>
<module>grove</module>
</modules>
<reporting>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-surefire-report-plugin</artifactId>
<version>2.22.0</version>
</plugin>
<plugin>
<groupId>org.jacoco</groupId>
<artifactId>jacoco-maven-plugin</artifactId>
<version>0.8.2-SNAPSHOT</version>
<reportSets>
<reportSet>
<reports>
<!-- select non-aggregate reports -->
<report>report</report>
</reports>
</reportSet>
</reportSets>
</plugin>
</plugins>
</reporting>
</project>
<!--
need to pull the latest?
setup workspace:
put this file in the root of your git folder
clone the following into your git folder
git clone https://github.com/oci-pronghorn/foglight.git
git clone https://github.com/oci-pronghorn/foglighter.git
git clone https://github.com/oci-pronghorn/foglight-api.git
git clone https://github.com/oci-pronghorn/foglight-grove.git
tobuild:
mvn -offline -T 1C -f open-edge-pom.xml install
mvn -f open-edge-pom.xml install
-->