Skip to content

Commit

Permalink
Added project url
Browse files Browse the repository at this point in the history
  • Loading branch information
dubasdey committed Jan 22, 2019
1 parent 81b8516 commit 9a85096
Showing 1 changed file with 42 additions and 33 deletions.
75 changes: 42 additions & 33 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -22,8 +22,8 @@
<artifactId>coinbase-pro-client</artifactId>
<version>0.0.3</version>
<name>coinbase-pro-client</name>
<description>Coinbase PRO Client</description>

<description>Coinbase pro Client library</description>
<url>https://github.com/dubasdey/coinbase-pro-client</url>
<licenses>
<license>
<name>GNU LESSER GENERAL PUBLIC LICENSE v3</name>
Expand Down Expand Up @@ -78,8 +78,47 @@
</plugins>
</build>
</profile>
</profiles>

<profile>
<id>build-extras</id>
<activation>
<activeByDefault>true</activeByDefault>
</activation>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-source-plugin</artifactId>
<version>3.0.1</version>
<executions>
<execution>
<id>attach-sources</id>
<goals>
<goal>jar-no-fork</goal>
</goals>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-javadoc-plugin</artifactId>
<version>3.0.1</version>
<configuration>
<breakiterator>true</breakiterator>
</configuration>
<executions>
<execution>
<id>attach-javadocs</id>
<goals>
<goal>jar</goal>
</goals>
</execution>
</executions>
</plugin>
</plugins>
</build>
</profile>
</profiles>

<dependencies>
<dependency>
Expand Down Expand Up @@ -119,36 +158,6 @@
<debug>false</debug>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-javadoc-plugin</artifactId>
<version>3.0.1</version>
<configuration>
<breakiterator>true</breakiterator>
</configuration>
<executions>
<execution>
<id>attach-javadocs</id>
<goals>
<goal>jar</goal>
</goals>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-source-plugin</artifactId>
<version>3.0.1</version>
<executions>
<execution>
<id>attach-sources</id>
<goals>
<goal>jar</goal>
</goals>
</execution>
</executions>
</plugin>

<plugin>
<groupId>org.sonatype.plugins</groupId>
<artifactId>nexus-staging-maven-plugin</artifactId>
Expand Down

0 comments on commit 9a85096

Please sign in to comment.