Update pom.xml to include developer information and organization details; set Java version to 17 and updated dependency version to 4.0.1-SNAPSHOT.
This commit is contained in:
parent
4f2e16ebd8
commit
44c420cfdc
31
pom.xml
31
pom.xml
|
|
@ -14,11 +14,32 @@
|
|||
<name>Resource Registry Publisher Connector</name>
|
||||
<description>Smartgears Publisher to publish HostingNode and EService on Resource Registry</description>
|
||||
|
||||
<properties>
|
||||
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
|
||||
<maven.compiler.source>11</maven.compiler.source>
|
||||
<maven.compiler.target>11</maven.compiler.target>
|
||||
<organization>
|
||||
<name>gCube System</name>
|
||||
<url>https://www.gcube-system.org/</url>
|
||||
</organization>
|
||||
|
||||
<developers>
|
||||
<developer>
|
||||
<id>luca.frosini</id>
|
||||
<name>Luca Frosini</name>
|
||||
<email>luca.frosini@isti.cnr.it</email>
|
||||
<url>https://www.isti.cnr.it/en/about/people-detail/141/Frosini_Luca</url>
|
||||
<organization>ISTI-CNR</organization>
|
||||
<organizationUrl>https://www.isti.cnr.it/</organizationUrl>
|
||||
<roles>
|
||||
<role>researcher</role>
|
||||
<role>developer</role>
|
||||
</roles>
|
||||
<timezone>Europe/Rome</timezone>
|
||||
</developer>
|
||||
</developers>
|
||||
|
||||
<properties>
|
||||
<java.version>17</java.version>
|
||||
<maven.compiler.source>${java.version}</maven.compiler.source>
|
||||
<maven.compiler.target>${java.version}</maven.compiler.target>
|
||||
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
|
||||
</properties>
|
||||
|
||||
<scm>
|
||||
|
|
@ -33,7 +54,7 @@
|
|||
<dependency>
|
||||
<groupId>org.gcube.distribution</groupId>
|
||||
<artifactId>gcube-smartgears-bom</artifactId>
|
||||
<version>4.0.0</version>
|
||||
<version>4.0.1-SNAPSHOT</version>
|
||||
<type>pom</type>
|
||||
<scope>import</scope>
|
||||
</dependency>
|
||||
|
|
|
|||
Loading…
Reference in New Issue