Skip to content

Commit 15d207b

Browse files
committed
Switch to 1.6.1: added last studio as plugin, now ant install creates the "GratefulDeadConcerts" database
1 parent 71f3faa commit 15d207b

19 files changed

Lines changed: 47 additions & 30 deletions

File tree

.travis.yml

Lines changed: 0 additions & 8 deletions
This file was deleted.

build.xml

Lines changed: 24 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
<property environment="env"/>
66
<property name="vendor" value="NuvolaBase Ltd"/>
77
<property name="product" value="OrientDB"/>
8-
<property name="version" value="1.6.1-SNAPSHOT"/>
8+
<property name="version" value="1.6.1"/>
99
<condition property="community.release" value="${releaseHome}/orientdb-community-${version}"
1010
else="../releases/orientdb-community-${version}">
1111
<isset property="releaseHome"/>
@@ -65,9 +65,9 @@
6565
<echo> ,::::,,,. `: ,, ::::: : : .: ::::::::: ::::::::::</echo>
6666
<echo> ,,:` `,,. </echo>
6767
<echo> ,,, .,` </echo>
68-
<echo> ,,. `, GRAPH DATABASE </echo>
69-
<echo> `` `. </echo>
70-
<echo> `` </echo>
68+
<echo> ,,. `, GRAPH DATABASE</echo>
69+
<echo> `` `. COMMUNITY EDITION</echo>
70+
<echo> `` www.orientdb.org</echo>
7171
<echo> ` </echo>
7272

7373
<mkdir dir="${community.release}"/>
@@ -148,6 +148,11 @@
148148
<filter token="BUILD" value="${build.number}"/>
149149
</filterset>
150150
</copy>
151+
<chmod perm="u+x" verbose="yes">
152+
<fileset dir="${community.release}/bin">
153+
<include name="**/*.sh"/>
154+
</fileset>
155+
</chmod>
151156

152157
<copy todir="${community.release}/www/">
153158
<fileset dir="server/src/site"/>
@@ -174,6 +179,12 @@
174179
<fileset dir="." includes="server/benchmarks/*"/>
175180
</copy>
176181

182+
<delete dir="${community.release}/databases"/>
183+
<java fork="true" dir="graphdb" classname="com.orientechnologies.orient.graph.blueprints.TestLoadGraph">
184+
<classpath>
185+
<fileset dir="${community.release}/lib" includes="*.jar"/>
186+
</classpath>
187+
</java>
177188

178189
<copy todir="${community.release}/databases/GratefulDeadConcerts" failonerror="false">
179190
<fileset dir="graphdb/target/databases/GratefulDeadConcerts/" includes="*"/>
@@ -247,8 +258,15 @@
247258
<delete file="../releases/orientdb-community-${version}.zip"/>
248259
<zip destfile="../releases/orientdb-community-${version}.zip" basedir="../releases" level="9" update="false"
249260
includes="orientdb-community-${version}/" excludes="**/*.log.*"/>
250-
<tar destfile="../releases/orientdb-community-${version}.tar.gz" basedir="../releases" compression="gzip"
251-
includes="orientdb-community-${version}/" excludes="**/*.log.*"/>
261+
<tar destfile="../releases/orientdb-community-${version}.tar.gz" compression="gzip">
262+
<tarfileset dir="../releases/orientdb-community-${version}">
263+
<include name="**"/>
264+
<exclude name="**/*.sh"/>
265+
</tarfileset>
266+
<tarfileset dir="../releases/orientdb-community-${version}" mode="755">
267+
<include name="**/*.sh"/>
268+
</tarfileset>
269+
</tar>
252270
</target>
253271

254272
</project>

client/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@
2424
<parent>
2525
<groupId>com.orientechnologies</groupId>
2626
<artifactId>orientdb-parent</artifactId>
27-
<version>1.6.1-SNAPSHOT</version>
27+
<version>1.6.1</version>
2828
<relativePath>../</relativePath>
2929
</parent>
3030

commons/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@
2424
<parent>
2525
<groupId>com.orientechnologies</groupId>
2626
<artifactId>orientdb-parent</artifactId>
27-
<version>1.6.1-SNAPSHOT</version>
27+
<version>1.6.1</version>
2828
<relativePath>../</relativePath>
2929
</parent>
3030

core/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717
<parent>
1818
<groupId>com.orientechnologies</groupId>
1919
<artifactId>orientdb-parent</artifactId>
20-
<version>1.6.1-SNAPSHOT</version>
20+
<version>1.6.1</version>
2121
<relativePath>../</relativePath>
2222
</parent>
2323

core/src/main/java/com/orientechnologies/orient/core/OConstants.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616
package com.orientechnologies.orient.core;
1717

1818
public class OConstants {
19-
public static final String ORIENT_VERSION = "1.6.1-SNAPSHOT";
19+
public static final String ORIENT_VERSION = "1.6.1";
2020
public static final String ORIENT_URL = "www.orientechnologies.com";
2121

2222
public static String getVersion() {

distributed/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@
2424
<parent>
2525
<groupId>com.orientechnologies</groupId>
2626
<artifactId>orientdb-parent</artifactId>
27-
<version>1.6.1-SNAPSHOT</version>
27+
<version>1.6.1</version>
2828
</parent>
2929

3030
<artifactId>orientdb-distributed</artifactId>

distribution/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@
2424
<parent>
2525
<groupId>com.orientechnologies</groupId>
2626
<artifactId>orientdb-parent</artifactId>
27-
<version>1.6.1-SNAPSHOT</version>
27+
<version>1.6.1</version>
2828
<relativePath>../</relativePath>
2929
</parent>
3030

enterprise/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@
2424
<parent>
2525
<groupId>com.orientechnologies</groupId>
2626
<artifactId>orientdb-parent</artifactId>
27-
<version>1.6.1-SNAPSHOT</version>
27+
<version>1.6.1</version>
2828
</parent>
2929

3030
<artifactId>orientdb-enterprise</artifactId>

graphdb/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@
2424
<parent>
2525
<groupId>com.orientechnologies</groupId>
2626
<artifactId>orientdb-parent</artifactId>
27-
<version>1.6.1-SNAPSHOT</version>
27+
<version>1.6.1</version>
2828
<relativePath>../</relativePath>
2929
</parent>
3030

0 commit comments

Comments
 (0)