| <?xml version="1.0" encoding="UTF-8"?> | |
| <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"> | |
| <modelVersion>4.0.0</modelVersion> | |
| <groupId>de.ids_mannheim.korap</groupId> | |
| <artifactId>Kustvakt-core</artifactId> | |
| <name>Kustvakt core</name> | |
| <version>0.59.6</version> | |
| <description>Kustvakt core, basic rest api for testing purposes and default | |
| interfaces</description> | |
| <build> | |
| <resources> | |
| <resource> | |
| <filtering>true</filtering> | |
| <directory>src/main/resources</directory> | |
| <includes> | |
| <include>**/*.info</include> | |
| <include>**/*.xml</include> | |
| <include>**/*.conf</include> | |
| <include>**/*.kustvakt</include> | |
| <include>**/*.properties</include> | |
| <include>**/*.sql</include> | |
| </includes> | |
| </resource> | |
| </resources> | |
| <testResources> | |
| <testResource> | |
| <filtering>true</filtering> | |
| <directory>src/test/resources</directory> | |
| <includes> | |
| <include>**/*.prop</include> | |
| <include>**/*.xml</include> | |
| <include>**/*.conf</include> | |
| <include>**/*.info</include> | |
| <include>**/*.properties</include> | |
| </includes> | |
| </testResource> | |
| <testResource> | |
| <filtering>true</filtering> | |
| <directory>src/main/resources</directory> | |
| <includes> | |
| <include>**/*.info</include> | |
| <include>**/*.properties</include> | |
| </includes> | |
| </testResource> | |
| </testResources> | |
| <plugins> | |
| <plugin> | |
| <groupId>com.googlecode.maven-java-formatter-plugin</groupId> | |
| <artifactId>maven-java-formatter-plugin</artifactId> | |
| <version>0.4</version> | |
| <configuration> | |
| <configFile>${project.basedir}/Format.xml</configFile> | |
| <overrideConfigCompilerVersion>true</overrideConfigCompilerVersion> | |
| <compilerSource>1.7</compilerSource> | |
| <compilerCompliance>1.7</compilerCompliance> | |
| <compilerTargetPlatform>1.7</compilerTargetPlatform> | |
| </configuration> | |
| </plugin> | |
| <plugin> | |
| <artifactId>maven-compiler-plugin</artifactId> | |
| <version>3.3</version> | |
| <configuration> | |
| <compilerVersion>1.7</compilerVersion> | |
| <source>1.7</source> | |
| <target>1.7</target> | |
| </configuration> | |
| </plugin> | |
| <plugin> | |
| <artifactId>maven-jar-plugin</artifactId> | |
| <version>2.1</version> | |
| <executions> | |
| <execution> | |
| <phase>package</phase> | |
| <goals> | |
| <goal>test-jar</goal> | |
| </goals> | |
| </execution> | |
| </executions> | |
| </plugin> | |
| <plugin> | |
| <artifactId>maven-surefire-plugin</artifactId> | |
| <version>2.19.1</version> | |
| <configuration> | |
| <reuseForks>false</reuseForks> | |
| <forkCount>2</forkCount> | |
| <threadCount>10</threadCount> | |
| <excludes> | |
| <exclude>**/*APITest.java</exclude> | |
| <exclude>de/ids_mannheim/korap/suites/*.java</exclude> | |
| </excludes> | |
| <includes> | |
| <include>de/ids_mannheim/korap/**/*.java</include> | |
| </includes> | |
| </configuration> | |
| </plugin> | |
| <plugin> | |
| <artifactId>maven-shade-plugin</artifactId> | |
| <version>2.1</version> | |
| <executions> | |
| <execution> | |
| <id>full</id> | |
| <phase>package</phase> | |
| <goals> | |
| <goal>shade</goal> | |
| </goals> | |
| <configuration> | |
| <transformers> | |
| <transformer> | |
| <mainClass>de.ids_mannheim.korap.web.KustvaktServer</mainClass> | |
| </transformer> | |
| <transformer> | |
| <resource>META-INF/spring.handlers</resource> | |
| </transformer> | |
| <transformer> | |
| <resource>META-INF/spring.schemas</resource> | |
| </transformer> | |
| </transformers> | |
| <filters> | |
| <filter> | |
| <artifact>*:*</artifact> | |
| <excludes> | |
| <exclude>META-INF/*.SF</exclude> | |
| <exclude>META-INF/*.DSA</exclude> | |
| <exclude>META-INF/*.RSA</exclude> | |
| </excludes> | |
| </filter> | |
| </filters> | |
| </configuration> | |
| </execution> | |
| </executions> | |
| </plugin> | |
| </plugins> | |
| </build> | |
| <profiles> | |
| <profile> | |
| <id>light</id> | |
| <build> | |
| <plugins> | |
| <plugin> | |
| <artifactId>maven-shade-plugin</artifactId> | |
| <version>2.1</version> | |
| <executions> | |
| <execution> | |
| <id>light</id> | |
| <phase>package</phase> | |
| <goals> | |
| <goal>shade</goal> | |
| </goals> | |
| <configuration> | |
| <finalName>Kustvakt-core-${project.version}-light</finalName> | |
| <transformers> | |
| <transformer> | |
| <mainClass>de.ids_mannheim.korap.web.KustvaktBaseServer</mainClass> | |
| </transformer> | |
| <transformer> | |
| <resource>META-INF/spring.handlers</resource> | |
| </transformer> | |
| <transformer> | |
| <resource>META-INF/spring.schemas</resource> | |
| </transformer> | |
| </transformers> | |
| <filters> | |
| <filter> | |
| <artifact>*:*</artifact> | |
| <excludes> | |
| <exclude>META-INF/*.SF</exclude> | |
| <exclude>META-INF/*.DSA</exclude> | |
| <exclude>META-INF/*.RSA</exclude> | |
| </excludes> | |
| </filter> | |
| </filters> | |
| </configuration> | |
| </execution> | |
| </executions> | |
| </plugin> | |
| </plugins> | |
| </build> | |
| </profile> | |
| </profiles> | |
| <dependencies> | |
| <dependency> | |
| <groupId>com.sun.jersey.jersey-test-framework</groupId> | |
| <artifactId>jersey-test-framework-core</artifactId> | |
| <version>1.19</version> | |
| <scope>test</scope> | |
| <exclusions> | |
| <exclusion> | |
| <artifactId>javax.servlet-api</artifactId> | |
| <groupId>javax.servlet</groupId> | |
| </exclusion> | |
| <exclusion> | |
| <artifactId>jersey-servlet</artifactId> | |
| <groupId>com.sun.jersey</groupId> | |
| </exclusion> | |
| <exclusion> | |
| <artifactId>jersey-client</artifactId> | |
| <groupId>com.sun.jersey</groupId> | |
| </exclusion> | |
| </exclusions> | |
| </dependency> | |
| <dependency> | |
| <groupId>com.sun.jersey.jersey-test-framework</groupId> | |
| <artifactId>jersey-test-framework-grizzly</artifactId> | |
| <version>1.19</version> | |
| <scope>test</scope> | |
| <exclusions> | |
| <exclusion> | |
| <artifactId>grizzly-servlet-webserver</artifactId> | |
| <groupId>com.sun.grizzly</groupId> | |
| </exclusion> | |
| <exclusion> | |
| <artifactId>jersey-grizzly</artifactId> | |
| <groupId>com.sun.jersey</groupId> | |
| </exclusion> | |
| </exclusions> | |
| </dependency> | |
| <dependency> | |
| <groupId>junit</groupId> | |
| <artifactId>junit</artifactId> | |
| <version>4.11</version> | |
| <scope>test</scope> | |
| </dependency> | |
| <dependency> | |
| <groupId>org.projectlombok</groupId> | |
| <artifactId>lombok</artifactId> | |
| <version>1.16.6</version> | |
| <scope>provided</scope> | |
| </dependency> | |
| </dependencies> | |
| <properties> | |
| <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> | |
| <maven.compiler.source>1.7</maven.compiler.source> | |
| <maven.compiler.target>1.7</maven.compiler.target> | |
| </properties> | |
| </project> | |