]> gerrit.simantics Code Review - simantics/platform.git/blob - releng/org.simantics.sdk.build.p2.site/pom.xml
Merge commit 'b3da313'
[simantics/platform.git] / releng / org.simantics.sdk.build.p2.site / pom.xml
1 <?xml version="1.0" encoding="UTF-8"?>
2 <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001 XMLSchema-instance"
3         xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
4         <modelVersion>4.0.0</modelVersion>
5
6     <groupId>org.simantics</groupId>
7     <artifactId>org.simantics.sdk.build.p2.site</artifactId>
8     <packaging>pom</packaging>
9     <version>1.25.0</version>
10
11     <properties>
12         <itext.version.actual>2.1.7.b1</itext.version.actual>
13         <lucene.version>4.9.0</lucene.version>
14         <lucene.version.actual>4.9.0.b0003</lucene.version.actual>
15         <lucene.prefix>org.apache.lucene4</lucene.prefix>
16     </properties>
17
18
19     <repositories>
20         <!--
21         <repository>
22             <id>project-specific-deps</id>
23             <name>project-specific-deps</name>
24             <url>file:///${basedir}/repo</url>
25         </repository>
26         -->
27     </repositories>
28
29     <build>
30         <plugins>
31             <plugin>
32                 <groupId>org.eclipse.tycho.extras</groupId>
33                 <artifactId>tycho-p2-extras-plugin</artifactId>
34                 <version>0.25.0</version>
35             </plugin>
36             <plugin>
37                 <groupId>org.reficio</groupId>
38                 <artifactId>p2-maven-plugin</artifactId>
39                 <version>1.2.0-SNAPSHOT</version>
40                 <executions>
41                     <execution>
42                         <id>default-cli</id>
43                         <!-- QUICK-START EXAMPLE -->
44                         <!--
45                         This is the default quick-start configuration.
46
47                         Expected behavior:
48                           - specified dependencies will be fetched
49                           - transitive dependencies will be fetched (no default exclusions)
50                           - jars containing source source code will NOT be fetched
51                           - jars that are NOT OSGi bundles will be "bundled" using bnd tool,
52                             if you specify instructions for these jars they will be APPLIED
53                           - jars that are OSGi bundles will be simply included
54                             if you specify instructions for these jars they will be IGNORED (see <override> option)
55                           - p2 site will be generated
56
57                         How the instructions works:
58                           - instructions are applied only to the root artifact that you specify!
59                           - instructions are not applied to the TRANSITIVE dependencies!
60                           - transitive dependencies are never overridden (see <override> option)
61                           - transitive dependencies are bundled using the default instructions:
62                               <instructions>
63                                   <Import-Package>*;resolution:=optional</Import-Package>
64                                   <Export-Package>*</Export-Package>
65                               </instructions>
66                           - other instructions, such as, Bundle-SymbolicName, Bundle-Name, Bundle-Version, etc.
67                             are calculated according to the following rules:
68                             http://felix.apache.org/site/apache-felix-maven-bundle-plugin-bnd.html
69                           - if you specify any instructions they will be applied only if
70                             the jar is not already an OSGi bundle - otherwise you have to use the override
71                             option - please see the /examples/override/pom.xml example
72
73                         The following definition of an artifact:
74                             <artifact>
75                                 <id>commons-io:commons-io:2.1</id>
76                             </artifact>
77
78                         is an equivalent of the following definition:
79                             <artifact>
80                                 <id>commons-io:commons-io:2.1</id>
81                                 <transitive>true</transitive>
82                                 <source>false</source>
83                                 <override>false</override>
84                                 <instructions>
85                                     <Import-Package>*;resolution:=optional</Import-Package>
86                                     <Export-Package>*</Export-Package>
87                                 </instructions>
88                                 <excludes/>
89                             </artifact>
90
91                         To run the example please invoke: mvn p2:site
92                         -->
93                         <configuration>
94                             <artifacts>
95                                 <artifact>
96                                     <id>org.antlr:antlr-runtime:3.5.2</id>
97                                     <source>true</source>
98                                 </artifact>
99                                 <artifact>
100                                     <id>org.apache.poi:poi:3.14</id>
101                                     <source>true</source>
102                                 </artifact>
103                                 <artifact>
104                                     <id>org.apache.poi:poi-ooxml:3.14</id>
105                                     <source>true</source>
106                                 </artifact>
107                                 <artifact>
108                                     <id>org.apache.lucene:lucene-core:${lucene.version}</id>
109                                     <source>true</source>
110                                     <instructions>
111                                         <Bundle-SymbolicName>${lucene.prefix}.core</Bundle-SymbolicName>
112                                         <Bundle-Version>${lucene.version.actual}</Bundle-Version>
113                                         <Export-Package>*;version="${lucene.version}"</Export-Package>
114                                     </instructions>
115                                 </artifact>
116                                 <artifact>
117                                     <id>org.apache.lucene:lucene-queries:${lucene.version}</id>
118                                     <source>true</source>
119                                     <instructions>
120                                         <Bundle-SymbolicName>${lucene.prefix}.queries</Bundle-SymbolicName>
121                                         <Bundle-Version>${lucene.version.actual}</Bundle-Version>
122                                         <Require-Bundle>${lucene.prefix}.core;bundle-version="${lucene.version}"</Require-Bundle>
123                                         <Export-Package>*;version="${lucene.version}"</Export-Package>
124                                         <Import-Package>!org.apache.lucene.*,*;resolution:=optional</Import-Package>
125                                     </instructions>
126                                 </artifact>
127                                 <artifact>
128                                     <id>org.apache.lucene:lucene-sandbox:${lucene.version}</id>
129                                     <source>true</source>
130                                     <instructions>
131                                         <Bundle-SymbolicName>${lucene.prefix}.sandbox</Bundle-SymbolicName>
132                                         <Bundle-Version>${lucene.version.actual}</Bundle-Version>
133                                         <Require-Bundle>${lucene.prefix}.core;bundle-version="${lucene.version}"</Require-Bundle>
134                                         <Export-Package>*;version="${lucene.version}"</Export-Package>
135                                         <Import-Package>!org.apache.lucene.*,*;resolution:=optional</Import-Package>
136                                     </instructions>
137                                 </artifact>
138                                 <artifact>
139                                     <id>org.apache.lucene:lucene-analyzers-common:${lucene.version}</id>
140                                     <source>true</source>
141                                     <instructions>
142                                         <Bundle-SymbolicName>${lucene.prefix}.analyzers-common</Bundle-SymbolicName>
143                                         <Bundle-Version>${lucene.version.actual}</Bundle-Version>
144                                         <Require-Bundle>${lucene.prefix}.core;bundle-version="${lucene.version}"</Require-Bundle>
145                                         <Export-Package>*;version="${lucene.version}"</Export-Package>
146                                         <Import-Package>!org.apache.lucene.*,*;resolution:=optional</Import-Package>
147                                     </instructions>
148                                 </artifact>
149                                 <artifact>
150                                     <id>org.apache.lucene:lucene-queryparser:${lucene.version}</id>
151                                     <source>true</source>
152                                     <instructions>
153                                         <Bundle-SymbolicName>${lucene.prefix}.queryparser</Bundle-SymbolicName>
154                                         <Bundle-Version>${lucene.version.actual}</Bundle-Version>
155                                         <Require-Bundle>${lucene.prefix}.core;bundle-version="${lucene.version}",${lucene.prefix}.queries;bundle-version="${lucene.version}",${lucene.prefix}.sandbox;bundle-version="${lucene.version}"</Require-Bundle>
156                                         <Export-Package>*;version="${lucene.version}"</Export-Package>
157                                         <Import-Package>!org.apache.lucene.*,*;resolution:=optional</Import-Package>
158                                     </instructions>
159                                 </artifact>
160                                 <artifact>
161                                     <id>org.jdom:jdom2:2.0.6</id>
162                                     <source>true</source>
163                                     <instructions>
164                                         <Bundle-SymbolicName>org.jdom2</Bundle-SymbolicName>
165                                     </instructions>
166                                 </artifact>
167                                 <artifact>
168                                     <id>org.jfree:jfreechart:1.0.19</id>
169                                     <source>true</source>
170                                     <instructions>
171                                         <Bundle-SymbolicName>org.jfree.jchart</Bundle-SymbolicName>
172                                     </instructions>
173                                 </artifact>
174                                 <!--
175                                 <artifact>
176                                     <id>org.ow2.asm:asm:5.0.4</id>
177                                     <source>true</source>
178                                     <override>true</override>
179                                     <instructions>
180                                         <Bundle-SymbolicName>org.objectweb.asm5</Bundle-SymbolicName>
181                                     </instructions>
182                                 </artifact>
183                                 -->
184                                 <artifact>
185                                     <id>net.sf.supercsv:super-csv:2.4.0</id>
186                                     <source>true</source>
187                                     <override>true</override>
188                                     <instructions>
189                                         <Bundle-SymbolicName>org.supercsv</Bundle-SymbolicName>
190                                     </instructions>
191                                 </artifact>
192                                 <artifact>
193                                     <id>org.ini4j:ini4j:0.5.4</id>
194                                     <source>true</source>
195                                 </artifact>
196                                 <artifact>
197                                     <id>commons-collections:commons-collections:3.2.2</id>
198                                     <source>true</source>
199                                 </artifact>
200                                 <artifact>
201                                     <id>org.apache.commons:commons-compress:1.12</id>
202                                     <source>true</source>
203                                 </artifact>
204                                 <artifact>
205                                     <id>commons-lang:commons-lang:2.6</id>
206                                     <source>true</source>
207                                 </artifact>
208                                 <artifact>
209                                     <id>commons-io:commons-io:1.4</id>
210                                     <source>true</source>
211                                 </artifact>
212                                 <artifact>
213                                     <id>org.apache.pdfbox:pdfbox:2.0.3</id>
214                                     <source>true</source>
215                                 </artifact>
216                                 <artifact>
217                                     <id>org.apache.pdfbox:fontbox:2.0.3</id>
218                                     <source>true</source>
219                                 </artifact>
220                                 <artifact>
221                                     <id>org.apache.pdfbox:xmpbox:2.0.3</id>
222                                     <source>true</source>
223                                 </artifact>
224                                 <artifact>
225                                     <id>log4j:log4j:1.2.17</id>
226                                     <source>true</source>
227                                     <override>true</override>
228                                     <instructions>
229                                         <Bundle-SymbolicName>org.apache.log4j</Bundle-SymbolicName>
230                                     </instructions>
231                                 </artifact>
232                                 <artifact>
233                                     <id>net.sf.ucanaccess:ucanaccess:3.0.6</id>
234                                     <source>true</source>
235                                     <instructions>
236                                         <Bundle-SymbolicName>net.ucanaccess</Bundle-SymbolicName>
237                                     </instructions>
238                                 </artifact>
239                                 <artifact>
240                                     <id>it.unimi.dsi:fastutil:7.0.13</id>
241                                     <source>true</source>
242                                 </artifact>
243                                 <artifact>
244                                     <id>org.eclipse.collections:eclipse-collections-api:7.1.0</id>
245                                     <override>true</override>
246                                     <source>true</source>
247                                     <instructions>
248                                         <Export-Package>org.eclipse.collections.*</Export-Package>
249                                     </instructions>
250                                 </artifact>
251                                 <artifact>
252                                     <id>org.eclipse.collections:eclipse-collections:7.1.0</id>
253                                     <source>true</source>
254                                 </artifact>
255                                 <artifact>
256                                     <id>net.sf.trove4j:trove4j:2.1.0</id>
257                                     <source>true</source>
258                                     <instructions>
259                                         <Bundle-Name>GNU Trove 2</Bundle-Name>
260                                         <Bundle-SymbolicName>gnu.trove2</Bundle-SymbolicName>
261                                     </instructions>
262                                 </artifact>
263                                 <artifact>
264                                     <id>net.sf.trove4j:trove4j:3.0.3</id>
265                                     <source>true</source>
266                                     <instructions>
267                                         <Bundle-Name>GNU Trove 3</Bundle-Name>
268                                         <Bundle-SymbolicName>gnu.trove3</Bundle-SymbolicName>
269                                     </instructions>
270                                 </artifact>
271                                 <artifact>
272                                     <id>org.freemarker:freemarker:2.3.23</id>
273                                     <source>true</source>
274                                     <override>true</override>
275                                     <instructions>
276                                         <Bundle-SymbolicName>freemarker</Bundle-SymbolicName>
277                                     </instructions>
278                                 </artifact>
279                                 <artifact>
280                                     <id>com.lowagie:itext:2.1.7</id>
281                                     <source>true</source>
282                                     <instructions>
283                                         <Bundle-SymbolicName>com.lowagie.text</Bundle-SymbolicName>
284                                         <Bundle-Version>${itext.version.actual}</Bundle-Version>
285                                     </instructions>
286                                 </artifact>
287                                 <artifact>
288                                     <id>javax.vecmath:vecmath:1.5.2</id>
289                                     <transitive>false</transitive>
290                                     <override>true</override>
291                                     <instructions>
292                                         <Export-Package>javax.vecmath</Export-Package>
293                                     </instructions>
294                                 </artifact>
295                                 <artifact>
296                                     <id>org.mozilla:rhino:1.7.7.1</id>
297                                     <source>true</source>
298                                 </artifact>
299                                 <artifact>
300                                     <id>net.java.dev.jna:jna:4.2.2</id>
301                                     <source>true</source>
302                                 </artifact>
303                                 <artifact>
304                                     <id>net.java.dev.jna:jna-platform:4.2.2</id>
305                                     <source>true</source>
306                                 </artifact>
307                                 <artifact>
308                                     <id>com.fasterxml.jackson.core:jackson-core:2.8.2</id>
309                                     <source>true</source>
310                                 </artifact>
311                                 <artifact>
312                                     <id>org.slf4j:slf4j-api:1.7.20</id>
313                                     <source>true</source>
314                                     <override>true</override>
315                                     <instructions>
316                                         <Bundle-Name>SLF4J API Module</Bundle-Name>
317                                         <Bundle-SymbolicName>org.slf4j.api</Bundle-SymbolicName>
318                                     </instructions>
319                                 </artifact>
320                                 <artifact>
321                                     <id>ch.qos.logback:logback-classic:1.1.7</id>
322                                     <source>true</source>
323                                     <override>true</override>
324                                 </artifact>
325                                 <artifact>
326                                     <id>com.koloboke:koloboke-compile:0.5.1</id>
327                                     <source>true</source>
328                                 </artifact>
329                                 <artifact>
330                                     <id>com.koloboke:koloboke-impl-common-jdk8:1.0.0</id>
331                                     <source>true</source>
332                                 </artifact>
333                             </artifacts>
334                         </configuration>
335                     </execution>
336                 </executions>
337             </plugin>
338
339             <plugin>
340                 <groupId>org.mortbay.jetty</groupId>
341                 <artifactId>jetty-maven-plugin</artifactId>
342                 <version>8.1.5.v20120716</version>
343                 <configuration>
344                     <scanIntervalSeconds>10</scanIntervalSeconds>
345                     <webAppSourceDirectory>${basedir}/target/repository/</webAppSourceDirectory>
346                     <webApp>
347                         <contextPath>/site</contextPath>
348                     </webApp>
349                 </configuration>
350             </plugin>
351         </plugins>
352     </build>
353
354     <pluginRepositories>
355         <pluginRepository>
356             <id>reficio</id>
357             <url>http://repo.reficio.org/maven/</url>
358         </pluginRepository>
359     </pluginRepositories>
360
361 </project>