-
Notifications
You must be signed in to change notification settings - Fork 115
/
pom.xml
60 lines (55 loc) · 2.11 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>
<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
</properties>
<parent>
<groupId>io.humble</groupId>
<artifactId>humble-video-parent</artifactId>
<version>0.3.0</version>
<relativePath>./humble-video-parent/pom.xml</relativePath>
</parent>
<artifactId>humble-video-superproject</artifactId>
<packaging>pom</packaging>
<name>humble-video-superproject</name>
<url>http://humble.io</url>
<scm>
<url>https://github.com/artclarke/humble-video</url>
<connection>scm:git:git://github.com/artclarke/humble-video.git</connection>
</scm>
<profiles>
<profile>
<id>build</id>
<!-- The build profile generates all the native code necessary for this platform,
and takes a very long time to run -->
<modules>
<module>humble-video-parent</module>
<module>humble-video-captive</module>
<module>humble-video-native</module>
<module>humble-video-noarch</module>
<module>humble-video-test</module>
</modules>
<activation>
<!-- activate when a file is missing, which should be always. This
allows this profile to be activated without user input, but
also lets me turn it off -->
<file>
<missing>target/file-is-never-generated</missing>
</file>
</activation>
</profile>
<profile>
<id>deploy</id>
<!-- The deploy profile assumes all assets have been built for all
platforms into humble-video-stage, and then runs through all
of them to deploy to Maven Central -->
<modules>
<module>humble-video-parent</module>
<module>humble-video-stage</module>
<module>humble-video-noarch</module>
<module>humble-video-all</module>
<module>humble-video-demos</module>
</modules>
</profile>
</profiles>
</project>