0% found this document useful (0 votes)
10 views1 page

Po Script

This document is a Maven Project Object Model (POM) file for a project named 'project1solution' with a version of '1.0-SNAPSHOT'. It specifies the use of Java 1.8 for compilation and includes several dependencies such as bitcoinj-core, JUnit for testing, and Log4j for logging. The document outlines the project's structure and required plugins for building the application.

Uploaded by

wallazb.999
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as TXT, PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
10 views1 page

Po Script

This document is a Maven Project Object Model (POM) file for a project named 'project1solution' with a version of '1.0-SNAPSHOT'. It specifies the use of Java 1.8 for compilation and includes several dependencies such as bitcoinj-core, JUnit for testing, and Log4j for logging. The document outlines the project's structure and required plugins for building the application.

Uploaded by

wallazb.999
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as TXT, PDF, TXT or read online on Scribd

<?xml version="1.0" encoding="UTF-8"?

>
<project xmlns="[Link]
xmlns:xsi="[Link]
xsi:schemaLocation="[Link]
[Link]
<modelVersion>4.0.0</modelVersion>

<groupId>[Link].csci3033</groupId>
<artifactId>project1solution</artifactId>
<version>1.0-SNAPSHOT</version>
<build>
<plugins>
<plugin>
<groupId>[Link]</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<version>3.1</version>
<configuration>
<source>1.8</source>
<target>1.8</target>
</configuration>
</plugin>
</plugins>
</build>

<dependencies>
<dependency>
<groupId>[Link]</groupId>
<artifactId>bitcoinj-core</artifactId>
<version>0.14.5</version>
</dependency>
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<version>4.11</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>[Link].log4j</groupId>
<artifactId>log4j-api</artifactId>
<version>2.3</version>
</dependency>
<dependency>
<groupId>[Link].log4j</groupId>
<artifactId>log4j-core</artifactId>
<version>2.3</version>
</dependency>
<dependency>
<groupId>[Link].log4j</groupId>
<artifactId>log4j-slf4j-impl</artifactId>
<version>2.3</version>
</dependency>
</dependencies>
</project>

You might also like