mirror of
https://github.com/Qortal/altcoinj.git
synced 2025-02-14 11:15:51 +00:00
Move stuff around in the POMs as part of preparing for Maven Central.
This commit is contained in:
parent
f4def39f40
commit
04e7551e99
38
core/pom.xml
38
core/pom.xml
@ -30,6 +30,26 @@
|
|||||||
<name>bitcoinj</name>
|
<name>bitcoinj</name>
|
||||||
<description>A Java Bitcoin library</description>
|
<description>A Java Bitcoin library</description>
|
||||||
|
|
||||||
|
<packaging>jar</packaging>
|
||||||
|
|
||||||
|
<url>https://code.google.com/p/bitcoinj</url>
|
||||||
|
|
||||||
|
<licenses>
|
||||||
|
<license>
|
||||||
|
<name>The Apache Software License, Version 2.0</name>
|
||||||
|
<url>http://www.apache.org/licenses/LICENSE-2.0.txt</url>
|
||||||
|
<distribution>repo</distribution>
|
||||||
|
</license>
|
||||||
|
</licenses>
|
||||||
|
|
||||||
|
<!-- Dummy block to make Maven Central happy: authors list is in AUTHORS -->
|
||||||
|
<developers>
|
||||||
|
<developer>
|
||||||
|
<name>The bitcoinj team</name>
|
||||||
|
<email>bitcoinj@googlegroups.com</email>
|
||||||
|
</developer>
|
||||||
|
</developers>
|
||||||
|
|
||||||
<profiles>
|
<profiles>
|
||||||
<profile>
|
<profile>
|
||||||
<id>update-protobuf</id>
|
<id>update-protobuf</id>
|
||||||
@ -166,14 +186,14 @@
|
|||||||
<dependency>
|
<dependency>
|
||||||
<groupId>junit</groupId>
|
<groupId>junit</groupId>
|
||||||
<artifactId>junit</artifactId>
|
<artifactId>junit</artifactId>
|
||||||
|
<version>4.11</version>
|
||||||
|
<scope>test</scope>
|
||||||
</dependency>
|
</dependency>
|
||||||
<dependency>
|
<dependency>
|
||||||
<groupId>org.easymock</groupId>
|
<groupId>org.easymock</groupId>
|
||||||
<artifactId>easymock</artifactId>
|
<artifactId>easymock</artifactId>
|
||||||
</dependency>
|
<version>3.0</version>
|
||||||
<dependency>
|
<scope>test</scope>
|
||||||
<groupId>org.slf4j</groupId>
|
|
||||||
<artifactId>slf4j-api</artifactId>
|
|
||||||
</dependency>
|
</dependency>
|
||||||
<!-- bitcoinj consumers are expected to provide their own SLF4J adapters
|
<!-- bitcoinj consumers are expected to provide their own SLF4J adapters
|
||||||
such as logback, slf4j-log4j12, slf4j-jcl and so on
|
such as logback, slf4j-log4j12, slf4j-jcl and so on
|
||||||
@ -181,44 +201,40 @@
|
|||||||
<dependency>
|
<dependency>
|
||||||
<groupId>org.slf4j</groupId>
|
<groupId>org.slf4j</groupId>
|
||||||
<artifactId>slf4j-jdk14</artifactId>
|
<artifactId>slf4j-jdk14</artifactId>
|
||||||
|
<version>1.7.5</version>
|
||||||
<scope>test</scope>
|
<scope>test</scope>
|
||||||
</dependency>
|
</dependency>
|
||||||
|
|
||||||
<dependency>
|
<dependency>
|
||||||
<groupId>com.h2database</groupId>
|
<groupId>com.h2database</groupId>
|
||||||
<artifactId>h2</artifactId>
|
<artifactId>h2</artifactId>
|
||||||
<version>1.3.167</version>
|
<version>1.3.167</version>
|
||||||
<optional>true</optional>
|
<optional>true</optional>
|
||||||
</dependency>
|
</dependency>
|
||||||
|
|
||||||
<dependency>
|
<dependency>
|
||||||
<groupId>com.madgag</groupId>
|
<groupId>com.madgag</groupId>
|
||||||
<artifactId>sc-light-jdk15on</artifactId>
|
<artifactId>sc-light-jdk15on</artifactId>
|
||||||
|
<version>1.47.0.2</version>
|
||||||
</dependency>
|
</dependency>
|
||||||
|
|
||||||
<dependency>
|
<dependency>
|
||||||
<groupId>com.google.protobuf</groupId>
|
<groupId>com.google.protobuf</groupId>
|
||||||
<artifactId>protobuf-java</artifactId>
|
<artifactId>protobuf-java</artifactId>
|
||||||
|
<version>2.5.0</version>
|
||||||
</dependency>
|
</dependency>
|
||||||
|
|
||||||
<dependency>
|
<dependency>
|
||||||
<groupId>com.google.guava</groupId>
|
<groupId>com.google.guava</groupId>
|
||||||
<artifactId>guava</artifactId>
|
<artifactId>guava</artifactId>
|
||||||
<version>13.0.1</version>
|
<version>13.0.1</version>
|
||||||
</dependency>
|
</dependency>
|
||||||
|
|
||||||
<dependency>
|
<dependency>
|
||||||
<groupId>com.google.code.findbugs</groupId>
|
<groupId>com.google.code.findbugs</groupId>
|
||||||
<artifactId>jsr305</artifactId>
|
<artifactId>jsr305</artifactId>
|
||||||
<version>1.3.9</version>
|
<version>1.3.9</version>
|
||||||
</dependency>
|
</dependency>
|
||||||
|
|
||||||
<dependency>
|
<dependency>
|
||||||
<groupId>net.jcip</groupId>
|
<groupId>net.jcip</groupId>
|
||||||
<artifactId>jcip-annotations</artifactId>
|
<artifactId>jcip-annotations</artifactId>
|
||||||
<version>1.0</version>
|
<version>1.0</version>
|
||||||
</dependency>
|
</dependency>
|
||||||
|
|
||||||
<dependency>
|
<dependency>
|
||||||
<groupId>com.lambdaworks</groupId>
|
<groupId>com.lambdaworks</groupId>
|
||||||
<artifactId>scrypt</artifactId>
|
<artifactId>scrypt</artifactId>
|
||||||
|
60
pom.xml
60
pom.xml
@ -13,14 +13,22 @@
|
|||||||
<module>tools</module>
|
<module>tools</module>
|
||||||
</modules>
|
</modules>
|
||||||
|
|
||||||
|
<parent>
|
||||||
|
<groupId>org.sonatype.oss</groupId>
|
||||||
|
<artifactId>oss-parent</artifactId>
|
||||||
|
<version>7</version>
|
||||||
|
</parent>
|
||||||
|
|
||||||
|
<scm>
|
||||||
|
<connection>scm:git:https://code.google.com/p/bitcoinj/</connection>
|
||||||
|
<developerConnection>scm:git:https://code.google.com/p/bitcoinj/</developerConnection>
|
||||||
|
<url>http://code.google.com/p/bitcoinj/source/browse</url>
|
||||||
|
</scm>
|
||||||
|
|
||||||
<name>bitcoinj Parent</name>
|
<name>bitcoinj Parent</name>
|
||||||
<description>Provides the common configuration for the BitCoinJ modules</description>
|
<description>Provides the common configuration for the BitCoinJ modules</description>
|
||||||
<url>http://code.google.com/p/bitcoinj</url>
|
<url>http://code.google.com/p/bitcoinj</url>
|
||||||
|
|
||||||
<ciManagement>
|
|
||||||
<url>http://ci.bitcoinj.org/</url>
|
|
||||||
</ciManagement>
|
|
||||||
|
|
||||||
<licenses>
|
<licenses>
|
||||||
<license>
|
<license>
|
||||||
<name>Apache 2</name>
|
<name>Apache 2</name>
|
||||||
@ -42,16 +50,12 @@
|
|||||||
</mailingList>
|
</mailingList>
|
||||||
</mailingLists>
|
</mailingLists>
|
||||||
|
|
||||||
<distributionManagement>
|
<repositories>
|
||||||
<repository>
|
<repository>
|
||||||
<id>bitcoinj-distribution</id>
|
<id>bitcoinj-distribution</id>
|
||||||
<url>https://distribution.bitcoinj.googlecode.com/git/releases</url>
|
<url>https://distribution.bitcoinj.googlecode.com/git/releases</url>
|
||||||
</repository>
|
</repository>
|
||||||
</distributionManagement>
|
</repositories>
|
||||||
|
|
||||||
<scm>
|
|
||||||
<url>http://code.google.com/p/bitcoinj/source/checkout</url>
|
|
||||||
</scm>
|
|
||||||
|
|
||||||
<!-- Common build plugin configuration -->
|
<!-- Common build plugin configuration -->
|
||||||
<build>
|
<build>
|
||||||
@ -71,21 +75,7 @@
|
|||||||
</plugins>
|
</plugins>
|
||||||
</build>
|
</build>
|
||||||
|
|
||||||
<!-- Common dependencies -->
|
|
||||||
<dependencyManagement>
|
|
||||||
<dependencies>
|
<dependencies>
|
||||||
<dependency>
|
|
||||||
<groupId>junit</groupId>
|
|
||||||
<artifactId>junit</artifactId>
|
|
||||||
<version>4.11</version>
|
|
||||||
<scope>test</scope>
|
|
||||||
</dependency>
|
|
||||||
<dependency>
|
|
||||||
<groupId>org.easymock</groupId>
|
|
||||||
<artifactId>easymock</artifactId>
|
|
||||||
<version>${easymock.version}</version>
|
|
||||||
<scope>test</scope>
|
|
||||||
</dependency>
|
|
||||||
<dependency>
|
<dependency>
|
||||||
<groupId>org.slf4j</groupId>
|
<groupId>org.slf4j</groupId>
|
||||||
<artifactId>slf4j-api</artifactId>
|
<artifactId>slf4j-api</artifactId>
|
||||||
@ -101,30 +91,8 @@
|
|||||||
<scope>runtime</scope>
|
<scope>runtime</scope>
|
||||||
<optional>true</optional>
|
<optional>true</optional>
|
||||||
</dependency>
|
</dependency>
|
||||||
|
|
||||||
<dependency>
|
|
||||||
<groupId>com.madgag</groupId>
|
|
||||||
<artifactId>sc-light-jdk15on</artifactId>
|
|
||||||
<version>1.47.0.2</version>
|
|
||||||
</dependency>
|
|
||||||
|
|
||||||
<dependency>
|
|
||||||
<groupId>com.google.protobuf</groupId>
|
|
||||||
<artifactId>protobuf-java</artifactId>
|
|
||||||
<version>2.5.0</version>
|
|
||||||
</dependency>
|
|
||||||
|
|
||||||
<dependency>
|
|
||||||
<groupId>com.lambdaworks</groupId>
|
|
||||||
<artifactId>scrypt</artifactId>
|
|
||||||
<version>1.3.3</version>
|
|
||||||
</dependency>
|
|
||||||
|
|
||||||
</dependencies>
|
</dependencies>
|
||||||
|
|
||||||
</dependencyManagement>
|
|
||||||
|
|
||||||
<!-- Common properties -->
|
|
||||||
<properties>
|
<properties>
|
||||||
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
|
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
|
||||||
<!-- Third-party dependencies -->
|
<!-- Third-party dependencies -->
|
||||||
|
Loading…
x
Reference in New Issue
Block a user