-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpom.xml
More file actions
89 lines (80 loc) · 2.74 KB
/
pom.xml
File metadata and controls
89 lines (80 loc) · 2.74 KB
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
<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.corpus-tools</groupId>
<artifactId>pepper-parentModule</artifactId>
<version>3.6.1</version>
</parent>
<artifactId>pepperModules-SpreadsheetModules</artifactId>
<name>${project.groupId}.${project.artifactId}</name>
<version>0.3.1-SNAPSHOT</version>
<packaging>bundle</packaging>
<url>https://github.com/korpling/pepperModules-SpreadsheetModules</url>
<issueManagement>
<system>GitHub</system>
<url>https://github.com/korpling/pepperModules-SpreadsheetModules/issues</url>
</issueManagement>
<inceptionYear>2010</inceptionYear>
<organization>
<name>Humboldt-Universität zu Berlin</name>
</organization>
<scm>
<developerConnection>
scm:git:git@github.com:korpling/pepperModules-SpreadsheetModules.git</developerConnection>
<url>
scm:git:https://github.com/korpling/pepperModules-SpreadsheetModules.git</url>
<tag>HEAD</tag>
</scm>
<properties>
<poi.version>5.2.3</poi.version>
</properties>
<dependencies>
<dependency>
<groupId>org.apache.servicemix.bundles</groupId>
<artifactId>org.apache.servicemix.bundles.poi</artifactId>
<version>5.2.3_1</version>
</dependency>
<dependency>
<groupId>commons-io</groupId>
<artifactId>commons-io</artifactId>
<version>2.11.0</version>
</dependency>
<dependency>
<groupId>org.apache.logging.log4j</groupId>
<artifactId>log4j-core</artifactId>
<version>2.20.0</version>
</dependency>
<dependency>
<groupId>org.apache.commons</groupId>
<artifactId>commons-compress</artifactId>
<version>1.23.0</version>
</dependency>
</dependencies>
<build>
<plugins>
<plugin>
<groupId>org.apache.felix</groupId>
<artifactId>maven-bundle-plugin</artifactId>
<extensions>true</extensions>
<configuration>
<manifestLocation>${META-INF}</manifestLocation>
<source>${java.version}</source>
<target>${java.version}</target>
<instructions>
<Bundle-Name>${project.artifactId}</Bundle-Name>
<Bundle-SymbolicName>
${project.groupId}.${project.artifactId};singleton:=true</Bundle-SymbolicName>
<Bundle-Version>${project.version}</Bundle-Version>
<Bundle-RequiredExecutionEnvironment>
JavaSE-${java.version}</Bundle-RequiredExecutionEnvironment>
<Service-Component>${allServiceComponents}</Service-Component>
<Bundle-ClassPath>.,{maven-dependencies}</Bundle-ClassPath>
<Include-Resource>{maven-resources}, LICENSE, NOTICE</Include-Resource>
</instructions>
</configuration>
</plugin>
</plugins>
</build>
</project>