-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpom.xml
104 lines (91 loc) · 3.61 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
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
<?xml version="1.0" encoding="UTF-8"?>
<!--
COMMON DEVELOPMENT AND DISTRIBUTION LICENSE (CDDL) Notice
The contents of this file are subject to the COMMON DEVELOPMENT AND DISTRIBUTION LICENSE (CDDL)
Version 1.0 (the "License"); you may not use this file except in
compliance with the License. A copy of the License is available at
http://www.opensource.org/licenses/cddl1.txt
The Original Code is Drombler.org. The Initial Developer of the
Original Code is Florian Brunner (Sourceforge.net user: puce).
Copyright 2012 Drombler.org. All Rights Reserved.
Contributor(s): .
-->
<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>org.drombler</groupId>
<artifactId>drombler-oss-parent</artifactId>
<version>4.0-SNAPSHOT</version>
<relativePath />
</parent>
<groupId>org.drombler.iso9660fs</groupId>
<artifactId>drombler-iso9660fs</artifactId>
<version>0.5-SNAPSHOT</version>
<packaging>bundle</packaging>
<name>Drombler ISO 9660</name>
<description>NIO.2 File API provider for ISO 9660 files.</description>
<inceptionYear>2014</inceptionYear>
<!-- required for Javadoc (apidocs) linking -->
<url>https://www.drombler.org/drombler-commons/${project.version}/docs/site</url>
<scm>
<connection>${scm.connection}</connection>
<developerConnection>${scm.developerConnection}</developerConnection>
<url>${scm.url}</url>
<tag>HEAD</tag>
</scm>
<distributionManagement>
<site>
<id>github</id>
<url>${distributionManagement.parent.url}/${project.artifactId}/</url>
</site>
</distributionManagement>
<properties>
<scm.connection>${scm.parent.connection}</scm.connection>
<scm.developerConnection>${scm.parent.developerConnection}</scm.developerConnection>
<scm.url>${scm.parent.url}</scm.url>
</properties>
<!-- Not inherited!?? -->
<prerequisites>
<maven>${maven.version}</maven>
</prerequisites>
<build>
<pluginManagement>
<plugins>
<plugin>
<groupId>com.amashchenko.maven.plugin</groupId>
<artifactId>gitflow-maven-plugin</artifactId>
<version>1.14.0</version>
<configuration>
<gitFlowConfig>
<developmentBranch>master</developmentBranch>
<versionTagPrefix>release-</versionTagPrefix>
</gitFlowConfig>
</configuration>
</plugin>
</plugins>
</pluginManagement>
<plugins>
<plugin>
<groupId>org.apache.felix</groupId>
<artifactId>maven-bundle-plugin</artifactId>
<extensions>true</extensions>
</plugin>
</plugins>
</build>
<dependencies>
<!-- <dependency>
<groupId>org.slf4j</groupId>
<artifactId>slf4j-api</artifactId>
</dependency>-->
<dependency>
<groupId>org.junit.jupiter</groupId>
<artifactId>junit-jupiter-api</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.junit.jupiter</groupId>
<artifactId>junit-jupiter-engine</artifactId>
<scope>test</scope>
</dependency>
</dependencies>
</project>