mirror of
https://github.com/Qortal/altcoinj.git
synced 2025-07-31 12:01:24 +00:00
Step 1: Update pom descriptors
This commit is contained in:
24
core/pom.xml
24
core/pom.xml
@@ -20,19 +20,19 @@
|
||||
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>
|
||||
<parent>
|
||||
<groupId>org.bitcoinj</groupId>
|
||||
<artifactId>bitcoinj-parent</artifactId>
|
||||
<groupId>com.dogecoin</groupId>
|
||||
<artifactId>dogecoinj-parent</artifactId>
|
||||
<version>0.13-SNAPSHOT</version>
|
||||
</parent>
|
||||
|
||||
<artifactId>bitcoinj-core</artifactId>
|
||||
<artifactId>dogecoinj-core</artifactId>
|
||||
|
||||
<name>bitcoinj</name>
|
||||
<description>A Java Bitcoin library</description>
|
||||
<name>dogecoinj</name>
|
||||
<description>A Java Dogecoin library</description>
|
||||
|
||||
<packaging>jar</packaging>
|
||||
|
||||
<url>https://bitcoinj.github.io</url>
|
||||
<url>https://github.com/langerhans/dogecoinj-new</url>
|
||||
|
||||
<licenses>
|
||||
<license>
|
||||
@@ -45,8 +45,8 @@
|
||||
<!-- Dummy block to make Maven Central happy: authors list is in AUTHORS -->
|
||||
<developers>
|
||||
<developer>
|
||||
<name>The bitcoinj team</name>
|
||||
<email>bitcoinj@googlegroups.com</email>
|
||||
<name>The bitcoinj team. Port to Dogecoin by the Dogecoin developers</name>
|
||||
<email>info@dogecoin.com</email>
|
||||
</developer>
|
||||
</developers>
|
||||
|
||||
@@ -268,8 +268,8 @@
|
||||
<artifactItems>
|
||||
<artifactItem>
|
||||
<outputDirectory>target/test-classes/</outputDirectory>
|
||||
<groupId>org.bitcoinj</groupId>
|
||||
<artifactId>bitcoinj-core</artifactId>
|
||||
<groupId>com.dogecoin</groupId>
|
||||
<artifactId>dogecoinj-core</artifactId>
|
||||
<version>${project.version}</version>
|
||||
</artifactItem>
|
||||
</artifactItems>
|
||||
@@ -302,7 +302,7 @@
|
||||
<configuration>
|
||||
<archive>
|
||||
<manifest>
|
||||
<mainClass>org.bitcoinj.core.BitcoindComparisonTool</mainClass>
|
||||
<mainClass>com.dogecoin.dogecoinj.core.BitcoindComparisonTool</mainClass>
|
||||
<addClasspath>false</addClasspath>
|
||||
</manifest>
|
||||
</archive>
|
||||
@@ -393,7 +393,7 @@
|
||||
</dependency>
|
||||
-->
|
||||
<dependency>
|
||||
<groupId>org.bitcoinj</groupId>
|
||||
<groupId>com.dogecoin</groupId>
|
||||
<artifactId>orchid</artifactId>
|
||||
<version>1.0</version>
|
||||
</dependency>
|
||||
|
@@ -19,21 +19,21 @@
|
||||
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">
|
||||
<parent>
|
||||
<groupId>org.bitcoinj</groupId>
|
||||
<artifactId>bitcoinj-parent</artifactId>
|
||||
<groupId>com.dogecoin</groupId>
|
||||
<artifactId>dogecoinj-parent</artifactId>
|
||||
<version>0.13-SNAPSHOT</version>
|
||||
</parent>
|
||||
<modelVersion>4.0.0</modelVersion>
|
||||
|
||||
<artifactId>bitcoinj-examples</artifactId>
|
||||
<artifactId>dogecoinj-examples</artifactId>
|
||||
|
||||
<name>bitcoinj Examples</name>
|
||||
<description>A collection of examples using the bitcoinj library</description>
|
||||
<name>dogecoinj Examples</name>
|
||||
<description>A collection of examples using the dogecoinj library</description>
|
||||
|
||||
<dependencies>
|
||||
<dependency>
|
||||
<groupId>org.bitcoinj</groupId>
|
||||
<artifactId>bitcoinj-core</artifactId>
|
||||
<groupId>com.dogecoin</groupId>
|
||||
<artifactId>dogecoinj-core</artifactId>
|
||||
<version>${project.parent.version}</version>
|
||||
</dependency>
|
||||
<dependency>
|
||||
|
@@ -4,8 +4,8 @@
|
||||
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>
|
||||
<parent>
|
||||
<groupId>org.bitcoinj</groupId>
|
||||
<artifactId>bitcoinj-parent</artifactId>
|
||||
<groupId>com.dogecoin</groupId>
|
||||
<artifactId>dogecoinj-parent</artifactId>
|
||||
<version>0.13-SNAPSHOT</version>
|
||||
</parent>
|
||||
|
||||
|
24
pom.xml
24
pom.xml
@@ -2,8 +2,8 @@
|
||||
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>org.bitcoinj</groupId>
|
||||
<artifactId>bitcoinj-parent</artifactId>
|
||||
<groupId>com.dogecoin</groupId>
|
||||
<artifactId>dogecoinj-parent</artifactId>
|
||||
<version>0.13-SNAPSHOT</version>
|
||||
<packaging>pom</packaging>
|
||||
|
||||
@@ -20,14 +20,14 @@
|
||||
</parent>
|
||||
|
||||
<scm>
|
||||
<connection>scm:git:https://github.com/bitcoinj/bitcoinj</connection>
|
||||
<developerConnection>scm:git:https://github.com/bitcoinj/bitcoinj</developerConnection>
|
||||
<url>scm:git:https://github.com/bitcoinj/bitcoinj</url>
|
||||
<connection>scm:git:https://github.com/langerhans/dogecoinj-new</connection>
|
||||
<developerConnection>scm:git:https://github.com/langerhans/dogecoinj-new</developerConnection>
|
||||
<url>scm:git:https://github.com/langerhans/dogecoinj-new</url>
|
||||
</scm>
|
||||
|
||||
<name>bitcoinj Parent</name>
|
||||
<description>Provides the common configuration for the BitCoinJ modules</description>
|
||||
<url>http://www.bitcoinj.org/</url>
|
||||
<name>dogecoinj Parent</name>
|
||||
<description>Provides the common configuration for the DogecoinJ modules</description>
|
||||
<url>https://github.com/langerhans/dogecoinj-new/</url>
|
||||
|
||||
<licenses>
|
||||
<license>
|
||||
@@ -39,10 +39,11 @@
|
||||
</licenses>
|
||||
|
||||
<issueManagement>
|
||||
<system>Google Code</system>
|
||||
<url>http://code.google.com/p/bitcoinj/issues/list</url>
|
||||
<system>GitHub</system>
|
||||
<url>https://github.com/langerhans/dogecoinj-new/issues</url>
|
||||
</issueManagement>
|
||||
|
||||
<!--
|
||||
<mailingLists>
|
||||
<mailingList>
|
||||
<name>bitcoinj Google Group</name>
|
||||
@@ -60,6 +61,7 @@
|
||||
<url>https://oss.sonatype.org/service/local/staging/deploy/maven2/</url>
|
||||
</repository>
|
||||
</distributionManagement>
|
||||
-->
|
||||
|
||||
<!-- Common build plugin configuration -->
|
||||
<build>
|
||||
@@ -149,7 +151,7 @@
|
||||
<artifactId>slf4j-api</artifactId>
|
||||
<version>1.7.6</version>
|
||||
</dependency>
|
||||
<!-- bitcoinj consumers are expected to provide their own SLF4J adapters
|
||||
<!-- dogecoinj consumers are expected to provide their own SLF4J adapters
|
||||
such as logback, slf4j-log4j12, slf4j-jcl and so on
|
||||
see http://www.slf4j.org/faq.html -->
|
||||
<dependency>
|
||||
|
@@ -19,16 +19,16 @@
|
||||
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">
|
||||
<parent>
|
||||
<groupId>org.bitcoinj</groupId>
|
||||
<artifactId>bitcoinj-parent</artifactId>
|
||||
<groupId>com.dogecoin</groupId>
|
||||
<artifactId>dogecoinj-parent</artifactId>
|
||||
<version>0.13-SNAPSHOT</version>
|
||||
</parent>
|
||||
<modelVersion>4.0.0</modelVersion>
|
||||
|
||||
<artifactId>bitcoinj-tools</artifactId>
|
||||
<artifactId>dogecoinj-tools</artifactId>
|
||||
|
||||
<name>bitcoinj Tools</name>
|
||||
<description>A collection of useful tools that use the bitcoinj library to perform wallet operations</description>
|
||||
<name>dogecoinj Tools</name>
|
||||
<description>A collection of useful tools that use the dogecoinj library to perform wallet operations</description>
|
||||
|
||||
<build>
|
||||
|
||||
@@ -74,8 +74,8 @@
|
||||
|
||||
<dependencies>
|
||||
<dependency>
|
||||
<groupId>org.bitcoinj</groupId>
|
||||
<artifactId>bitcoinj-core</artifactId>
|
||||
<groupId>com.dogecoin</groupId>
|
||||
<artifactId>dogecoinj-core</artifactId>
|
||||
<version>${project.parent.version}</version>
|
||||
</dependency>
|
||||
<dependency>
|
||||
|
@@ -4,7 +4,7 @@
|
||||
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>org.bitcoinj</groupId>
|
||||
<groupId>com.dogecoin</groupId>
|
||||
<artifactId>wallettemplate</artifactId>
|
||||
<version>0.13-SNAPSHOT</version>
|
||||
|
||||
@@ -54,8 +54,8 @@
|
||||
|
||||
<dependencies>
|
||||
<dependency>
|
||||
<groupId>org.bitcoinj</groupId>
|
||||
<artifactId>bitcoinj-core</artifactId>
|
||||
<groupId>com.dogecoin</groupId>
|
||||
<artifactId>dogecoinj-core</artifactId>
|
||||
<version>${project.version}</version>
|
||||
</dependency>
|
||||
<dependency>
|
||||
|
Reference in New Issue
Block a user