mirror of
https://repository.entgra.net/community/product-iots-community.git
synced 2025-09-16 23:32:20 +00:00
[maven-release-plugin] prepare release v5.0.0
This commit is contained in:
parent
81a3b95b09
commit
31f0383741
@ -22,7 +22,7 @@
|
|||||||
<parent>
|
<parent>
|
||||||
<groupId>io.entgra.community</groupId>
|
<groupId>io.entgra.community</groupId>
|
||||||
<artifactId>distribution</artifactId>
|
<artifactId>distribution</artifactId>
|
||||||
<version>5.0.0-SNAPSHOT</version>
|
<version>5.0.0</version>
|
||||||
<relativePath>../pom.xml</relativePath>
|
<relativePath>../pom.xml</relativePath>
|
||||||
</parent>
|
</parent>
|
||||||
|
|
||||||
|
|||||||
@ -22,7 +22,7 @@
|
|||||||
<parent>
|
<parent>
|
||||||
<groupId>io.entgra.community</groupId>
|
<groupId>io.entgra.community</groupId>
|
||||||
<artifactId>distribution</artifactId>
|
<artifactId>distribution</artifactId>
|
||||||
<version>5.0.0-SNAPSHOT</version>
|
<version>5.0.0</version>
|
||||||
<relativePath>../pom.xml</relativePath>
|
<relativePath>../pom.xml</relativePath>
|
||||||
</parent>
|
</parent>
|
||||||
|
|
||||||
|
|||||||
@ -22,7 +22,7 @@
|
|||||||
<parent>
|
<parent>
|
||||||
<groupId>io.entgra.community</groupId>
|
<groupId>io.entgra.community</groupId>
|
||||||
<artifactId>community-parent</artifactId>
|
<artifactId>community-parent</artifactId>
|
||||||
<version>5.0.0-SNAPSHOT</version>
|
<version>5.0.0</version>
|
||||||
<relativePath>../pom.xml</relativePath>
|
<relativePath>../pom.xml</relativePath>
|
||||||
</parent>
|
</parent>
|
||||||
|
|
||||||
|
|||||||
@ -22,7 +22,7 @@
|
|||||||
<parent>
|
<parent>
|
||||||
<groupId>io.entgra.community</groupId>
|
<groupId>io.entgra.community</groupId>
|
||||||
<artifactId>community-parent</artifactId>
|
<artifactId>community-parent</artifactId>
|
||||||
<version>5.0.0-SNAPSHOT</version>
|
<version>5.0.0</version>
|
||||||
<relativePath>../pom.xml</relativePath>
|
<relativePath>../pom.xml</relativePath>
|
||||||
</parent>
|
</parent>
|
||||||
|
|
||||||
@ -56,7 +56,7 @@
|
|||||||
</goals>
|
</goals>
|
||||||
<configuration>
|
<configuration>
|
||||||
<target name="check-pack">
|
<target name="check-pack">
|
||||||
<available file="${wso2am}.zip" property="pack.exists"/>
|
<available file="${wso2am}.zip" property="pack.exists" />
|
||||||
</target>
|
</target>
|
||||||
</configuration>
|
</configuration>
|
||||||
</execution>
|
</execution>
|
||||||
@ -68,10 +68,7 @@
|
|||||||
</goals>
|
</goals>
|
||||||
<configuration>
|
<configuration>
|
||||||
<target name="download-pack" unless="pack.exists">
|
<target name="download-pack" unless="pack.exists">
|
||||||
<get src="${wso2am-download-url}"
|
<get src="${wso2am-download-url}" dest="${basedir}" verbose="false" usetimestamp="true" />
|
||||||
dest="${basedir}"
|
|
||||||
verbose="false"
|
|
||||||
usetimestamp="true"/>
|
|
||||||
</target>
|
</target>
|
||||||
</configuration>
|
</configuration>
|
||||||
</execution>
|
</execution>
|
||||||
@ -83,7 +80,7 @@
|
|||||||
</goals>
|
</goals>
|
||||||
<configuration>
|
<configuration>
|
||||||
<target name="extract-pack">
|
<target name="extract-pack">
|
||||||
<unzip src="${wso2am}.zip" dest="target" overwrite="true"/>
|
<unzip src="${wso2am}.zip" dest="target" overwrite="true" />
|
||||||
</target>
|
</target>
|
||||||
</configuration>
|
</configuration>
|
||||||
</execution>
|
</execution>
|
||||||
@ -95,16 +92,16 @@
|
|||||||
</goals>
|
</goals>
|
||||||
<configuration>
|
<configuration>
|
||||||
<target name="replace dbscripts to avoid tenant creation issue ">
|
<target name="replace dbscripts to avoid tenant creation issue ">
|
||||||
<replace file="target/${wso2am}/dbscripts/db2.sql" token="REG_VALUE VARCHAR(1000)," value="REG_VALUE VARCHAR(10000),"/>
|
<replace file="target/${wso2am}/dbscripts/db2.sql" token="REG_VALUE VARCHAR(1000)," value="REG_VALUE VARCHAR(10000)," />
|
||||||
<replace file="target/${wso2am}/dbscripts/h2.sql" token="REG_VALUE VARCHAR(1000)," value="REG_VALUE VARCHAR(10000),"/>
|
<replace file="target/${wso2am}/dbscripts/h2.sql" token="REG_VALUE VARCHAR(1000)," value="REG_VALUE VARCHAR(10000)," />
|
||||||
<replace file="target/${wso2am}/dbscripts/informix.sql" token="REG_VALUE LVARCHAR(1000)," value="REG_VALUE LVARCHAR(10000),"/>
|
<replace file="target/${wso2am}/dbscripts/informix.sql" token="REG_VALUE LVARCHAR(1000)," value="REG_VALUE LVARCHAR(10000)," />
|
||||||
<replace file="target/${wso2am}/dbscripts/mssql.sql" token="REG_VALUE VARCHAR(1000)," value="REG_VALUE VARCHAR(10000),"/>
|
<replace file="target/${wso2am}/dbscripts/mssql.sql" token="REG_VALUE VARCHAR(1000)," value="REG_VALUE VARCHAR(10000)," />
|
||||||
<replace file="target/${wso2am}/dbscripts/mysql.sql" token="REG_VALUE VARCHAR(1000)," value="REG_VALUE VARCHAR(10000),"/>
|
<replace file="target/${wso2am}/dbscripts/mysql.sql" token="REG_VALUE VARCHAR(1000)," value="REG_VALUE VARCHAR(10000)," />
|
||||||
<replace file="target/${wso2am}/dbscripts/mysql_cluster.sql" token="REG_VALUE VARCHAR(1000)," value="REG_VALUE VARCHAR(10000),"/>
|
<replace file="target/${wso2am}/dbscripts/mysql_cluster.sql" token="REG_VALUE VARCHAR(1000)," value="REG_VALUE VARCHAR(10000)," />
|
||||||
<replace file="target/${wso2am}/dbscripts/oracle.sql" token="REG_VALUE VARCHAR2(1000)," value="REG_VALUE VARCHAR2(10000),"/>
|
<replace file="target/${wso2am}/dbscripts/oracle.sql" token="REG_VALUE VARCHAR2(1000)," value="REG_VALUE VARCHAR2(10000)," />
|
||||||
<replace file="target/${wso2am}/dbscripts/oracle.sql" token="REG_VALUE VARCHAR2(1000)," value="REG_VALUE VARCHAR2(10000),"/>
|
<replace file="target/${wso2am}/dbscripts/oracle.sql" token="REG_VALUE VARCHAR2(1000)," value="REG_VALUE VARCHAR2(10000)," />
|
||||||
<replace file="target/${wso2am}/dbscripts/oracle_rac.sql" token="REG_VALUE VARCHAR2(1000)," value="REG_VALUE VARCHAR2(10000),"/>
|
<replace file="target/${wso2am}/dbscripts/oracle_rac.sql" token="REG_VALUE VARCHAR2(1000)," value="REG_VALUE VARCHAR2(10000)," />
|
||||||
<replace file="target/${wso2am}/dbscripts/postgresql.sql" token="REG_VALUE VARCHAR(1000)," value="REG_VALUE VARCHAR(10000),"/>
|
<replace file="target/${wso2am}/dbscripts/postgresql.sql" token="REG_VALUE VARCHAR(1000)," value="REG_VALUE VARCHAR(10000)," />
|
||||||
</target>
|
</target>
|
||||||
</configuration>
|
</configuration>
|
||||||
</execution>
|
</execution>
|
||||||
|
|||||||
@ -22,7 +22,7 @@
|
|||||||
<parent>
|
<parent>
|
||||||
<groupId>io.entgra.community</groupId>
|
<groupId>io.entgra.community</groupId>
|
||||||
<artifactId>p2-profile</artifactId>
|
<artifactId>p2-profile</artifactId>
|
||||||
<version>5.0.0-SNAPSHOT</version>
|
<version>5.0.0</version>
|
||||||
<relativePath>../pom.xml</relativePath>
|
<relativePath>../pom.xml</relativePath>
|
||||||
</parent>
|
</parent>
|
||||||
|
|
||||||
|
|||||||
@ -22,7 +22,7 @@
|
|||||||
<parent>
|
<parent>
|
||||||
<groupId>io.entgra.community</groupId>
|
<groupId>io.entgra.community</groupId>
|
||||||
<artifactId>p2-profile</artifactId>
|
<artifactId>p2-profile</artifactId>
|
||||||
<version>5.0.0-SNAPSHOT</version>
|
<version>5.0.0</version>
|
||||||
<relativePath>../pom.xml</relativePath>
|
<relativePath>../pom.xml</relativePath>
|
||||||
</parent>
|
</parent>
|
||||||
|
|
||||||
|
|||||||
@ -22,7 +22,7 @@
|
|||||||
<parent>
|
<parent>
|
||||||
<groupId>io.entgra.community</groupId>
|
<groupId>io.entgra.community</groupId>
|
||||||
<artifactId>community-parent</artifactId>
|
<artifactId>community-parent</artifactId>
|
||||||
<version>5.0.0-SNAPSHOT</version>
|
<version>5.0.0</version>
|
||||||
<relativePath>../pom.xml</relativePath>
|
<relativePath>../pom.xml</relativePath>
|
||||||
</parent>
|
</parent>
|
||||||
|
|
||||||
|
|||||||
4
pom.xml
4
pom.xml
@ -23,7 +23,7 @@
|
|||||||
<groupId>io.entgra.community</groupId>
|
<groupId>io.entgra.community</groupId>
|
||||||
<artifactId>community-parent</artifactId>
|
<artifactId>community-parent</artifactId>
|
||||||
<packaging>pom</packaging>
|
<packaging>pom</packaging>
|
||||||
<version>5.0.0-SNAPSHOT</version>
|
<version>5.0.0</version>
|
||||||
<name>Entgra Community Product - Parent</name>
|
<name>Entgra Community Product - Parent</name>
|
||||||
<url>http://entgra.io</url>
|
<url>http://entgra.io</url>
|
||||||
<description>Entgra Community Product</description>
|
<description>Entgra Community Product</description>
|
||||||
@ -130,7 +130,7 @@
|
|||||||
<url>https://gitlab.com/entgra/community-product.git</url>
|
<url>https://gitlab.com/entgra/community-product.git</url>
|
||||||
<developerConnection>scm:git:https://gitlab.com/entgra/community-product.git</developerConnection>
|
<developerConnection>scm:git:https://gitlab.com/entgra/community-product.git</developerConnection>
|
||||||
<connection>scm:git:https://gitlab.com/entgra/community-product.git</connection>
|
<connection>scm:git:https://gitlab.com/entgra/community-product.git</connection>
|
||||||
<tag>HEAD</tag>
|
<tag>v5.0.0</tag>
|
||||||
</scm>
|
</scm>
|
||||||
|
|
||||||
<build>
|
<build>
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user