Skip to content

Instantly share code, notes, and snippets.

@sz332
Created December 17, 2023 17:05
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save sz332/da1f0d9ac966ded17374e87c121dad35 to your computer and use it in GitHub Desktop.
Save sz332/da1f0d9ac966ded17374e87c121dad35 to your computer and use it in GitHub Desktop.
Sirius Web Config
<settings xmlns="http://maven.apache.org/SETTINGS/1.0.0"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://maven.apache.org/SETTINGS/1.0.0
http://maven.apache.org/xsd/settings-1.0.0.xsd">
<activeProfiles>
<activeProfile>github</activeProfile>
</activeProfiles>
<profiles>
<profile>
<id>github</id>
<repositories>
<repository>
<id>central</id>
<url>https://repo1.maven.org/maven2</url>
<releases><enabled>true</enabled></releases>
<snapshots><enabled>true</enabled></snapshots>
</repository>
<repository>
<id>github-sirius-emfjson</id>
<name>Sirius EMF JSON - Maven Packages</name>
<url>https://maven.pkg.github.com/eclipse-sirius/sirius-emf-json</url>
</repository>
<repository>
<id>github-flow</id>
<url>https://maven.pkg.github.com/ObeoNetwork/Flow-Designer</url>
</repository>
<repository>
<id>bpmn</id>
<url>https://maven.pkg.github.com/ObeoNetwork/BPMN-Designer</url>
</repository>
</repositories>
</profile>
</profiles>
<servers>
<server>
<id>github-sirius-emfjson</id>
<username>${env.USERNAME}</username>
<password>${env.PASSWORD}</password>
</server>
<server>
<id>github-flow</id>
<username>${env.USERNAME}</username>
<password>${env.PASSWORD}</password>
</server>
<server>
<id>bpmn</id>
<username>${env.USERNAME}</username>
<password>${env.PASSWORD}</password>
</server>
</servers>
</settings>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment