Accessing Artifacts

Please note that the artifacts of our projects are currently not available on the Maven Central Repository. They can be downloaded from the smartics artifact server at https://www.smartics.eu/nexus/index.html.

If you want to integrate this plugin into your Maven build, please add the following repository to the profiles section of your settings.xml.

<profile>
  <id>smartics-repositories</id>
  <repositories>
    <repository>
      <id>smartics</id>
      <url>http://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>http://www.smartics.eu/nexus/content/groups/public-group</url>
      <releases>
        <enabled>true</enabled>
      </releases>
      <snapshots>
        <enabled>false</enabled>
      </snapshots>
    </pluginRepository>
  </pluginRepositories>
</profile>