contraect-maven-plugin
  • Introduction
  • Use the plugin
    • Add dependencies
    • Plugin configuration
    • Plugin execution
      • Error Codes
  • Use the generated classes
    • Contraect interaction
    • Example applications
Powered by GitBook
On this page
  1. Use the plugin

Add dependencies

PreviousIntroductionNextPlugin configuration

Last updated 4 years ago

Was this helpful?

CtrlK
  • contraect-maven-plugin
  • aepp-sdk-java

Was this helpful?

contraect-maven-plugin

Latest version:

<build>
	<plugins>
		<plugin>
			<groupId>com.kryptokrauts</groupId>
			<artifactId>contraect-maven-plugin</artifactId>
			<version>2.0.0-RC1</version>
			<configuration>
				...
			</configuration>
		</plugin>
	</plugins>
</build>

The content of <configuration> section is covered in the Plugin configuration.

aepp-sdk-java

Latest version:

Under the hood the plugin as well as the generated classes make use of the aepp-sdk-java to implement the interaction with the aeternity node. Therefore the dependency needs to be declared in the corresponding section - please make sure to always use the latest version of the SDK.

<dependency>
	<groupId>com.kryptokrauts</groupId>
	<artifactId>aepp-sdk-java</artifactId>
	<version>3.0.0-RC1</version
</dependency>
Download
Download