Skip to content

Commit

Permalink
Release Plugin update
Browse files Browse the repository at this point in the history
  • Loading branch information
Ahamed Azeem committed Mar 7, 2020
1 parent a1dbb23 commit 9984923
Show file tree
Hide file tree
Showing 2 changed files with 41 additions and 6 deletions.
11 changes: 11 additions & 0 deletions btc-tx-lookup-java.iml
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
<?xml version="1.0" encoding="UTF-8"?>
<module type="JAVA_MODULE" version="4">
<component name="NewModuleRootManager" inherit-compiler-output="true">
<exclude-output />
<content url="file://$MODULE_DIR$">
<sourceFolder url="file://$MODULE_DIR$/src" isTestSource="false" />
</content>
<orderEntry type="inheritedJdk" />
<orderEntry type="sourceFolder" forTests="false" />
</component>
</module>
36 changes: 30 additions & 6 deletions pom.xml
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
<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/maven-v4_0_0.xsd">
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">

<modelVersion>4.0.0</modelVersion>
<groupId>info.weboftrust</groupId>
<artifactId>btc-tx-lookup-java</artifactId>
<packaging>jar</packaging>
<version>0.1-SNAPSHOT</version>
<version>0.1.0-SNAPSHOT</version>
<name>btc-tx-lookup-java</name>

<issueManagement>
Expand All @@ -19,6 +19,14 @@
<developerConnection>scm:git:git@github.com:WebOfTrustInfo/btc-tx-lookup-java.git</developerConnection>
</scm>

<distributionManagement>
<repository>
<id>github</id>
<name>GitHub WebOfTrustInfo btc-tx-lookup-java</name>
<url>https://maven.pkg.github.com/WebOfTrustInfo/btc-tx-lookup-java</url>
</repository>
</distributionManagement>

<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<github.global.server>github</github.global.server>
Expand Down Expand Up @@ -73,6 +81,23 @@
<includeScope>runtime</includeScope>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-release-plugin</artifactId>
<version>3.0.0-M1</version>
<configuration>
<tagNameFormat>v@{project.version}</tagNameFormat>
<scmReleaseCommitComment>Latest Release @{releaseLabel}</scmReleaseCommitComment>
<pomFileName>pom.xml</pomFileName>
</configuration>
<dependencies>
<dependency>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-scm-plugin</artifactId>
<version>1.8.1</version>
</dependency>
</dependencies>
</plugin>
</plugins>

</build>
Expand All @@ -92,10 +117,9 @@
<scope>compile</scope>
</dependency>
<dependency>
<groupId>design.contract</groupId>
<artifactId>libtxref</artifactId>
<version>1.0-SNAPSHOT</version>
<scope>compile</scope>
<groupId>design.contract</groupId>
<artifactId>libtxref</artifactId>
<version>1.1.1</version>
</dependency>
<dependency>
<groupId>wf.bitcoin</groupId>
Expand Down

0 comments on commit 9984923

Please sign in to comment.