2015-01-23 19:33:08 +01:00
|
|
|
<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/xsd/maven-4.0.0.xsd">
|
|
|
|
<modelVersion>4.0.0</modelVersion>
|
|
|
|
<artifactId>com.minres.scviewer.database.text</artifactId>
|
2018-11-06 08:24:26 +01:00
|
|
|
<version>2.0.0-SNAPSHOT</version>
|
2015-01-23 19:33:08 +01:00
|
|
|
<parent>
|
|
|
|
<groupId>com.minres.scviewer</groupId>
|
|
|
|
<artifactId>com.minres.scviewer.parent</artifactId>
|
2018-10-15 09:13:41 +02:00
|
|
|
<version>2.0.0-SNAPSHOT</version>
|
2015-01-23 19:33:08 +01:00
|
|
|
<relativePath>../com.minres.scviewer.parent</relativePath>
|
|
|
|
</parent>
|
|
|
|
<packaging>eclipse-plugin</packaging>
|
2018-11-06 08:24:26 +01:00
|
|
|
|
2015-01-23 19:33:08 +01:00
|
|
|
<build>
|
2018-11-06 08:24:26 +01:00
|
|
|
<plugins>
|
|
|
|
<plugin>
|
2015-01-23 19:33:08 +01:00
|
|
|
<groupId>org.eclipse.tycho</groupId>
|
|
|
|
<artifactId>tycho-compiler-plugin</artifactId>
|
2017-01-23 21:35:52 +01:00
|
|
|
<version>0.23.1</version>
|
2015-01-23 19:33:08 +01:00
|
|
|
<configuration>
|
|
|
|
<compilerId>groovy-eclipse-compiler</compilerId>
|
|
|
|
<!-- set verbose to be true if you want lots of uninteresting messages -->
|
|
|
|
<!-- <verbose>true</verbose> -->
|
|
|
|
<source>1.7</source>
|
|
|
|
<target>1.7</target>
|
|
|
|
</configuration>
|
|
|
|
<dependencies>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.codehaus.groovy</groupId>
|
|
|
|
<artifactId>groovy-eclipse-compiler</artifactId>
|
|
|
|
<version>${groovy-eclipse-compiler-version}</version>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.codehaus.groovy</groupId>
|
|
|
|
<artifactId>groovy-eclipse-batch</artifactId>
|
|
|
|
<version>${groovy-eclipse-batch-version}</version>
|
|
|
|
<!-- or choose a different compiler version -->
|
|
|
|
<!-- <version>2.1.8-01</version> -->
|
|
|
|
</dependency>
|
|
|
|
</dependencies>
|
|
|
|
</plugin>
|
2018-11-06 08:24:26 +01:00
|
|
|
</plugins>
|
2015-01-23 19:33:08 +01:00
|
|
|
</build>
|
2017-10-14 20:48:25 +02:00
|
|
|
</project>
|