self
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency>
<groupId>com.metreeca</groupId>
<artifactId>self</artifactId>
<version>0.49.0</version>
</dependency><!--~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
Copyright © 2013-2019 Metreeca srl. All rights reserved.
This file is part of Metreeca/Self.
Metreeca/Self is free software: you can redistribute it and/or modify it under the terms
of the GNU Affero General Public License as published by the Free Software Foundation,
either version 3 of the License, or(at your option) any later version.
Metreeca/Self is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY;
without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
See the GNU Affero General Public License for more details.
You should have received a copy of the GNU Affero General Public License along with Metreeca/Self.
If not, see <http://www.gnu.org/licenses/>.
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~-->
<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>com.metreeca</groupId>
<artifactId>self</artifactId>
<version>0.49.0</version>
<packaging>gwt-app</packaging>
<name>Metreeca Self-Service SPARQL Tool</name>
<description>Metreeca self-service SPARQL tool for linked data search and analysis.</description>
<url>https://metreeca.github.io/self/</url>
<inceptionYear>2013</inceptionYear>
<organization>
<name>Metreeca</name>
<url>https://www.metreeca.com/</url>
</organization>
<licenses>
<license>
<name>GNU Affero General Public License, Version 3</name>
<url>https://www.gnu.org/licenses/agpl.html</url>
<distribution>repo</distribution>
</license>
<license>
<name>Custom Commercial License</name>
</license>
</licenses>
<developers>
<developer>
<name>Metreeca</name>
<email>info@metreeca.com</email>
<organization>Metreeca</organization>
<organizationUrl>https://www.metreeca.com/</organizationUrl>
</developer>
</developers>
<scm>
<connection>scm:git:git@github.com:metreeca/self.git</connection>
<developerConnection>scm:git:git@github.com:metreeca/self.git</developerConnection>
<url>https://github.com/metreeca/self</url>
</scm>
<issueManagement>
<system>GitHub</system>
<url>https://github.com/metreeca/self/issues</url>
</issueManagement>
<distributionManagement>
<repository>
<id>ossrh</id>
<url>https://oss.sonatype.org/content/repositories/releases</url>
</repository>
<snapshotRepository>
<id>ossrh</id>
<url>https://oss.sonatype.org/content/repositories/snapshots</url>
</snapshotRepository>
<site>
<id>github-pages</id>
<url>https://metreeca.github.io/self/</url>
</site>
</distributionManagement>
<properties>
<java.version>1.8</java.version>
<gwt.version>2.8.2</gwt.version>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<maven.deploy.skip>true</maven.deploy.skip> <!-- !!! no public artifact deployment -->
<maven.build.timestamp.format>yyyyMMdd</maven.build.timestamp.format>
<timestamp>${maven.build.timestamp}</timestamp> <!-- ;( not directly available to filtered resources -->
</properties>
<dependencies>
<dependency>
<groupId>com.google.gwt</groupId>
<artifactId>gwt-user</artifactId>
<version>${gwt.version}</version>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>com.google.gwt</groupId>
<artifactId>gwt-dev</artifactId>
<version>${gwt.version}</version>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>org.eclipse.rdf4j</groupId>
<artifactId>rdf4j-runtime</artifactId>
<version>2.4.0</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<version>4.12</version>
<scope>test</scope>
</dependency>
</dependencies>
<build>
<finalName>metreeca-${project.artifactId}-${project.version}</finalName>
<resources>
<resource>
<directory>${basedir}/src/main/resources</directory>
<filtering>true</filtering>
</resource>
<resource>
<directory>${basedir}/docs/_resources</directory>
<targetPath>${basedir}/docs</targetPath>
<filtering>true</filtering>
</resource>
</resources>
<plugins>
<plugin> <!-- https://maven.apache.org/enforcer/maven-enforcer-plugin/ -->
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-enforcer-plugin</artifactId>
<version>3.0.0-M2</version>
<executions>
<execution>
<id>enforce-maven</id>
<goals>
<goal>enforce</goal>
</goals>
<configuration>
<rules>
<requireMavenVersion>
<version>3.3</version>
</requireMavenVersion>
</rules>
</configuration>
</execution>
</executions>
</plugin>
<plugin> <!-- java compiler / https://maven.apache.org/plugins/maven-compiler-plugin -->
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<version>3.8.0</version>
<configuration>
<source>${java.version}</source>
<target>${java.version}</target>
</configuration>
</plugin>
<plugin> <!-- GWT compiler / https://tbroyer.github.io/gwt-maven-plugin/ -->
<groupId>net.ltgt.gwt.maven</groupId>
<artifactId>gwt-maven-plugin</artifactId>
<version>1.0-rc-10</version>
<extensions>true</extensions>
<configuration>
<moduleName>com.metreeca.self.Self</moduleName>
<skipModule>true</skipModule> <!-- ;(idea) https://youtrack.jetbrains.com/issue/IDEA-171158 -->
<style>DETAILED</style>
</configuration>
</plugin>
<plugin> <!-- https://maven.apache.org/surefire/maven-surefire-plugin/ -->
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-surefire-plugin</artifactId>
<version>2.22.0</version>
</plugin>
<plugin> <!-- https://maven.apache.org/plugins/maven-site-plugin -->
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-site-plugin</artifactId>
<version>3.7.1</version>
<configuration>
<skipDeploy>true</skipDeploy> <!-- manual deployment -->
<stagingDirectory>${maven.multiModuleProjectDirectory}/docs/reports</stagingDirectory>
</configuration>
</plugin>
</plugins>
</build>
<reporting>
<plugins>
<plugin> <!-- https://maven.apache.org/plugins/maven-project-info-reports-plugin/ -->
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-project-info-reports-plugin</artifactId>
<version>3.0.0</version>
<reportSets>
<reportSet>
<reports>
<report>index</report>
<report>dependencies</report>
</reports>
<configuration>
<dependencyDetailsEnabled>false</dependencyDetailsEnabled>
</configuration>
</reportSet>
</reportSets>
</plugin>
</plugins>
</reporting>
<profiles>
<profile>
<id>release</id>
<build>
<plugins>
<plugin> <!-- http://maven.apache.org/plugins/maven-gpg-plugin/ -->
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-gpg-plugin</artifactId>
<version>1.6</version>
<configuration>
<executable>gpg2</executable>
<passphraseServerId>gpg.metreeca</passphraseServerId>
</configuration>
<executions>
<execution>
<id>sign-artifacts</id>
<phase>verify</phase>
<goals>
<goal>sign</goal>
</goals>
</execution>
</executions>
</plugin>
<plugin> <!-- https://github.com/sonatype/nexus-maven-plugins/tree/master/staging/maven-plugin -->
<groupId>org.sonatype.plugins</groupId>
<artifactId>nexus-staging-maven-plugin</artifactId>
<version>1.6.8</version>
<extensions>true</extensions>
<configuration>
<serverId>ossrh</serverId>
<nexusUrl>https://oss.sonatype.org/</nexusUrl>
<autoReleaseAfterClose>true</autoReleaseAfterClose>
</configuration>
</plugin>
</plugins>
</build>
</profile>
</profiles>
</project>