...
In general you should set entities up in the order that they appear above. The entities are described in detail below.
Anchor | ZZ | ZZ |
---|
ZZ
Stuff
...
|
Application Release Components
Stuff
...
Anchor | ||||
---|---|---|---|---|
|
Repositories
Repositories are maven repositories, accessible to moves over http/https. An example is the the SAIS Group repository at https://maven-mit-edu.ezproxyberklee.flo.org/nexus/content/groups/saisGroupRepo. Maven has a well defined format, which specifies where to find an application within a repository. Each Application has an 'ArtifactId', a 'GroupId' and a 'Version'. So, for example, moves itself has artifactId=sais-moves-web, groupId=edu.mit.ist.es, versionId=2.0.0. Maven will translate this, by default into a final location of https://maven-mit-edu.ezproxyberklee.flo.org/nexus/content/groups/saisGroupRepo/edu/mit/ist/es/sais-moves-web/2.0.0/sais-moves-web-2.0.0.war" The properties you need to configure for a repository are:
...
Property Name | Description | ||
---|---|---|---|
${groupId} | replaced with the groupId of the application being deployed | ||
${artifactId} | replaced with the artifactId of the application being deployed | ||
${version} | replaced with the version of the application being deployed | ||
<ac:structured-macro ac:name="unmigrated-wiki-markup" ac:schema-version="1" ac:macro-id="9c745abf7c4dd781-981670e7-444c4046-92869d17-d2d2459eb85752140acfd52b"><ac:plain-text-body><![CDATA[ | ${app.[paramName]} | replaced with the parameter value with key 'paramName' of the application being deployed | ]]></ac:plain-text-body></ac:structured-macro> |
...