-
Notifications
You must be signed in to change notification settings - Fork 3
/
pom.xml
87 lines (81 loc) · 3.13 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
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
<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>nl.hypothermic</groupId>
<artifactId>foscamlib</artifactId>
<version>1.08-RELEASE</version>
<name>FoscamAPI</name>
<url>https://github.com/hypothermic/foscamapi</url>
<description>Java Library for Foscam IP camera's.
See LICENSE.txt for license.
See README.md for legal disclaimer.</description>
<licenses>
<license>
<name>MIT License</name>
<url>http://www.opensource.org/licenses/mit-license.php</url>
<!-- Note: also availible here: "https://github.com/hypothermic/FoscamAPI/blob/master/LICENSE.txt", or in the project root. -->
</license>
</licenses>
<developers>
<developer>
<name>hypothermic</name>
<email>[email protected]</email>
<url>https://www.github.com/hypothermic/</url>
<organization>Hypothermic Services</organization>
<organizationUrl>https://www.hypothermic.nl</organizationUrl>
<roles>
<role>Architect</role>
<role>Developer</role>
</roles>
<timezone>Europe/Amsterdam</timezone>
<properties>
<picUrl>https://www.hypothermic.nl/resources/logo.png</picUrl>
</properties>
</developer>
</developers>
<scm>
<connection>scm:git:git://github.com/hypothermic/foscamapi.git</connection>
<developerConnection>scm:git:ssh://github.com:hypothermic/foscamapi.git</developerConnection>
<url>http://github.com/hypothermic/foscamapi/tree/master</url>
</scm>
<properties>
<maven.compiler.source>1.6</maven.compiler.source>
<maven.compiler.target>1.6</maven.compiler.target>
<github.global.server>github</github.global.server>
<github.global.userName>hypothermic</github.global.userName>
<github.global.password>${env.githubpass}</github.global.password>
</properties>
<build>
<plugins>
<plugin>
<artifactId>maven-deploy-plugin</artifactId>
<version>2.8.1</version>
<configuration>
<altDeploymentRepository>internal.repo::default::file://${project.build.directory}/mvn-repo</altDeploymentRepository>
</configuration>
</plugin>
<plugin>
<groupId>com.github.github</groupId>
<artifactId>site-maven-plugin</artifactId>
<version>0.11</version>
<configuration>
<message>Maven artifacts for ${project.version}</message>
<noJekyll>true</noJekyll>
<outputDirectory>${project.build.directory}/mvn-repo</outputDirectory>
<branch>refs/heads/mvn-repo</branch>
<includes><include>**/*</include></includes>
<repositoryName>foscamapi</repositoryName>
<repositoryOwner>hypothermic</repositoryOwner>
<merge>true</merge>
</configuration>
<executions>
<execution>
<goals>
<goal>site</goal>
</goals>
<phase>deploy</phase>
</execution>
</executions>
</plugin>
</plugins>
</build>
</project>