| POM: |
Show
hide
<?xml version="1.0" encoding="UTF-8"?>
<!-- Copyright © 2016 Agro-Know, Deutsches Forschungszentrum für Künstliche
Intelligenz, iMinds, Institut für Angewandte Informatik e. V. an der Universität
Leipzig, Istituto Superiore Mario Boella, Tilde, Vistatec, WRIPL (http://freme-project.eu)
Licensed under the Apache License, Version 2.0 (the "License"); you may not
use this file except in compliance with the License. You may obtain a copy
of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless required
by applicable law or agreed to in writing, software distributed under the
License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS
OF ANY KIND, either express or implied. See the License for the specific
language governing permissions and limitations under the License. -->
<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>
<parent>
<groupId>eu.freme-project.e-services</groupId>
<artifactId>e-service-parent</artifactId>
<version>0.14</version>
<relativePath>../</relativePath>
</parent>
<artifactId>publishing</artifactId>
<version>0.8</version>
<groupId>eu.freme-project.e-services</groupId>
<developers>
<developer>
<name>Gerald Heasendonck</name>
<email>gerald.haesendonck@ugent.be</email>
<organization>iMinds</organization>
<organizationUrl>http://www.iminds.be</organizationUrl>
</developer>
<developer>
<name>Pieter Heyvaert</name>
<email>pheyvaer.heyvaert@ugent.be</email>
<organization>iMinds</organization>
<organizationUrl>http://www.iminds.be</organizationUrl>
</developer>
</developers>
<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<jersey.version>2.17</jersey.version>
</properties>
<pluginRepositories>
<pluginRepository>
<id>spring-releases</id>
<url>https://repo.spring.io/libs-release</url>
</pluginRepository>
</pluginRepositories>
<build>
<plugins>
<plugin> <!-- set compiler to 1.8 source and target -->
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<version>3.1</version>
<configuration>
<source>1.8</source>
<target>1.8</target>
</configuration>
</plugin>
<plugin> <!-- build a jar with dependencies -->
<artifactId>maven-assembly-plugin</artifactId>
<version>2.5</version>
<configuration>
<descriptorRefs>
<descriptorRef>jar-with-dependencies</descriptorRef>
</descriptorRefs>
<archive>
<manifest>
<mainClass>eu.freme.eservices.epublishing.webservice.Main</mainClass>
</manifest>
</archive>
</configuration>
<executions>
<execution>
<id>make-assembly</id>
<!-- this is used for inheritance merges -->
<phase>package</phase>
<!-- bind to the packaging phase -->
<goals>
<goal>single</goal>
</goals>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-javadoc-plugin</artifactId>
<version>2.9</version>
<executions>
<execution>
<id>attach-javadocs</id>
<goals>
<goal>jar</goal>
</goals>
<configuration>
<additionalparam>-Xdoclint:none</additionalparam>
</configuration>
</execution>
</executions>
</plugin>
<plugin>
<groupId>com.mycila</groupId>
<artifactId>license-maven-plugin</artifactId>
<version>2.3</version>
<configuration>
<header>https://raw.githubusercontent.com/mycila/license-maven-plugin/master/license-maven-plugin/src/main/resources/com/mycila/maven/plugin/license/templates/APACHE-2.txt</header>
<properties>
<owner>
<!-- IMPORTANT: keep this indentation! So the copyright information
will be well formatted in all header files. -->
Agro-Know, Deutsches Forschungszentrum für Künstliche
Intelligenz, iMinds,
Institut für Angewandte Informatik e. V. an
der Universität Leipzig,
Istituto Superiore Mario Boella, Tilde,
Vistatec, WRIPL
</owner>
<email>http://freme-project.eu</email>
</properties>
<excludes>
<exclude>**/README</exclude>
<exclude>src/test/resources/**</exclude>
<exclude>src/main/resources/**</exclude>
<exclude>logs/**</exclude>
<exclude>changelog.txt</exclude>
<exclude>LICENSE</exclude>
<exclude>LICENSE-3RD-PARTY</exclude>
</excludes>
</configuration>
</plugin>
</plugins>
</build>
<dependencies>
<dependency>
<groupId>eu.freme-project</groupId>
<artifactId>common</artifactId>
</dependency>
<dependency>
<groupId>com.google.code.gson</groupId>
<artifactId>gson</artifactId>
<version>2.3.1</version>
</dependency>
<!-- Command Line parser -->
<dependency>
<groupId>commons-cli</groupId>
<artifactId>commons-cli</artifactId>
<version>1.2</version>
</dependency>
<!-- Stream / File utility methods -->
<dependency>
<groupId>commons-io</groupId>
<artifactId>commons-io</artifactId>
<version>2.4</version>
</dependency>
<!-- epublib dependencies -->
<dependency>
<groupId>eu.freme-project</groupId>
<artifactId>epublib-core</artifactId>
<version>0.5</version>
<exclusions>
<exclusion>
<groupId>org.slf4j</groupId>
<artifactId>slf4j-api</artifactId>
</exclusion>
<exclusion>
<groupId>org.slf4j</groupId>
<artifactId>slf4j-simple</artifactId>
</exclusion>
</exclusions>
</dependency>
<dependency>
<groupId>eu.freme-project</groupId>
<artifactId>epublib-tools</artifactId>
<version>0.5</version>
<exclusions>
<exclusion>
<groupId>org.slf4j</groupId>
<artifactId>slf4j-api</artifactId>
</exclusion>
<exclusion>
<groupId>org.slf4j</groupId>
<artifactId>slf4j-simple</artifactId>
</exclusion>
</exclusions>
</dependency>
<dependency>
<groupId>eu.freme-project.bservices</groupId>
<artifactId>test-helper</artifactId>
<scope>test</scope>
</dependency>
</dependencies>
<scm>
<connection>scm:git:git@github.com:freme-project/e-services.git</connection>
<url>scm:git:git@github.com/freme-project:e-services.git</url>
<developerConnection>scm:git:git@github.com:freme-project/e-services.git</developerConnection>
<tag>e-service-parent-0.14</tag>
</scm>
</project>
|