pom.xml 2.8 KB
Newer Older
J
jurgen 已提交
1 2 3 4 5 6 7 8 9 10
<?xml version="1.0" encoding="UTF-8"?>
<project xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd" xmlns="http://maven.apache.org/POM/4.0.0"
		xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
	<modelVersion>4.0.0</modelVersion>
	<groupId>org.jkiss.dbeaver</groupId>
	<artifactId>contrib</artifactId>
	<version>1.0.0</version>
	<packaging>pom</packaging>

	<properties>
S
Serge Rider 已提交
11
		<tycho-version>0.26.0</tycho-version>
S
Serge Rider 已提交
12
		<p2-maven-version>1.2.0-SNAPSHOT</p2-maven-version>
J
jurgen 已提交
13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28
	</properties>

	<pluginRepositories>
		<pluginRepository>
			<id>reficio</id>
			<url>http://repo.reficio.org/maven/</url>
		</pluginRepository>
	</pluginRepositories>

	<build>
		<plugins>

			<!-- Maven -> OSGI repository -->
			<plugin>
				<groupId>org.reficio</groupId>
				<artifactId>p2-maven-plugin</artifactId>
S
Serge Rider 已提交
29
				<version>${p2-maven-version}</version>
J
jurgen 已提交
30 31 32 33 34
				<executions>
					<execution>
						<id>default-cli</id>
						<configuration>
							<artifacts>
35
								<artifact><id>com.github.jsqlparser:jsqlparser:0.9.7</id></artifact>
J
jurgen 已提交
36
								<artifact><id>org.apache.commons:commons-jexl:2.1.1</id></artifact>
S
Serge Rider 已提交
37
								<artifact><id>net.sf.opencsv:opencsv:2.3</id></artifact>
S
serge-rider 已提交
38
								<artifact><id>commons-cli:commons-cli:1.3.1</id></artifact>
S
Serge Rider 已提交
39 40
								<!-- POI and dependencies -->
								<artifact><id>org.apache.poi:poi:3.15</id></artifact>
S
Serge Rider 已提交
41 42 43 44 45 46 47 48 49 50 51 52 53 54 55
								<artifact><id>org.apache.poi:poi-ooxml:3.15</id>
									<instructions>
										<Require-Bundle>
											org.apache.poi.ooxml-schemas,
											org.apache.poi
										</Require-Bundle>
									</instructions>
								</artifact>
								<artifact><id>org.apache.poi:poi-ooxml-schemas:3.15</id>
									<instructions>
										<Require-Bundle>
											org.apache.xmlbeans
										</Require-Bundle>
									</instructions>
								</artifact>
S
Serge Rider 已提交
56 57 58
								<artifact><id>org.apache.commons:commons-collections4:4.1</id></artifact>
								<artifact><id>org.apache.xmlbeans:xmlbeans:2.6.0</id></artifact>

J
jurgen 已提交
59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74
							</artifacts>
						</configuration>
					</execution>
				</executions>
			</plugin>

                <plugin>
                    <groupId>org.mortbay.jetty</groupId>
                    <artifactId>jetty-maven-plugin</artifactId>
                    <version>8.1.5.v20120716</version>
                    <configuration>
                        <scanIntervalSeconds>10</scanIntervalSeconds>
                        <webAppSourceDirectory>${basedir}/target/repository/</webAppSourceDirectory>
                        <webApp>
                            <contextPath>/site</contextPath>
                        </webApp>
S
serge-rider 已提交
75 76 77
						<stopKey/>
						<stopPort/>
					</configuration>
J
jurgen 已提交
78 79 80 81 82 83
                </plugin>


		</plugins>
	</build>
</project>