-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpom.xml
executable file
·56 lines (47 loc) · 1.82 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
<?xml version="1.0" encoding="UTF-8"?>
<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>
<parent>
<groupId>de.bildschirmarbeiter.application</groupId>
<artifactId>application-parent</artifactId>
<version>4</version>
<relativePath />
</parent>
<artifactId>de.bildschirmarbeiter.application.message</artifactId>
<version>0.0.4-SNAPSHOT</version>
<name>Bildschirmarbeiter Application Message</name>
<description>${project.name}</description>
<url>https://github.com/bildschirmarbeiter/de.bildschirmarbeiter.application.message</url>
<scm>
<connection>scm:git:git://github.com/bildschirmarbeiter/de.bildschirmarbeiter.application.message.git</connection>
<developerConnection>scm:git:[email protected]:bildschirmarbeiter/de.bildschirmarbeiter.application.message.git</developerConnection>
<url>https://github.com/bildschirmarbeiter/de.bildschirmarbeiter.application.message/tree/master</url>
<tag>HEAD</tag>
</scm>
<build>
<plugins>
<plugin>
<groupId>biz.aQute.bnd</groupId>
<artifactId>bnd-maven-plugin</artifactId>
</plugin>
<plugin>
<groupId>biz.aQute.bnd</groupId>
<artifactId>bnd-baseline-maven-plugin</artifactId>
</plugin>
</plugins>
</build>
<dependencies>
<!-- OSGi -->
<dependency>
<groupId>org.osgi</groupId>
<artifactId>org.osgi.annotation.versioning</artifactId>
<scope>provided</scope>
</dependency>
<!-- nullability -->
<dependency>
<groupId>org.jetbrains</groupId>
<artifactId>annotations</artifactId>
<scope>provided</scope>
</dependency>
</dependencies>
</project>