Skip to content
Snippets Groups Projects
Commit 2963ef60 authored by Joseph Walton-Rivers's avatar Joseph Walton-Rivers
Browse files

use fossgalaxy properties to populate urls

parent 0436abc2
No related branches found
No related tags found
No related merge requests found
...@@ -9,29 +9,32 @@ ...@@ -9,29 +9,32 @@
<name>FOSS Galaxy POM</name> <name>FOSS Galaxy POM</name>
<description>A super POM for FOSS Galaxy projects.</description> <description>A super POM for FOSS Galaxy projects.</description>
<url>https://git.fossgalaxy.com/infrastructure/maven-parent</url> <url>https://pages.fossgalaxy.com/${fossgalaxy.owner.id}/${fossgalaxy.repo.id}</url>
<properties> <properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<!-- Require java 1.8 --> <!-- Require java 1.8 -->
<maven.compiler.source>1.8</maven.compiler.source> <maven.compiler.source>1.8</maven.compiler.source>
<maven.compiler.target>1.8</maven.compiler.target> <maven.compiler.target>1.8</maven.compiler.target>
<!-- fossgalaxy specific -->
<fossgalaxy.owner.id>infrastructure</fossgalaxy.owner.id>
<fossgalaxy.repo.id>${project.artifactId}</fossgalaxy.repo.id>
</properties> </properties>
<!-- by default, we assume GPLv3 --> <!-- by default, we assume GPLv3 -->
<licenses> <licenses>
<license> <license>
<name>GNU General Public License, Version 3.0</name> <name>GNU General Public License, Version 3.0</name>
<url>https://www.gnu.org/licenses/gpl-3.0.txt</url> <url>https://www.gnu.org/licenses/gpl-3.0.txt</url>
</license> </license>
</licenses> </licenses>
<!-- FOSS Galaxy Git SCM settings --> <!-- FOSS Galaxy Git SCM settings -->
<scm> <scm>
<connection>scm:git:git://git@git.fossgalaxy.com:infrastructure/maven-parent.git</connection> <connection>scm:git:git://git@git.fossgalaxy.com:${fossgalaxy.owner.id}/${fossgalaxy.repo.id}.git</connection>
<developerConnection>scm:git:ssh://git@git.fossgalaxy.com:infrastructure/maven-parent.git</developerConnection> <developerConnection>scm:git:ssh://git@git.fossgalaxy.com:${fossgalaxy.owner.id}/${fossgalaxy.repo.id}.git</developerConnection>
<url>https://git.fossgalaxy.com/infrastructure/maven-parent</url> <url>https://git.fossgalaxy.com/${fossgalaxy.owner.id}/${fossgalaxy.repo.id}</url>
</scm> </scm>
<!-- tag FossGalaxy projects --> <!-- tag FossGalaxy projects -->
<organization> <organization>
...@@ -60,7 +63,6 @@ ...@@ -60,7 +63,6 @@
</repository> </repository>
<site> <site>
<id>fossgalaxy.website.static</id> <id>fossgalaxy.website.static</id>
<name>Mojo Website</name>
<url>scp://docs.fossgalaxy.com/srv/public_sites/${project.artifactId}</url> <url>scp://docs.fossgalaxy.com/srv/public_sites/${project.artifactId}</url>
</site> </site>
</distributionManagement> </distributionManagement>
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment