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,11 +1,20 @@
<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"
<modelVersion>4.0.0</modelVersion> xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
<parent> xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
<groupId>org.gcube.information-system</groupId> <modelVersion>4.0.0</modelVersion>
<artifactId>is-monitor</artifactId> <parent>
<version>1.0.0-SNAPSHOT</version> <groupId>org.gcube.information-system</groupId>
</parent> <artifactId>is-monitor</artifactId>
<artifactId>is-monitor-backend</artifactId> <version>1.0.0-SNAPSHOT</version>
<name>IS Monitor Backend</name> </parent>
<description>IS Monitor Backend</description> <artifactId>is-monitor-backend</artifactId>
<name>IS Monitor Backend</name>
<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>

45
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"
<modelVersion>4.0.0</modelVersion> xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
<parent> xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
<groupId>org.gcube.tools</groupId> <modelVersion>4.0.0</modelVersion>
<artifactId>maven-parent</artifactId> <parent>
<version>1.1.0</version> <groupId>org.gcube.tools</groupId>
</parent> <artifactId>maven-parent</artifactId>
<groupId>org.gcube.information-system</groupId> <version>1.1.0</version>
<artifactId>is-monitor</artifactId> </parent>
<version>1.0.0-SNAPSHOT</version>
<packaging>pom</packaging> <groupId>org.gcube.information-system</groupId>
<name>IS Monitor</name> <artifactId>is-monitor</artifactId>
<description>IS Monitor</description> <version>1.0.0-SNAPSHOT</version>
<modules> <packaging>pom</packaging>
<module>is-monitor-backend</module> <name>IS Monitor</name>
<module>is-monitor-frontend</module> <description>IS Monitor</description>
</modules>
<modules>
<module>is-monitor-backend</module>
<module>is-monitor-frontend</module>
</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>