Addes 'scm' section

This commit is contained in:
Luca Frosini 2019-10-03 12:57:18 +02:00
parent c9715831a6
commit ac8be3648b
3 changed files with 56 additions and 28 deletions

View File

@ -1,4 +1,6 @@
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> <project xmlns="http://maven.apache.org/POM/4.0.0"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion> <modelVersion>4.0.0</modelVersion>
<parent> <parent>
<groupId>org.gcube.information-system</groupId> <groupId>org.gcube.information-system</groupId>
@ -8,4 +10,11 @@
<artifactId>is-monitor-backend</artifactId> <artifactId>is-monitor-backend</artifactId>
<name>IS Monitor Backend</name> <name>IS Monitor Backend</name>
<description>IS Monitor Backend</description> <description>IS Monitor Backend</description>
<scm>
<connection>scm:git:https://code-repo.d4science.org/gCubeSystem/is-monitor.git</connection>
<developerConnection>scm:git:https://code-repo.d4science.org/gCubeSystem/is-monitor.git</developerConnection>
<url>https://code-repo.d4science.org/gCubeSystem/is-monitor</url>
</scm>
</project> </project>

View File

@ -7,10 +7,18 @@
<artifactId>is-monitor</artifactId> <artifactId>is-monitor</artifactId>
<version>1.0.0-SNAPSHOT</version> <version>1.0.0-SNAPSHOT</version>
</parent> </parent>
<artifactId>is-monitor-frontend</artifactId> <artifactId>is-monitor-frontend</artifactId>
<name>IS Monitor Frontend</name> <name>IS Monitor Frontend</name>
<description>IS Monitor Frontend</description> <description>IS Monitor Frontend</description>
<scm>
<connection>scm:git:https://code-repo.d4science.org/gCubeSystem/is-monitor.git</connection>
<developerConnection>scm:git:https://code-repo.d4science.org/gCubeSystem/is-monitor.git</developerConnection>
<url>https://code-repo.d4science.org/gCubeSystem/is-monitor</url>
</scm>
<build> <build>
<plugins> <plugins>
<plugin> <plugin>

13
pom.xml
View File

@ -1,18 +1,29 @@
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> <project xmlns="http://maven.apache.org/POM/4.0.0"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion> <modelVersion>4.0.0</modelVersion>
<parent> <parent>
<groupId>org.gcube.tools</groupId> <groupId>org.gcube.tools</groupId>
<artifactId>maven-parent</artifactId> <artifactId>maven-parent</artifactId>
<version>1.1.0</version> <version>1.1.0</version>
</parent> </parent>
<groupId>org.gcube.information-system</groupId> <groupId>org.gcube.information-system</groupId>
<artifactId>is-monitor</artifactId> <artifactId>is-monitor</artifactId>
<version>1.0.0-SNAPSHOT</version> <version>1.0.0-SNAPSHOT</version>
<packaging>pom</packaging> <packaging>pom</packaging>
<name>IS Monitor</name> <name>IS Monitor</name>
<description>IS Monitor</description> <description>IS Monitor</description>
<modules> <modules>
<module>is-monitor-backend</module> <module>is-monitor-backend</module>
<module>is-monitor-frontend</module> <module>is-monitor-frontend</module>
</modules> </modules>
<scm>
<connection>scm:git:https://code-repo.d4science.org/gCubeSystem/${project.artifactId}.git</connection>
<developerConnection>scm:git:https://code-repo.d4science.org/gCubeSystem/${project.artifactId}.git</developerConnection>
<url>https://code-repo.d4science.org/gCubeSystem/${project.artifactId}</url>
</scm>
</project> </project>