maple
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency>
<groupId>it.uniroma2.art.maple</groupId>
<artifactId>maple</artifactId>
<version>0.0.23</version>
</dependency><?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>it.uniroma2.art.maple</groupId>
<artifactId>maple</artifactId>
<version>0.0.23</version>
<packaging>pom</packaging>
<name>MAPLE</name>
<description>MAPLE (MAPping Architecture based on Linguistic Evidences) is an architecture and a software platform for the semi-automatic configuration of robust matching systems based on linguistic evidences and exploiting web published (linguistic) resources.</description>
<url>http://art.uniroma2.it/maple/</url>
<scm>
<url>https://bitbucket.org/art-uniroma2/maple.git</url>
<connection>scm:git:https://bitbucket.org/art-uniroma2/maple.git</connection>
<developerConnection>scm:git:https://bitbucket.org/art-uniroma2/maple.git</developerConnection>
</scm>
<organization>
<name>ART Group, Tor Vergata University of Rome</name>
<url>http://art.uniroma2.it</url>
</organization>
<licenses>
<license>
<name>BSD-3-Clause</name>
<url>https://opensource.org/licenses/BSD-3-Clause</url>
</license>
</licenses>
<developers>
<developer>
<id>fiorelli</id>
<name>Manuel Fiorelli</name>
<email>manuel.fiorelli@uniroma2.it</email>
<url>https://art.uniroma2.it/fiorelli</url>
<organization>ART Group, Tor Vergata University of Rome</organization>
<organizationUrl>https://art.uniroma2.it/</organizationUrl>
<roles>
<role>design and main development</role>
</roles>
</developer>
<developer>
<id>starred</id>
<name>Armando Stellato</name>
<email>stellato@uniroma2.it</email>
<url>https://art.uniroma2.it/stellato</url>
<organization>ART Group, Tor Vergata University of Rome</organization>
<organizationUrl>https://art.uniroma2.it/</organizationUrl>
<roles>
<role>General Concept and Design</role>
</roles>
</developer>
</developers>
<properties>
<annotations.version>2.0.1</annotations.version>
<commons-beanutils.version>1.11.0</commons-beanutils.version>
<commons-codec.version>1.18.0</commons-codec.version>
<commons-lang3.version>3.18.0</commons-lang3.version>
<guava.version>32.0.1-jre</guava.version>
<hamcrest.version>2.2</hamcrest.version>
<jackson-ann.version>2.21</jackson-ann.version>
<jackson.version>2.21.2</jackson.version>
<jakarta.annotation.version>2.1.1</jakarta.annotation.version>
<jaxb.api.version>2.3.1</jaxb.api.version>
<junit.version>4.13.2</junit.version>
<lime.version>0.4.12</lime.version>
<maven.compiler.release>17</maven.compiler.release>
<maven.compiler.source>${maven.compiler.release}</maven.compiler.source>
<maven.compiler.target>${maven.compiler.release}</maven.compiler.target>
<pf4j.version>3.15.0</pf4j.version>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
<rdf4j.version>5.1.6</rdf4j.version>
<slf4j-log4j12.version>1.7.36</slf4j-log4j12.version>
</properties>
<build>
<pluginManagement>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<version>3.11.0</version>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-jar-plugin</artifactId>
<version>3.3.0</version>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-resources-plugin</artifactId>
<version>3.3.1</version>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-surefire-plugin</artifactId>
<version>3.1.2</version>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-failsafe-plugin</artifactId>
<version>3.1.2</version>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-javadoc-plugin</artifactId>
<version>3.5.0</version>
<configuration>
<show>private</show>
<nohelp>true</nohelp>
<failOnError>false</failOnError>
<doclint>none</doclint>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-deploy-plugin</artifactId>
<version>3.1.1</version>
</plugin>
</plugins>
</pluginManagement>
</build>
<modules>
<module>maple-core</module>
<module>maple-alignment-services-api</module>
</modules>
<profiles>
<!-- Profile for publishing to central.sonatype.com -->
<profile>
<id>release</id>
<build>
<plugins>
<!-- central-publishing-maven-plugin for publishing to Maven Central via Sonatype -->
<plugin>
<groupId>org.sonatype.central</groupId>
<artifactId>central-publishing-maven-plugin</artifactId>
<version>0.7.0</version>
<extensions>true</extensions>
<configuration>
<publishingServerId>central</publishingServerId>
</configuration>
</plugin>
<!-- for the generation of Javadoc jars -->
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-javadoc-plugin</artifactId>
<version>3.5.0</version>
<configuration>
<show>private</show>
<nohelp>true</nohelp>
<failOnError>false</failOnError>
<doclint>none</doclint>
</configuration>
<executions>
<execution>
<id>attach-javadocs</id>
<goals>
<goal>jar</goal>
</goals>
</execution>
</executions>
</plugin>
<!-- for the generation of sources jars -->
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-source-plugin</artifactId>
<version>3.2.1</version>
<executions>
<execution>
<id>attach-sources</id>
<goals>
<goal>jar-no-fork</goal>
</goals>
</execution>
</executions>
</plugin>
<!-- to sign all artifacts -->
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-gpg-plugin</artifactId>
<version>1.5</version>
<executions>
<execution>
<id>sign-artifacts</id>
<phase>verify</phase>
<goals>
<goal>sign</goal>
</goals>
</execution>
</executions>
</plugin>
</plugins>
</build>
</profile>
</profiles>
</project>