-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Improved settings.xml.dist file, docker-compose.yml now has a mount f…
…or the .gunpg folder, sync script now runs deploy rather than install
- Loading branch information
Showing
3 changed files
with
54 additions
and
45 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,48 +1,55 @@ | ||
<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"> | ||
|
||
|
||
<profiles> | ||
<profile> | ||
<id>myProfile</id> | ||
<activation> | ||
<activeByDefault>true</activeByDefault> | ||
</activation> | ||
|
||
<repositories> | ||
<!-- | ||
<repository> | ||
<id>host-repo</id> | ||
<name>host repository</name> | ||
<url>file://${user.home}/.m2/host-repository</url> | ||
</repository> | ||
--> | ||
|
||
<repository> | ||
<id>watched-repo</id> | ||
<name>watched repository</name> | ||
<url>file:///repository</url> | ||
</repository> | ||
|
||
|
||
<repository> | ||
<id>cache-repo</id> | ||
<name>cache repository</name> | ||
<url>file://${user.home}/.m2/cache-repository</url> | ||
</repository> | ||
|
||
<!-- Always use the default repository for lookups even if it is overridden --> | ||
<repository> | ||
<id>default-repo</id> | ||
<name>default repository</name> | ||
<url>file://${user.home}/.m2/repository</url> | ||
</repository> | ||
|
||
</repositories> | ||
<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"> | ||
|
||
<profiles> | ||
<profile> | ||
<id>myProfile</id> | ||
<activation> | ||
<activeByDefault>true</activeByDefault> | ||
</activation> | ||
|
||
<repositories> | ||
<!-- Always use the default repository for lookups even if it is overridden --> | ||
<repository> | ||
<id>default-repo</id> | ||
<name>default repository</name> | ||
<url>file://${user.home}/.m2/repository</url> | ||
</repository> | ||
|
||
<repository> | ||
<id>watched-repo</id> | ||
<name>watched repository</name> | ||
<url>file:///repository</url> | ||
</repository> | ||
|
||
<repository> | ||
<id>cache-repo</id> | ||
<name>cache repository</name> | ||
<url>file://${user.home}/.m2/cache-repository</url> | ||
</repository> | ||
</repositories> | ||
</profile> | ||
|
||
<profile> | ||
<id>gpg-signing</id> | ||
<properties> | ||
<gpg.keyname>GPG_SIGNING_KEYNAME</gpg.keyname> | ||
</properties> | ||
</profile> | ||
</profiles> | ||
</profiles> | ||
|
||
<!-- Adjust the server ids such that they match the repository configurations in the pom files --> | ||
<servers> | ||
<server> | ||
<id>maven.aksw.internal</id> | ||
<username>UserName</username> | ||
<password>SECRET</password> | ||
</server> | ||
<server> | ||
<id>maven.aksw.snapshots</id> | ||
<username>UserName</username> | ||
<password>SECRET</password> | ||
</server> | ||
</servers> | ||
|
||
</settings> |