root/kraken-filter/pom.xml @ 306

Revision 306, 1.8 KB (checked in by xeraph, 15 months ago)

kraken-filter 1.0.0 release.
- refactored a lot of codes in consistent way.
- javadoc documentation added.

Line 
1<?xml version="1.0"?>
2<project>
3        <parent>
4                <artifactId>build</artifactId>
5                <groupId>org.krakenapps</groupId>
6                <version>1.0.0</version>
7        </parent>
8        <modelVersion>4.0.0</modelVersion>
9        <groupId>org.krakenapps</groupId>
10        <artifactId>kraken-filter</artifactId>
11        <packaging>bundle</packaging>
12        <name>Kraken Filter</name>
13        <version>1.0.0</version>
14        <build>
15                <plugins>
16                        <plugin>
17                                <groupId>org.apache.felix</groupId>
18                                <artifactId>maven-bundle-plugin</artifactId>
19                                <version>1.4.0</version>
20                                <extensions>true</extensions>
21                                <configuration>
22                                        <instructions>
23                                                <Bundle-SymbolicName>org.krakenapps.filter
24                                                </Bundle-SymbolicName>
25                                                <Export-Package>org.krakenapps.filter;version=1.0.0,
26                                                        org.krakenapps.filter.exception;version=1.0.0</Export-Package>
27                                                <Private-Package>org.krakenapps.filter.impl;version=1.0.0
28                                                </Private-Package>
29                                                <Import-Package>!org.junit,org.hsqldb,*
30                                                </Import-Package>
31                                        </instructions>
32                                </configuration>
33                        </plugin>
34                        <plugin>
35                                <groupId>org.apache.felix</groupId>
36                                <artifactId>maven-ipojo-plugin</artifactId>
37                                <version>1.2.0</version>
38                                <executions>
39                                        <execution>
40                                                <goals>
41                                                        <goal>ipojo-bundle</goal>
42                                                </goals>
43                                        </execution>
44                                </executions>
45                        </plugin>
46                </plugins>
47        </build>
48        <dependencies>
49                <dependency>
50                        <groupId>org.slf4j</groupId>
51                        <artifactId>slf4j-api</artifactId>
52                        <version>1.5.6</version>
53                </dependency>
54                <dependency>
55                        <groupId>org.apache.felix</groupId>
56                        <artifactId>org.osgi.core</artifactId>
57                        <version>1.2.0</version>
58                </dependency>
59                <dependency>
60                        <groupId>org.apache.felix</groupId>
61                        <artifactId>org.apache.felix.ipojo</artifactId>
62                        <version>1.2.0</version>
63                </dependency>
64                <dependency>
65                        <groupId>org.krakenapps</groupId>
66                        <artifactId>kraken-api</artifactId>
67                        <version>1.0.0</version>
68                </dependency>
69        </dependencies>
70</project>
Note: See TracBrowser for help on using the browser.