pom.xml 2.1 KB
Newer Older
J
jurgen 已提交
1
<?xml version="1.0" encoding="UTF-8"?>
2 3
<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"
J
jurgen 已提交
4
    xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
5 6 7 8 9 10 11 12
    <modelVersion>4.0.0</modelVersion>
    <parent>
        <groupId>org.jkiss.dbeaver</groupId>
        <artifactId>dbeaver</artifactId>
        <version>1.0.0-SNAPSHOT</version>
        <relativePath>../../</relativePath>
    </parent>
    <artifactId>org.jkiss.dbeaver.rcp.feature</artifactId>
S
Serge Rider 已提交
13
    <version>2.1.141-SNAPSHOT</version>
14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31
    <packaging>eclipse-feature</packaging>

    <build>
        <plugins>
            <!-- Tycho configuration -->
            <plugin>
                <groupId>org.eclipse.tycho</groupId>
                <artifactId>target-platform-configuration</artifactId>
                <version>${tycho-version}</version>
                <configuration>
                    <filters>
                        <!-- Limit JNA to version 4.5. Newer version added in E4 2021-03 and it leads to JNA dups. #12149 -->
                        <filter>
                            <type>eclipse-plugin</type>
                            <id>com.sun.jna</id>
                            <restrictTo>
                                <type>eclipse-plugin</type>
                                <id>com.sun.jna</id>
S
Serge Rider 已提交
32
                                <versionRange>[5.0.0, 6.0.0]</versionRange>
33 34 35 36 37 38 39 40
                            </restrictTo>
                        </filter>
                        <filter>
                            <type>eclipse-plugin</type>
                            <id>com.sun.jna.platform</id>
                            <restrictTo>
                                <type>eclipse-plugin</type>
                                <id>com.sun.jna.platform</id>
S
Serge Rider 已提交
41
                                <versionRange>[5.0.0, 6.0.0]</versionRange>
42 43 44 45 46 47 48 49
                            </restrictTo>
                        </filter>
                    </filters>
                </configuration>
            </plugin>
        </plugins>
    </build>

J
jurgen 已提交
50
</project>