pom.xml 1.1 KB
Newer Older
J
jurgen 已提交
1
<?xml version="1.0" encoding="UTF-8"?>
S
Serge Rider 已提交
2 3 4 5 6 7 8 9 10 11 12
<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>
    <parent>
        <groupId>org.jkiss.dbeaver</groupId>
        <artifactId>dbeaver</artifactId>
        <version>1.0.0</version>
        <relativePath>../../</relativePath>
    </parent>
    <artifactId>org.jkiss.dbeaver.model</artifactId>
S
serge-rider 已提交
13
    <version>1.0.64</version>
S
Serge Rider 已提交
14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31
    <packaging>eclipse-plugin</packaging>


    <build>
        <plugins>
            <!-- Disable warns because of sun.security.util.* dependencies -->
            <plugin>
                <groupId>org.eclipse.tycho</groupId>
                <artifactId>tycho-compiler-plugin</artifactId>
                <version>0.22.0</version>
                <configuration>
                    <compilerArgument>-warn:none</compilerArgument>
                    <compilerArgument>-err:none</compilerArgument>
                </configuration>
            </plugin>
        </plugins>
    </build>

J
jurgen 已提交
32
</project>