Page tree

 

Instructions on how to download the artifact of this project.

Audience
Level of Experience

The artifact of this project is made available via an artifact repository.

This howto explains the options on how to access the JAR archive.

Maven

The plugin can be integrated into a Maven build process of Java projects easily.

Dependency

If you want to integrate this plugin into your Maven build, use the following coordinates:

de.smartics.maven.plugin:apptools-maven-plugin:0.12.0
<plugin>
  <groupId>de.smartics.maven.plugin</groupId>
  <artifactId>apptools-maven-plugin</artifactId>
  <version>0.12.0</version>
</plugin>

Corporation Repository

Please note that the artifact of this projects are (currently) not available on the Maven Central Repository. It can be access on the smartics artifact repository.

If you want to access artifacts from this server in your Maven build, the recommended way would be to add it to the configuration of your own artifact server.

If this is not feasible, the second option is to add the following snippet to the profiles section of your settings.xml.

<profile>
  <id>smartics-repositories</id>
  <repositories>
    <repository>
      <id>smartics</id>
      <url>https://www.smartics.eu/nexus/content/groups/public-group</url>
      <releases>
        <enabled>true</enabled>
      </releases>
      <snapshots>
        <enabled>false</enabled>
      </snapshots>
    </repository>
  </repositories>
  <pluginRepositories>
    <pluginRepository>
      <id>smartics</id>
      <url>https://www.smartics.eu/nexus/content/groups/public-group</url>
      <releases>
        <enabled>true</enabled>
      </releases>
      <snapshots>
        <enabled>false</enabled>
      </snapshots>
    </pluginRepository>
  </pluginRepositories>
</profile>

You may also add the repositories to your Maven POM file, but usually adding them to your settings is recommended.

  • No labels