Skip to content

Commit

Permalink
Change pom ref to 5.0.2
Browse files Browse the repository at this point in the history
  • Loading branch information
pietrangelo committed Nov 26, 2018
1 parent 76210c2 commit 169d667
Show file tree
Hide file tree
Showing 4 changed files with 38 additions and 24 deletions.
12 changes: 6 additions & 6 deletions admin-console/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -4,11 +4,11 @@
<parent>
<artifactId>entando-core</artifactId>
<groupId>org.entando.entando</groupId>
<version>5.0.2-SNAPSHOT</version>
<version>5.0.2</version>
</parent>
<groupId>org.entando.entando</groupId>
<artifactId>entando-admin-console</artifactId>
<version>5.0.2-SNAPSHOT</version>
<version>5.0.2</version>
<packaging>war</packaging>
<name>Entando Core: Administration Console</name>
<description>Entando Administration Console: an agile, modern and user-centric open source Portal platform.</description>
Expand Down Expand Up @@ -187,8 +187,8 @@
<phase>deploy</phase>
<configuration>
<file>${project.build.directory}/${project.build.finalName}.jar</file>
<url>${maven-repository-url-release}</url>
<repositoryId>nexus-release</repositoryId>
<url>${maven-repository-url-sonatype}</url>
<repositoryId>sonatype-nexus-staging</repositoryId>
<generatePom>false</generatePom>
<pomFile>pom.xml</pomFile>
<packaging>jar</packaging>
Expand Down Expand Up @@ -260,12 +260,12 @@
<dependency>
<groupId>org.entando.entando</groupId>
<artifactId>entando-engine</artifactId>
<version>5.0.2-SNAPSHOT</version>
<version>5.0.2</version>
</dependency>
<dependency>
<groupId>org.entando.entando</groupId>
<artifactId>entando-engine</artifactId>
<version>5.0.2-SNAPSHOT</version>
<version>5.0.2</version>
<type>test-jar</type>
<scope>test</scope>
</dependency>
Expand Down
4 changes: 2 additions & 2 deletions engine/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -4,12 +4,12 @@
<parent>
<artifactId>entando-core</artifactId>
<groupId>org.entando.entando</groupId>
<version>5.0.2-SNAPSHOT</version>
<version>5.0.2</version>
</parent>
<groupId>org.entando.entando</groupId>
<artifactId>entando-engine</artifactId>
<packaging>jar</packaging>
<version>5.0.2-SNAPSHOT</version>
<version>5.0.2</version>
<name>Entando Core: Engine</name>
<description>Entando Engine: an agile, modern and user-centric open source Portal platform.</description>
<url>http://www.entando.com/</url>
Expand Down
28 changes: 21 additions & 7 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
<modelVersion>4.0.0</modelVersion>
<groupId>org.entando.entando</groupId>
<artifactId>entando-core</artifactId>
<version>5.0.2-SNAPSHOT</version>
<version>5.0.2</version>
<packaging>pom</packaging>
<name>Entando Core</name>
<description>Entando Core: an agile, modern and user-centric open source Portal platform.</description>
Expand All @@ -19,7 +19,7 @@
<connection>scm:git:[email protected]:entando/entando-core.git</connection>
<developerConnection>scm:git:[email protected]:entando/entando-core.git</developerConnection>
<url>https://github.com/entando/entando-core</url>
<tag>v5.0.2-dev</tag>
<tag>v5.0.2</tag>
</scm>
<organization>
<name>Entando Inc.</name>
Expand Down Expand Up @@ -90,15 +90,29 @@
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-source-plugin</artifactId>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-javadoc-plugin</artifactId>
<version>2.2.1</version>
<executions>
<execution>
<id>attach-sources</id>
<goals>
<goal>jar-no-fork</goal>
</goals>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-gpg-plugin</artifactId>

<version>1.5</version>
<executions>
<execution>
<id>sign-artifacts</id>
<phase>verify</phase>
<goals>
<goal>sign</goal>
</goals>
</execution>
</executions>
</plugin>

<plugin>
Expand Down
18 changes: 9 additions & 9 deletions portal-ui/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -4,11 +4,11 @@
<parent>
<artifactId>entando-core</artifactId>
<groupId>org.entando.entando</groupId>
<version>5.0.2-SNAPSHOT</version>
<version>5.0.2</version>
</parent>
<groupId>org.entando.entando</groupId>
<artifactId>entando-portal-ui</artifactId>
<version>5.0.2-SNAPSHOT</version>
<version>5.0.2</version>
<packaging>war</packaging>
<name>Entando Core: Portal UI</name>
<description>Entando Portal UI: an agile, modern and user-centric open source Portal platform.</description>
Expand Down Expand Up @@ -186,8 +186,8 @@
<phase>deploy</phase>
<configuration>
<file>${project.build.directory}/${project.build.finalName}.jar</file>
<url>${maven-repository-url-release}</url>
<repositoryId>nexus-release</repositoryId>
<url>${maven-repository-url-sonatype}</url>
<repositoryId>sonatype-nexus-staging</repositoryId>
<generatePom>false</generatePom>
<pomFile>pom.xml</pomFile>
<packaging>jar</packaging>
Expand Down Expand Up @@ -259,12 +259,12 @@
<dependency>
<groupId>org.entando.entando</groupId>
<artifactId>entando-engine</artifactId>
<version>5.0.2-SNAPSHOT</version>
<version>5.0.2</version>
</dependency>
<dependency>
<groupId>org.entando.entando</groupId>
<artifactId>entando-engine</artifactId>
<version>5.0.2-SNAPSHOT</version>
<version>5.0.2</version>
<type>test-jar</type>
<scope>test</scope>
</dependency>
Expand All @@ -274,18 +274,18 @@
<dependency>
<groupId>org.entando.entando</groupId>
<artifactId>entando-admin-console</artifactId>
<version>5.0.2-SNAPSHOT</version>
<version>5.0.2</version>
</dependency>
<dependency>
<groupId>org.entando.entando</groupId>
<artifactId>entando-admin-console</artifactId>
<version>5.0.2-SNAPSHOT</version>
<version>5.0.2</version>
<type>war</type>
</dependency>
<dependency>
<groupId>org.entando.entando</groupId>
<artifactId>entando-admin-console</artifactId>
<version>5.0.2-SNAPSHOT</version>
<version>5.0.2</version>
<type>test-jar</type>
<scope>test</scope>
</dependency>
Expand Down

0 comments on commit 169d667

Please sign in to comment.