Conversation Prompt

You add this to your pom file and have to shade this library inside your plugin.

    <repositories>
	<repository>
	  <id>jitpack.io</id>
          <url>https://jitpack.io</url>
	</repository>
    </repositories>
	
	
    <dependencies>
        <dependency>
            <groupId>org.broken.arrow.library</groupId>
            <artifactId>Conversation-Prompt</artifactId>
            <version>typeVersion</version>
            <scope>compile</scope>
        </dependency>
    </dependencies>

If you plan to use the UtilityLibrary plugin or multiple modules and do not want to add a dependency for each module. You can use below dependency instead of the dependency above.

    <dependencies>
      <dependency>
            <groupId>com.github.broken1arrow.Utility-Library</groupId>
            <artifactId>Utility-Library</artifactId>
            <version>typeRightVersion</version>
            // This depends on if you whant to compile or 
            // only provide the dependency.
            <scope>compile</scope>
            <scope>provided</scope>
        </dependency> 
    </dependencies>

Last updated