-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathpom.xml
54 lines (48 loc) · 1.93 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
<?xml version="1.0" encoding="UTF-8"?>
<!-- This POM file is only used to describe the package for deployment
on the Central Repository. It cannot (and should not) be used to build
the project. Please use the Ant script for this. -->
<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>
<!-- Project coordinates -->
<groupId>io.github.liflab</groupId>
<artifactId>beepbeep-3-palettes</artifactId>
<version>0.8</version>
<packaging>jar</packaging>
<!-- Project description -->
<name>BeepBeep 3 Palette Bundle</name>
<description>A set of modular extensions for the BeepBeep 3 event stream processing library.</description>
<url>https://liflab.github.io/${project.artifactId}</url>
<!-- License information -->
<licenses>
<license>
<name>GNU Lesser General Public License (LGPL), Version 3.0</name>
<url>https://www.gnu.org/licenses/lgpl-3.0.en.html</url>
</license>
</licenses>
<!-- Contact information -->
<developers>
<developer>
<name>Sylvain Hallé</name>
<email>[email protected]</email>
<organization>Université du Québec à Chicoutimi</organization>
<organizationUrl>https://www.uqac.ca</organizationUrl>
</developer>
</developers>
<!-- Version control -->
<scm>
<connection>scm:git:git://github.com/liflab/${project.artifactId}.git</connection>
<developerConnection>scm:git:ssh://github.com:liflab/${project.artifactId}.git</developerConnection>
<url>http://github.com/liflab/${project.artifactId}/tree/master</url>
</scm>
<!-- Dependencies -->
<dependencies>
<dependency>
<groupId>io.github.liflab</groupId>
<artifactId>beepbeep-3</artifactId>
<version>0.11.2</version>
</dependency>
</dependencies>
</project>