Permalink
Cannot retrieve contributors at this time
Join GitHub today
GitHub is home to over 31 million developers working together to host and review code, manage projects, and build software together.
Sign up
Fetching contributors…

<?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/xsd/maven-4.0.0.xsd"> | |
<modelVersion>4.0.0</modelVersion> | |
<groupId>org.lambda3.indra</groupId> | |
<artifactId>indra-parent</artifactId> | |
<version>2.2.1</version> | |
<packaging>pom</packaging> | |
<name>Indra</name> | |
<description>A Web Service which allows easy access to different Distributional Semantics Models.</description> | |
<url>https://github.com/Lambda-3/Indra</url> | |
<organization> | |
<name>Lambda^3</name> | |
<url>http://lambda3.org</url> | |
</organization> | |
<scm> | |
<connection>scm:git:git@github.com:Lambda-3/Indra.git</connection> | |
<url>scm:git:git@github.com:Lambda-3/Indra.git</url> | |
<developerConnection>scm:git:git@github.com:Lamda-3/Indra.git</developerConnection> | |
</scm> | |
<licenses> | |
<license> | |
<name>The MIT License</name> | |
<url>https://opensource.org/licenses/MIT</url> | |
</license> | |
</licenses> | |
<inceptionYear>2016</inceptionYear> | |
<modules> | |
<module>indra-essentials</module> | |
<module>indra-core</module> | |
<module>indra-web</module> | |
<module>indra-service</module> | |
<module>indra-mongo</module> | |
</modules> | |
<properties> | |
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> | |
<slf4j-version>1.7.12</slf4j-version> | |
<lucene.version>7.1.0</lucene.version> | |
<license.licenseName>mit</license.licenseName> | |
</properties> | |
<profiles> | |
<profile> | |
<id>licenses</id> | |
<activation> | |
<activeByDefault>false</activeByDefault> | |
</activation> | |
<build> | |
<plugins> | |
<plugin> | |
<groupId>org.codehaus.mojo</groupId> | |
<artifactId>license-maven-plugin</artifactId> | |
<version>1.14</version> | |
<executions> | |
<execution> | |
<id>first</id> | |
<phase>process-resources</phase> | |
<goals> | |
<goal>update-file-header</goal> | |
</goals> | |
<configuration> | |
<processStartTag> | |
==========================License-Start============================= | |
</processStartTag> | |
<sectionDelimiter>--------------------------------------------------------------------</sectionDelimiter> | |
<processEndTag> | |
==========================License-End=============================== | |
</processEndTag> | |
<emptyLineAfterHeader>true</emptyLineAfterHeader> | |
<roots> | |
<root>src/main/java</root> | |
<root>src/test/java</root> | |
</roots> | |
</configuration> | |
</execution> | |
<execution> | |
<id>second</id> | |
<phase>generate-sources</phase> | |
<goals> | |
<goal>aggregate-add-third-party</goal> | |
</goals> | |
<configuration> | |
<licenseMerges> | |
<licenseMerge> | |
Apache Software License Version 2.0| | |
Apache 2| | |
Apache 2.0| | |
Apache License, Version 2.0| | |
Apache License Version 2.0| | |
Apache 2.0 license| | |
Apache License 2.0| | |
The Apache Software License, Version 2.0 | |
</licenseMerge> | |
<licenseMerge> | |
The MIT License|MIT License|MIT | |
</licenseMerge> | |
<licenseMerge> | |
BSD License|BSD|BSD License|BSD Style|BSD style | |
</licenseMerge> | |
<licenseMerge> | |
CDDL 1.0| | |
CDDL 1.0 license| | |
COMMON DEVELOPMENT AND DISTRIBUTION LICENSE (CDDL) Version 1.0 | |
</licenseMerge> | |
</licenseMerges> | |
</configuration> | |
</execution> | |
</executions> | |
</plugin> | |
</plugins> | |
</build> | |
</profile> | |
</profiles> | |
<build> | |
<plugins> | |
<plugin> | |
<groupId>org.codehaus.mojo</groupId> | |
<artifactId>buildnumber-maven-plugin</artifactId> | |
<version>1.4</version> | |
<executions> | |
<execution> | |
<phase>validate</phase> | |
<goals> | |
<goal>create</goal> | |
</goals> | |
</execution> | |
</executions> | |
<configuration> | |
<doCheck>false</doCheck> | |
<doUpdate>false</doUpdate> | |
<getRevisionOnlyOnce>true</getRevisionOnlyOnce> | |
<shortRevisionLength>5</shortRevisionLength> | |
</configuration> | |
</plugin> | |
</plugins> | |
<pluginManagement> | |
<plugins> | |
<plugin> | |
<groupId>org.apache.maven.plugins</groupId> | |
<artifactId>maven-compiler-plugin</artifactId> | |
<version>3.3</version> | |
<configuration> | |
<source>1.8</source> | |
<target>1.8</target> | |
</configuration> | |
</plugin> | |
<plugin> | |
<groupId>org.apache.maven.plugins</groupId> | |
<artifactId>maven-jar-plugin</artifactId> | |
<version>3.0.2</version> | |
<configuration> | |
<archive> | |
<manifest> | |
<addDefaultSpecificationEntries>true</addDefaultSpecificationEntries> | |
</manifest> | |
<manifestEntries> | |
<Implementation-Version>${project.version}-${buildNumber}</Implementation-Version> | |
<Implementation-Vendor-Id>${project.groupId}</Implementation-Vendor-Id> | |
<Implementation-Vendor>${project.organization.name}</Implementation-Vendor> | |
<Implementation-URL>${project.url}</Implementation-URL> | |
</manifestEntries> | |
</archive> | |
</configuration> | |
</plugin> | |
<plugin> | |
<groupId>org.apache.maven.plugins</groupId> | |
<artifactId>maven-surefire-plugin</artifactId> | |
<version>2.20</version> | |
</plugin> | |
<plugin> | |
<groupId>org.apache.maven.plugins</groupId> | |
<artifactId>maven-failsafe-plugin</artifactId> | |
<version>2.20</version> | |
<executions> | |
<execution> | |
<goals> | |
<goal>integration-test</goal> | |
<goal>verify</goal> | |
</goals> | |
</execution> | |
</executions> | |
</plugin> | |
<plugin> | |
<groupId>org.apache.maven.plugins</groupId> | |
<artifactId>maven-assembly-plugin</artifactId> | |
<version>2.6</version> | |
</plugin> | |
<plugin> | |
<groupId>org.apache.maven.plugins</groupId> | |
<artifactId>maven-source-plugin</artifactId> | |
<version>3.0.1</version> | |
</plugin> | |
</plugins> | |
</pluginManagement> | |
</build> | |
<dependencyManagement> | |
<dependencies> | |
<dependency> | |
<groupId>ch.qos.logback</groupId> | |
<artifactId>logback-classic</artifactId> | |
<version>1.1.3</version> | |
</dependency> | |
<dependency> | |
<groupId>org.slf4j</groupId> | |
<artifactId>slf4j-api</artifactId> | |
<version>${slf4j-version}</version> | |
</dependency> | |
<dependency> | |
<groupId>org.slf4j</groupId> | |
<artifactId>jul-to-slf4j</artifactId> | |
<version>${slf4j-version}</version> | |
</dependency> | |
<dependency> | |
<groupId>org.slf4j</groupId> | |
<artifactId>jcl-over-slf4j</artifactId> | |
<version>${slf4j-version}</version> | |
</dependency> | |
<dependency> | |
<groupId>org.apache.lucene</groupId> | |
<artifactId>lucene-analyzers-common</artifactId> | |
<version>${lucene.version}</version> | |
</dependency> | |
<dependency> | |
<groupId>org.apache.lucene</groupId> | |
<artifactId>lucene-queryparser</artifactId> | |
<version>${lucene.version}</version> | |
</dependency> | |
</dependencies> | |
</dependencyManagement> | |
<dependencies> | |
<dependency> | |
<groupId>org.testng</groupId> | |
<artifactId>testng</artifactId> | |
<version>6.10</version> | |
<scope>test</scope> | |
</dependency> | |
</dependencies> | |
</project> |