Skip to content

Commit

Permalink
Merge pull request #1 from broadinstitute/lb_all_nio_fixes
Browse files Browse the repository at this point in the history
making change to pom to publish our own version
  • Loading branch information
droazen authored Aug 10, 2018
2 parents 6d11bef + c732eb6 commit 3debc76
Showing 1 changed file with 194 additions and 5 deletions.
199 changes: 194 additions & 5 deletions google-cloud-contrib/google-cloud-nio/pom.xml
Original file line number Diff line number Diff line change
@@ -1,25 +1,138 @@
<?xml version="1.0"?>
<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>
<artifactId>google-cloud-nio</artifactId>
<version>0.20.4-alpha-SNAPSHOT</version>
<groupId>org.broadinstitute</groupId>
<artifactId>google-cloud-nio-GATK4-custom-patch</artifactId>
<version>0.20.4-alpha-GCS-RETRY-FIX</version>
<packaging>jar</packaging>
<name>Google Cloud NIO</name>
<url>https://github.com/GoogleCloudPlatform/google-cloud-java/tree/master/google-cloud-contrib/google-cloud-nio</url>
<description>
FileSystemProvider for Java NIO to access Google Cloud Storage transparently.
</description>
<developers>
<developer>
<id>garrettjonesgoogle</id>
<name>Garrett Jones</name>
<email>[email protected]</email>
<organization>Google</organization>
<roles>
<role>Developer</role>
</roles>
</developer>
<developer>
<id>pongad</id>
<name>Michael Darakananda</name>
<email>[email protected]</email>
<organization>Google</organization>
<roles>
<role>Developer</role>
</roles>
</developer>
<developer>
<id>shinfan</id>
<name>Shin Fan</name>
<email>[email protected]</email>
<organization>Google</organization>
<roles>
<role>Developer</role>
</roles>
</developer>
<developer>
<id>michaelbausor</id>
<name>Micheal Bausor</name>
<email>[email protected]</email>
<organization>Google</organization>
<roles>
<role>Developer</role>
</roles>
</developer>
<developer>
<id>vam-google</id>
<name>Vadym Matsishevskyi</name>
<email>[email protected]</email>
<organization>Google</organization>
<roles>
<role>Developer</role>
</roles>
</developer>
<developer>
<id>tswast</id>
<name>Tim Swast</name>
<email>[email protected]</email>
<organization>Google</organization>
<roles>
<role>Developer</role>
</roles>
</developer>
<developer>
<id>neozwu</id>
<name>Neo Wu</name>
<email>[email protected]</email>
<organization>Google</organization>
<roles>
<role>Developer</role>
</roles>
</developer>
<developer>
<id>lesv</id>
<name>Les Vogel</name>
<email>[email protected]</email>
<organization>Google</organization>
<roles>
<role>Developer</role>
</roles>
</developer>
</developers>
<organization>
<name>Google</name>
</organization>
<scm>
<connection>scm:git:[email protected]:GoogleCloudPlatform/google-cloud.git</connection>
<developerConnection>scm:git:[email protected]:GoogleCloudPlatform/google-cloud.git</developerConnection>
<url>https://github.com/GoogleCloudPlatform/google-cloud</url>
<tag>HEAD</tag>
</scm>
<ciManagement>
<system>Travis CI</system>
<url>https://travis-ci.org/GoogleCloudPlatform/google-cloud-java</url>
</ciManagement>
<issueManagement>
<url>https://github.com/GoogleCloudPlatform/google-cloud-java/issues</url>
<system>GitHub Issues</system>
</issueManagement>
<distributionManagement>
<snapshotRepository>
<id>sonatype-nexus-snapshots</id>
<url>https://oss.sonatype.org/content/repositories/snapshots</url>
</snapshotRepository>
<repository>
<id>sonatype-nexus-staging</id>
<url>https://oss.sonatype.org/service/local/staging/deploy/maven2/</url>
</repository>
<site>
<id>github-pages-site</id>
<name>Deployment through GitHub's site deployment plugin</name>
<url>${project.version}/</url>
</site>
</distributionManagement>
<licenses>
<license>
<name>Google Cloud Software License</name>
<url>https://raw.githubusercontent.com/GoogleCloudPlatform/google-cloud-java/master/LICENSE</url>
</license>
</licenses>
<parent>
<groupId>com.google.cloud</groupId>
<artifactId>google-cloud-contrib</artifactId>
<version>0.20.4-alpha-SNAPSHOT</version>
<version>0.20.3-alpha</version>
</parent>
<properties>
<site.installationModule>google-cloud-nio</site.installationModule>
</properties>
<dependencies>
<dependency>
<groupId>${project.groupId}</groupId>
<groupId>com.google.cloud</groupId>
<artifactId>google-cloud-storage</artifactId>
</dependency>
<dependency>
Expand Down Expand Up @@ -132,6 +245,82 @@
</execution>
</executions>
</plugin>
</plugins>
<plugin>
<artifactId>maven-jar-plugin</artifactId>
<version>2.6</version>
<configuration>
<archive>
<addMavenDescriptor>true</addMavenDescriptor>
<index>true</index>
<manifest>
<addDefaultImplementationEntries>true</addDefaultImplementationEntries>
<addDefaultSpecificationEntries>true</addDefaultSpecificationEntries>
</manifest>
<manifestEntries>
<artifactId>${project.artifactId}</artifactId>
<groupId>${project.groupId}</groupId>
<version>${project.version}</version>
<buildNumber>${buildNumber}</buildNumber>
</manifestEntries>
</archive>
</configuration>
<executions>
<execution>
<goals>
<goal>test-jar</goal>
</goals>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-gpg-plugin</artifactId>
<version>1.6</version>
<executions>
<execution>
<id>sign-artifacts</id>
<phase>deploy</phase>
<goals>
<goal>sign</goal>
</goals>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.sonatype.plugins</groupId>
<artifactId>nexus-staging-maven-plugin</artifactId>
<version>1.6.6</version>
<extensions>true</extensions>
<configuration>
<serverId>sonatype-nexus-staging</serverId>
<nexusUrl>https://oss.sonatype.org/</nexusUrl>
<autoReleaseAfterClose>false</autoReleaseAfterClose>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-source-plugin</artifactId>
<executions>
<execution>
<id>attach-sources</id>
<goals>
<goal>jar</goal>
</goals>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-javadoc-plugin</artifactId>
<executions>
<execution>
<id>attach-javadocs</id>
<goals>
<goal>jar</goal>
</goals>
</execution>
</executions>
</plugin>
</plugins>
</build>
</project>

0 comments on commit 3debc76

Please sign in to comment.