-
Notifications
You must be signed in to change notification settings - Fork 0
/
pom.xml
107 lines (95 loc) · 2.83 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
105
106
107
<?xml version="1.0" encoding="UTF-8"?>
<project xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://maven.apache.org/POM/4.0.0" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
<!--
| put company details here
<organization>
<name>...</name>
<url>http://...</url>
</organization>
-->
<!--
| put license details here
<licenses>
<license>
<name>...</name>
<url>http://...</url>
<comments>
</comments>
</license>
</licenses>
-->
<modelVersion>4.0.0</modelVersion>
<groupId>org.microx.archiftp</groupId>
<artifactId>archiftp</artifactId>
<version>2.0.0</version>
<name>org.microx.archiftp (OSGi project)</name>
<!--
| describe your project here
-->
<description>Generated using Pax-Construct</description>
<properties>
<!--
| some example OSGi runtime properties
-->
<org.osgi.service.http.port>8080</org.osgi.service.http.port>
<org.osgi.service.http.port.secure>8443</org.osgi.service.http.port.secure>
</properties>
<packaging>pom</packaging>
<modules>
<module>poms</module>
<module>provision</module>
<module>archiftp.logpage</module>
<module>archiftp.ftp</module>
<module>archiftp.archive</module>
<module>archiftp.monitor</module>
<module>archiftp.historywriter</module>
</modules>
<build>
<plugins>
<plugin>
<groupId>org.ops4j</groupId>
<artifactId>maven-pax-plugin</artifactId>
<version>1.4</version>
<configuration>
<!--
| some example Pax-Runner settings
-->
<provision>
<param>--platform=felix</param>
</provision>
</configuration>
<executions>
<!--
| uncomment to auto-generate IDE files
<execution>
<id>ide-support</id>
<goals>
<goal>eclipse</goal>
</goals>
</execution>
-->
</executions>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<configuration>
<source>1.4</source>
<target>1.4</target>
</configuration>
</plugin>
</plugins>
</build>
<repositories>
<repository>
<id>com.springsource.repository.bundles.release</id>
<name>SpringSource Enterprise Bundle Repository - SpringSource Bundle Releases</name>
<url>http://repository.springsource.com/maven/bundles/release</url>
</repository>
<repository>
<id>com.springsource.repository.bundles.external</id>
<name>SpringSource Enterprise Bundle Repository - External Bundle Releases</name>
<url>http://repository.springsource.com/maven/bundles/external</url>
</repository>
</repositories>
</project>