RandomSec/pom.xml

212 lines
6.4 KiB
XML
Raw Normal View History

2018-08-12 19:24:45 +02:00
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
2018-08-12 20:51:17 +02:00
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
<modelVersion>4.0.0</modelVersion>
2018-08-12 19:24:45 +02:00
2018-08-12 20:51:17 +02:00
<groupId>org.openrefine</groupId>
<artifactId>openrefine</artifactId>
<packaging>pom</packaging>
2018-08-12 20:51:17 +02:00
<version>3.0-SNAPSHOT</version>
2018-08-12 19:24:45 +02:00
<name>OpenRefine</name>
2018-08-12 20:51:17 +02:00
<description>OpenRefine is a free, open source power tool for working with messy data and improving it</description>
<url>http://openrefine.org/</url>
<modules>
<module>main</module>
<module>server</module>
</modules>
2018-08-12 19:24:45 +02:00
2018-08-12 20:51:17 +02:00
<properties>
<jee.path>/</jee.path>
<jee.port>3333</jee.port>
<refine.data>/tmp/refine</refine.data>
</properties>
2018-08-12 19:24:45 +02:00
2018-08-12 20:51:17 +02:00
<scm>
<connection>scm:git:http://github.com/OpenRefine/OpenRefine</connection>
<url>http://github.com/OpenRefine/OpenRefine</url>
</scm>
2018-08-12 19:24:45 +02:00
2018-08-12 20:51:17 +02:00
<build>
<finalName>openrefine</finalName>
<resources>
<!-- <resource>
2018-08-12 20:51:17 +02:00
<directory>main/src</directory>
<includes>
<include>log4j.properties</include>
</includes>
</resource> -->
2018-08-12 20:51:17 +02:00
</resources>
<plugins>
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>build-helper-maven-plugin</artifactId>
<version>1.8</version>
<executions>
<execution>
<phase>generate-sources</phase>
<goals>
<goal>add-source</goal>
</goals>
<configuration>
<sources>
2018-08-13 11:09:43 +02:00
<source>server/src</source>
2018-08-12 20:51:17 +02:00
</sources>
</configuration>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<version>3.1</version>
<configuration>
<source>1.8</source>
<target>1.8</target>
<encoding>UTF-8</encoding>
<showDeprecation>false</showDeprecation>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-resources-plugin</artifactId>
<version>2.6</version>
<configuration>
<encoding>UTF-8</encoding>
</configuration>
</plugin>
2018-08-14 10:47:21 +02:00
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>exec-maven-plugin</artifactId>
<version>1.3</version>
<configuration>
<skip>true</skip>
<mainClass>none</mainClass>
2018-08-14 10:47:21 +02:00
</configuration>
</plugin>
2018-08-14 13:01:02 +02:00
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-dependency-plugin</artifactId>
<version>3.1.1</version>
</plugin>
2018-08-12 20:51:17 +02:00
<!-- <plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-war-plugin</artifactId>
<version>2.2</version>
<configuration>
<webResources>
<resource>
<directory>main/webapp</directory>
<excludes>
<exclude>WEB-INF/butterfly.properties</exclude>
<exclude>WEB-INF/lib/*.jar</exclude>
<exclude>WEB-INF/lib-src/**</exclude>
</excludes>
</resource>
<resource>
<directory>patches</directory>
<includes>
<include>butterfly.properties</include>
</includes>
<targetPath>WEB-INF</targetPath>
</resource>
<resource>
<directory>extensions</directory>
<targetPath>extensions</targetPath>
<excludes>
<exclude>**/jackson-core-asl-*.jar</exclude>
<exclude>**/jackson-mapper-asl-*.jar</exclude>
<exclude>lmf/**/jena-*.jar</exclude>
</excludes>
</resource>
</webResources>
</configuration>
</plugin> -->
<!-- <plugin>
<groupId>org.apache.tomcat.maven</groupId>
<artifactId>tomcat7-maven-plugin</artifactId>
<version>2.2</version>
<configuration>
<warSourceDirectory>main/webapp</warSourceDirectory>
<path>${jee.path}</path>
<port>${jee.port}</port>
<systemProperties>
<refine.version>${project.version}</refine.version>
<refine.data>${refine.data}</refine.data>
</systemProperties>
</configuration>
</plugin> -->
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-surefire-plugin</artifactId>
<version>2.22.0</version>
<configuration>
<suiteXmlFiles>
<suiteXmlFile>main/tests/server/conf/tests.xml</suiteXmlFile>
</suiteXmlFiles>
</configuration>
</plugin>
</plugins>
<pluginManagement>
2018-08-13 11:09:43 +02:00
<plugins> <!--
2018-08-12 20:51:17 +02:00
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>exec-maven-plugin</artifactId>
<version>1.1.1</version>
<executions>
<execution>
<id>antclean</id>
<phase>clean</phase>
<goals>
<goal>exec</goal>
</goals>
<inherited>false</inherited>
<configuration>
<executable>ant</executable>
<arguments>
<argument>clean</argument>
</arguments>
</configuration>
</execution>
<execution>
<id>ant</id>
<phase>validate</phase>
<goals>
<goal>exec</goal>
</goals>
<inherited>false</inherited>
<configuration>
<executable>ant</executable>
</configuration>
</execution>
</executions>
2018-08-13 11:09:43 +02:00
</plugin> -->
2018-08-12 20:51:17 +02:00
</plugins>
</pluginManagement>
</build>
2018-08-12 19:24:45 +02:00
2018-08-12 20:51:17 +02:00
<dependencies>
<!-- dependencies are stored in the relevant submodules:
see main/pom.xml, server/pom.xml and each extension.
-->
2018-08-12 20:51:17 +02:00
</dependencies>
2018-08-12 19:24:45 +02:00
2018-08-12 20:51:17 +02:00
<repositories>
<repository>
<id>nightlabs</id>
<url>http://oss.sonatype.org/content/repositories/sourceforge-snapshots/</url>
</repository>
<repository>
<id>kint</id>
<url>http://developer.k-int.com/maven2</url>
</repository>
<repository>
<id>local-jars</id>
<name>Local JARs</name>
<url>file://${project.basedir}/libs</url>
</repository>
</repositories>
2018-08-12 19:24:45 +02:00
</project>