blob: 862c5de97993ac2b99f0c5c0cad04c4a487941b1 [file] [log] [blame]
<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">
<parent>
<groupId>org.eclipse.nebula.widgets.nattable</groupId>
<artifactId>parent</artifactId>
<version>2.0.1-SNAPSHOT</version>
<relativePath>../pom.xml</relativePath>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.eclipse.nebula.widgets.nattable</groupId>
<artifactId>org.eclipse.nebula.widgets.nattable.extension.nebula</artifactId>
<version>2.0.1-SNAPSHOT</version>
<packaging>eclipse-plugin</packaging>
<dependencies>
<!--
Unfortunately the Eclipse Nebula dependencies are not available via Maven repositories.
Dependencies would be
org.eclipse.nebula.cwt:1.1.0
org.eclipse.nebula.widgets.cdatetime:1.5.0
org.eclipse.nebula.widgets.richtext:1.4.0
-->
<dependency>
<groupId>org.eclipse.platform</groupId>
<artifactId>org.eclipse.swt</artifactId>
<version>3.112.0</version>
</dependency>
<dependency>
<groupId>org.slf4j</groupId>
<artifactId>slf4j-api</artifactId>
<version>1.7.30</version>
</dependency>
<dependency>
<groupId>org.eclipse.nebula.widgets.nattable</groupId>
<artifactId>org.eclipse.nebula.widgets.nattable.core</artifactId>
<version>2.0.1-SNAPSHOT</version>
</dependency>
</dependencies>
<build>
<plugins>
<!-- publish this artifact to Maven repositories -->
<plugin>
<artifactId>maven-deploy-plugin</artifactId>
<configuration>
<skip>false</skip>
</configuration>
</plugin>
</plugins>
</build>
</project>