-
Notifications
You must be signed in to change notification settings - Fork 0
/
pom.xml
50 lines (43 loc) · 1.76 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
<?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>
<groupId>org.ical4j</groupId>
<artifactId>ical4j-karaf-features</artifactId>
<version>0.1.0-SNAPSHOT</version>
<packaging>feature</packaging>
<name>iCal4j - Karaf Features</name>
<description>Apache Karaf Features for iCal4j</description>
<scm>
<connection>scm:git:[email protected]:ical4j/ical4j-karaf-features.git</connection>
<developerConnection>scm:git:[email protected]:ical4j/ical4j-karaf-features.git</developerConnection>
<url>https://github.com/ical4j/ical4j-karaf-features</url>
</scm>
<build>
<plugins>
<plugin>
<groupId>org.apache.karaf.tooling</groupId>
<artifactId>karaf-maven-plugin</artifactId>
<version>4.4.0</version>
<extensions>true</extensions>
<executions>
<execution>
<id>generate-features-file</id>
<goals>
<goal>features-generate-descriptor</goal>
</goals>
</execution>
</executions>
</plugin>
</plugins>
</build>
<properties>
<ical4j.version>3.2.2</ical4j.version>
<ical4j-vcard.version>3.2.2</ical4j-vcard.version>
<ical4j-serializer.version>3.2.2</ical4j-serializer.version>
<ical4j-validator.version>3.2.2</ical4j-validator.version>
<ical4j-freebusy.version>3.2.2</ical4j-freebusy.version>
<ical4j-query.version>3.2.2</ical4j-query.version>
<ical4j-connector.version>3.2.2</ical4j-connector.version>
<ical4j-integration.version>3.2.2</ical4j-integration.version>
</properties>
</project>