Configuring Maven
Point Maven at the Seal Artifact Server using pom.xml and settings.xml.
Configuration
Step 1: Add the repository to pom.xml
<repositories>
<repository>
<id>seal-security</id>
<url>https://maven.sealsecurity.io/</url>
</repository>
</repositories>Step 2: Add credentials to settings.xml
<settings>
<servers>
<server>
<id>seal-security</id>
<username>${env.SEAL_PROJECT}</username>
<password>${env.SEAL_TOKEN}</password>
</server>
</servers>
</settings>Step 3: Set the environment variables when building
Verify
Related
Last updated