Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

Setting up a Jasig project to publish a Maven site.

Code Block
xml
xml
<profiles>
    <profile>
        <id>ci-local-site</id>
        <distributionManagement>
            <site>
                <id>ci-local-site</id>
                <url>${jasig-site-ci-dist-base}${project-site-path}</url>
            </site>
        </distributionManagement>
    </profile>
    <profile>
        <id>manual-site</id>
        <distributionManagement>
            <site>
                <id>developer.jasig</id>
                <url>${jasig-site-dist-base}${project-site-path}</url>
            </site>
        </distributionManagement>
    </profile>
</profiles>