Changeset View
Changeset View
Standalone View
Standalone View
swh/lister/maven/tests/data/https_maven.org/arangodb-graphql-1.2.pom
- This file was added.
Property | Old Value | New Value |
---|---|---|
File Mode | null | 100755 |
<?xml version="1.0" encoding="UTF-8"?> | |||||
<!-- | |||||
~ DISCLAIMER | |||||
~ Copyright 2019 ArangoDB GmbH, Cologne, Germany | |||||
~ | |||||
~ 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. | |||||
~ | |||||
~ Copyright holder is ArangoDB GmbH, Cologne, Germany | |||||
~ | |||||
--> | |||||
<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.arangodb</groupId> | |||||
<artifactId>arangodb-graphql</artifactId> | |||||
<version>1.2</version> | |||||
<name>arangodb-graphql</name> | |||||
<description>ArangoDB Graphql</description> | |||||
<url>https://github.com/ArangoDB-Community/arangodb-graphql-java</url> | |||||
<licenses> | |||||
<license> | |||||
<name>Apache License 2.0</name> | |||||
<url>http://www.apache.org/licenses/LICENSE-2.0</url> | |||||
<distribution>repo</distribution> | |||||
</license> | |||||
</licenses> | |||||
<developers> | |||||
<developer> | |||||
<name>Colin Findlay</name> | |||||
</developer> | |||||
<developer> | |||||
<name>Michele Rastelli</name> | |||||
<url>https://github.com/rashtao</url> | |||||
</developer> | |||||
</developers> | |||||
<properties> | |||||
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> | |||||
<java.version>1.8</java.version> | |||||
<maven.compiler.source>1.8</maven.compiler.source> | |||||
<maven.compiler.target>1.8</maven.compiler.target> | |||||
</properties> | |||||
<build> | |||||
<plugins> | |||||
<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> | |||||
<stagingProfileId>84aff6e87e214c</stagingProfileId> | |||||
<autoReleaseAfterClose>false</autoReleaseAfterClose> | |||||
</configuration> | |||||
</plugin> | |||||
<plugin> | |||||
<groupId>org.apache.maven.plugins</groupId> | |||||
<artifactId>maven-resources-plugin</artifactId> | |||||
<version>3.1.0</version> | |||||
<configuration> | |||||
<encoding>UTF-8</encoding> | |||||
</configuration> | |||||
</plugin> | |||||
<plugin> | |||||
<groupId>org.apache.maven.plugins</groupId> | |||||
<artifactId>maven-source-plugin</artifactId> | |||||
<version>3.1.0</version> | |||||
<executions> | |||||
<execution> | |||||
<goals> | |||||
<goal>jar</goal> | |||||
</goals> | |||||
</execution> | |||||
</executions> | |||||
</plugin> | |||||
<plugin> | |||||
<groupId>org.apache.maven.plugins</groupId> | |||||
<artifactId>maven-javadoc-plugin</artifactId> | |||||
<version>3.1.1</version> | |||||
<executions> | |||||
<execution> | |||||
<id>attach-javadocs</id> | |||||
<goals> | |||||
<goal>jar</goal> | |||||
</goals> | |||||
</execution> | |||||
</executions> | |||||
</plugin> | |||||
<plugin> | |||||
<artifactId>maven-deploy-plugin</artifactId> | |||||
<version>2.8.2</version> | |||||
<configuration> | |||||
<uniqueVersion>false</uniqueVersion> | |||||
<retryFailedDeploymentCount>10</retryFailedDeploymentCount> | |||||
</configuration> | |||||
</plugin> | |||||
<plugin> | |||||
<groupId>org.apache.maven.plugins</groupId> | |||||
<artifactId>maven-gpg-plugin</artifactId> | |||||
<version>1.6</version> | |||||
<executions> | |||||
<execution> | |||||
<id>sign-artifacts</id> | |||||
<phase>verify</phase> | |||||
<goals> | |||||
<goal>sign</goal> | |||||
</goals> | |||||
</execution> | |||||
</executions> | |||||
</plugin> | |||||
<plugin> | |||||
<groupId>org.apache.maven.plugins</groupId> | |||||
<artifactId>maven-assembly-plugin</artifactId> | |||||
<executions> | |||||
<execution> | |||||
<id>assembly</id> | |||||
<phase>package</phase> | |||||
<goals> | |||||
<goal>single</goal> | |||||
</goals> | |||||
</execution> | |||||
</executions> | |||||
<configuration> | |||||
<finalName> | |||||
${project.artifactId}-${project.version}-standalone | |||||
</finalName> | |||||
<attach>false</attach> | |||||
<appendAssemblyId>false</appendAssemblyId> | |||||
<descriptorRefs> | |||||
<descriptorRef>jar-with-dependencies</descriptorRef> | |||||
</descriptorRefs> | |||||
</configuration> | |||||
</plugin> | |||||
</plugins> | |||||
</build> | |||||
<dependencies> | |||||
<dependency> | |||||
<groupId>com.graphql-java</groupId> | |||||
<artifactId>graphql-java</artifactId> | |||||
<version>11.0</version> | |||||
</dependency> | |||||
<dependency> | |||||
<groupId>com.arangodb</groupId> | |||||
<artifactId>arangodb-java-driver</artifactId> | |||||
<version>6.5.0</version> | |||||
</dependency> | |||||
<dependency> | |||||
<groupId>junit</groupId> | |||||
<artifactId>junit</artifactId> | |||||
<version>4.12</version> | |||||
<scope>test</scope> | |||||
</dependency> | |||||
<dependency> | |||||
<groupId>org.mockito</groupId> | |||||
<artifactId>mockito-core</artifactId> | |||||
<version>2.15.0</version> | |||||
<scope>test</scope> | |||||
</dependency> | |||||
<dependency> | |||||
<groupId>org.hamcrest</groupId> | |||||
<artifactId>hamcrest-library</artifactId> | |||||
<version>1.3</version> | |||||
<scope>test</scope> | |||||
</dependency> | |||||
</dependencies> | |||||
<distributionManagement> | |||||
<snapshotRepository> | |||||
<id>ossrh</id> | |||||
<url>https://oss.sonatype.org/content/repositories/snapshots</url> | |||||
</snapshotRepository> | |||||
<repository> | |||||
<id>ossrh</id> | |||||
<url>https://oss.sonatype.org/service/local/staging/deploy/maven2/</url> | |||||
</repository> | |||||
</distributionManagement> | |||||
<scm> | |||||
<url>https://github.com/ArangoDB-Community/arangodb-graphql-java</url> | |||||
<connection>scm:git:git://github.com/ArangoDB-Community/arangodb-graphql-java.git</connection> | |||||
<developerConnection>scm:git:git://github.com/ArangoDB-Community/arangodb-graphql-java.git</developerConnection> | |||||
</scm> | |||||
<organization> | |||||
<name>ArangoDB GmbH</name> | |||||
<url>https://www.arangodb.com</url> | |||||
</organization> | |||||
</project> | |||||
No newline at end of file |