|
1 | | -<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/maven-v4_0_0.xsd"> |
2 | | - <modelVersion>4.0.0</modelVersion> |
3 | | - <artifactId>slice-core-api</artifactId> |
4 | | - <parent> |
5 | | - <groupId>com.cognifide.slice</groupId> |
6 | | - <artifactId>slice-parent</artifactId> |
7 | | - <version>4.5.1-SNAPSHOT</version> |
8 | | - </parent> |
9 | | - <name>Slice - Core API</name> |
10 | | - <description>Slice Core API</description> |
11 | | - <packaging>bundle</packaging> |
12 | | - <properties> |
13 | | - <site.root>${project.parent.build.sourceDirectory}/../resources</site.root> |
14 | | - </properties> |
15 | | - |
16 | | - <build> |
17 | | - <plugins> |
18 | | - <plugin> |
19 | | - <groupId>org.apache.sling</groupId> |
20 | | - <artifactId>maven-sling-plugin</artifactId> |
21 | | - </plugin> |
22 | | - <plugin> |
23 | | - <groupId>org.apache.felix</groupId> |
24 | | - <artifactId>maven-scr-plugin</artifactId> |
25 | | - </plugin> |
26 | | - <plugin> |
27 | | - <groupId>org.apache.felix</groupId> |
28 | | - <artifactId>maven-bundle-plugin</artifactId> |
29 | | - <configuration> |
30 | | - <instructions> |
31 | | - <Export-Package> |
32 | | - com.cognifide.slice.api*, |
33 | | - com.cognifide.slice.util*, |
34 | | - </Export-Package> |
35 | | - </instructions> |
36 | | - </configuration> |
37 | | - </plugin> |
38 | | - <plugin> |
39 | | - <groupId>com.mycila</groupId> |
40 | | - <artifactId>license-maven-plugin</artifactId> |
41 | | - <configuration> |
42 | | - <header>${project.parent.basedir}/license-template.txt</header> |
43 | | - <headerDefinitions> |
44 | | - <header>${project.parent.basedir}/license-header-definition.txt</header> |
45 | | - </headerDefinitions> |
46 | | - </configuration> |
47 | | - </plugin> |
48 | | - </plugins> |
49 | | - </build> |
50 | | - |
51 | | - <dependencies> |
52 | | - <!-- Slice --> |
53 | | - <dependency> |
54 | | - <groupId>com.cognifide.slice</groupId> |
55 | | - <artifactId>slice-mapper-api</artifactId> |
56 | | - <version>4.5.1-SNAPSHOT</version> |
57 | | - </dependency> |
58 | | - |
59 | | - <!-- Guice --> |
60 | | - <dependency> |
61 | | - <groupId>com.google.inject</groupId> |
62 | | - <artifactId>guice</artifactId> |
63 | | - </dependency> |
64 | | - <dependency> |
65 | | - <groupId>org.ops4j</groupId> |
66 | | - <artifactId>peaberry</artifactId> |
67 | | - </dependency> |
68 | | - |
69 | | - <!-- OSGi --> |
70 | | - <dependency> |
71 | | - <groupId>org.osgi</groupId> |
72 | | - <artifactId>org.osgi.core</artifactId> |
73 | | - </dependency> |
74 | | - |
75 | | - <!-- javax --> |
76 | | - <dependency> |
77 | | - <groupId>javax.servlet</groupId> |
78 | | - <artifactId>jsp-api</artifactId> |
79 | | - </dependency> |
80 | | - <dependency> |
81 | | - <groupId>javax.servlet</groupId> |
82 | | - <artifactId>servlet-api</artifactId> |
83 | | - </dependency> |
84 | | - |
85 | | - <!-- Apache felix scr annotations--> |
86 | | - <dependency> |
87 | | - <groupId>org.apache.felix</groupId> |
88 | | - <artifactId>org.apache.felix.scr.annotations</artifactId> |
89 | | - </dependency> |
90 | | - |
91 | | - <!-- Logging --> |
92 | | - <dependency> |
93 | | - <groupId>org.slf4j</groupId> |
94 | | - <artifactId>slf4j-api</artifactId> |
95 | | - </dependency> |
96 | | - |
97 | | - <dependency> |
98 | | - <groupId>junit</groupId> |
99 | | - <artifactId>junit</artifactId> |
100 | | - </dependency> |
101 | | - </dependencies> |
102 | | - |
103 | | -</project> |
| 1 | +<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/maven-v4_0_0.xsd"> |
| 2 | + <modelVersion>4.0.0</modelVersion> |
| 3 | + <artifactId>slice-core-api</artifactId> |
| 4 | + <parent> |
| 5 | + <groupId>com.cognifide.slice</groupId> |
| 6 | + <artifactId>slice-parent</artifactId> |
| 7 | + <version>4.5.1</version> |
| 8 | + </parent> |
| 9 | + <name>Slice - Core API</name> |
| 10 | + <description>Slice Core API</description> |
| 11 | + <packaging>bundle</packaging> |
| 12 | + <properties> |
| 13 | + <site.root>${project.parent.build.sourceDirectory}/../resources</site.root> |
| 14 | + </properties> |
| 15 | + |
| 16 | + <build> |
| 17 | + <plugins> |
| 18 | + <plugin> |
| 19 | + <groupId>org.apache.sling</groupId> |
| 20 | + <artifactId>maven-sling-plugin</artifactId> |
| 21 | + </plugin> |
| 22 | + <plugin> |
| 23 | + <groupId>org.apache.felix</groupId> |
| 24 | + <artifactId>maven-scr-plugin</artifactId> |
| 25 | + </plugin> |
| 26 | + <plugin> |
| 27 | + <groupId>org.apache.felix</groupId> |
| 28 | + <artifactId>maven-bundle-plugin</artifactId> |
| 29 | + <configuration> |
| 30 | + <instructions> |
| 31 | + <Export-Package> |
| 32 | + com.cognifide.slice.api*, |
| 33 | + com.cognifide.slice.util*, |
| 34 | + </Export-Package> |
| 35 | + </instructions> |
| 36 | + </configuration> |
| 37 | + </plugin> |
| 38 | + <plugin> |
| 39 | + <groupId>com.mycila</groupId> |
| 40 | + <artifactId>license-maven-plugin</artifactId> |
| 41 | + <configuration> |
| 42 | + <header>${project.parent.basedir}/license-template.txt</header> |
| 43 | + <headerDefinitions> |
| 44 | + <header>${project.parent.basedir}/license-header-definition.txt</header> |
| 45 | + </headerDefinitions> |
| 46 | + </configuration> |
| 47 | + </plugin> |
| 48 | + </plugins> |
| 49 | + </build> |
| 50 | + |
| 51 | + <dependencies> |
| 52 | + <!-- Slice --> |
| 53 | + <dependency> |
| 54 | + <groupId>com.cognifide.slice</groupId> |
| 55 | + <artifactId>slice-mapper-api</artifactId> |
| 56 | + <version>4.5.1</version> |
| 57 | + </dependency> |
| 58 | + |
| 59 | + <!-- Guice --> |
| 60 | + <dependency> |
| 61 | + <groupId>com.google.inject</groupId> |
| 62 | + <artifactId>guice</artifactId> |
| 63 | + </dependency> |
| 64 | + <dependency> |
| 65 | + <groupId>org.ops4j</groupId> |
| 66 | + <artifactId>peaberry</artifactId> |
| 67 | + </dependency> |
| 68 | + |
| 69 | + <!-- OSGi --> |
| 70 | + <dependency> |
| 71 | + <groupId>org.osgi</groupId> |
| 72 | + <artifactId>org.osgi.core</artifactId> |
| 73 | + </dependency> |
| 74 | + |
| 75 | + <!-- javax --> |
| 76 | + <dependency> |
| 77 | + <groupId>javax.servlet</groupId> |
| 78 | + <artifactId>jsp-api</artifactId> |
| 79 | + </dependency> |
| 80 | + <dependency> |
| 81 | + <groupId>javax.servlet</groupId> |
| 82 | + <artifactId>servlet-api</artifactId> |
| 83 | + </dependency> |
| 84 | + |
| 85 | + <!-- Apache felix scr annotations--> |
| 86 | + <dependency> |
| 87 | + <groupId>org.apache.felix</groupId> |
| 88 | + <artifactId>org.apache.felix.scr.annotations</artifactId> |
| 89 | + </dependency> |
| 90 | + |
| 91 | + <!-- Logging --> |
| 92 | + <dependency> |
| 93 | + <groupId>org.slf4j</groupId> |
| 94 | + <artifactId>slf4j-api</artifactId> |
| 95 | + </dependency> |
| 96 | + |
| 97 | + <dependency> |
| 98 | + <groupId>junit</groupId> |
| 99 | + <artifactId>junit</artifactId> |
| 100 | + </dependency> |
| 101 | + </dependencies> |
| 102 | + |
| 103 | +</project> |
0 commit comments