This repository has been archived by the owner on Apr 14, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 7
/
pom.xml
60 lines (60 loc) · 2.05 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
<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>com.github.mob41</groupId>
<artifactId>osumer</artifactId>
<version>${global.version}</version>
<packaging>pom</packaging>
<modules>
<module>osumer-ui</module>
<module>osumer-daemon</module>
<module>osumer-lib</module>
<module>osumer-installer</module>
<module>osumer-launcher</module>
<module>osumer-debugdump</module>
<module>osums-api</module>
<module>osums-server</module>
</modules>
<properties>
<global.generation>2.0.0</global.generation>
<global.branch>SNAPSHOT</global.branch>
<global.build>11</global.build>
<global.version>${global.generation}-${global.branch}</global.version>
<metrics.version>3.1.0</metrics.version>
<maven.compiler.source>1.8</maven.compiler.source>
<maven.compiler.target>1.8</maven.compiler.target>
</properties>
<!--<build>
<plugins>
<plugin>
<groupId>com.googlecode.cmake-maven-project</groupId>
<artifactId>cmake-maven-plugin</artifactId>
<version>3.7.2-b1</version>
<executions>
<execution>
<id>cmake-generate</id>
<goals>
<goal>generate</goal>
</goals>
<configuration>
<sourcePath>.</sourcePath>
<targetPath>.</targetPath>
<generator>Ninja</generator>
<classifier>windows-x86_32</classifier>
</configuration>
</execution>
<execution>
<id>cmake-compile</id>
<goals>
<goal>compile</goal>
</goals>
<configuration>
<config>x86</config>
<projectDirectory>osumer-native</projectDirectory>
<classifier>windows-x86_32</classifier>
</configuration>
</execution>
</executions>
</plugin>
</plugins>
</build>-->
</project>