Add dependencies

contraect-maven-plugin

<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

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>

Last updated