Skip to content
This repository was archived by the owner on Apr 22, 2025. It is now read-only.

Commit 768ca2b

Browse files
author
hainguyen
committed
Update the latest changes to prepare the new release soon
1 parent dd4d994 commit 768ca2b

File tree

73 files changed

+747
-671
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

73 files changed

+747
-671
lines changed

mycollab-app-community/pom.xml

Lines changed: 8 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -19,11 +19,6 @@
1919
</properties>
2020

2121
<dependencies>
22-
<dependency>
23-
<groupId>com.mycollab</groupId>
24-
<artifactId>mycollab-client-api</artifactId>
25-
<version>${project.version}</version>
26-
</dependency>
2722

2823
<dependency>
2924
<groupId>com.mycollab</groupId>
@@ -83,6 +78,12 @@
8378
<groupId>com.vaadin</groupId>
8479
<artifactId>vaadin-client</artifactId>
8580
<scope>provided</scope>
81+
<exclusions>
82+
<exclusion>
83+
<groupId>javax.validation</groupId>
84+
<artifactId>validation-api</artifactId>
85+
</exclusion>
86+
</exclusions>
8687
</dependency>
8788

8889
<dependency>
@@ -294,7 +295,7 @@
294295
</copy>
295296
<copy todir="${installer.staging.dir}/config">
296297
<fileset dir="${basedir}/src/main/config">
297-
<exclude name="mycollab.properties"/>
298+
<exclude name="application.properties"/>
298299
</fileset>
299300
</copy>
300301
<copy todir="${installer.staging.dir}/logs">
@@ -306,6 +307,7 @@
306307
<copy todir="${installer.staging.dir}/lib">
307308
<fileset dir="${basedir}/src/main/lib"/>
308309
</copy>
310+
<chmod dir="${installer.staging.dir}/bin/" includes="*.sh" perm="700"/>
309311
</target>
310312
</configuration>
311313
</execution>

mycollab-app-community/src/main/config/application.properties.ftl

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
#=====================================================
2-
# You can visit link http://community.mycollab.com/configuration/
2+
# You can visit link https://community.mycollab.com/docs/hosting-mycollab-on-your-own-server/advanced-configuration/
33
# to get all configuration fieldBuilder and their meanings
44
#=====================================================
55

@@ -10,9 +10,9 @@ app.siteName=${sitename}
1010
app.notifyEmail=${mailNotify}
1111

1212
server.address=${serveraddress}
13-
server.apiUrl=http://api.mycollab.com/api/
13+
server.apiUrl=https://api.mycollab.com/
1414
server.storageSystem=file
15-
server.siteUrl=http://%s:%d
15+
server.siteUrl=http://%s:%d/
1616
server.resourceDownloadUrl=http://%s:%d/file/
1717
server.cdnUrl=http://%s:%d/assets/
1818

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
2+
===================================================================================================================
3+
___ ___ _ _ ___ ___ __ __ ___ ____ ___ ___ ___ ___ ___ ___ __ __ __ __ __ ______ _ _
4+
||\\//|| \\// // // \\ || || // \\ || )) // // \\ ||\\//|| ||\\//|| || || ||\ || || | || | \\//
5+
|| \/ || )/ (( (( )) || || ||=|| ||=) (( (( )) || \/ || || \/ || || || ||\\|| || || )/
6+
|| || // \\__ \\_// ||__| ||__| || || ||_)) \\__ \\_// || || || || \\_// || \|| || || //
7+
8+
Version 6.0.0
9+
===================================================================================================================
84.6 KB
Binary file not shown.
107 KB
Binary file not shown.
210 KB
Binary file not shown.
108 KB
Binary file not shown.

mycollab-app-community/src/main/scripts/mycollab.bat

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,7 @@ rem Required to run the with the "debug" argument.
1818
rem ---------------------------------------------------------------------------
1919

2020
set _RUNJAVA=java
21+
set MYCOLLAB_PORT=9090
2122
set MYCOLLAB_OPTS=-noverify -server -Xms394m -Xmx768m -XX:NewSize=128m -XX:+DisableExplicitGC -XX:+CMSClassUnloadingEnabled -XX:+UseConcMarkSweepGC
2223

2324
rem Suppress Terminate batch job on CTRL+C
@@ -85,7 +86,7 @@ goto execCmd
8586

8687
rem Execute Java with the applicable properties
8788
cd ..
88-
%_EXECJAVA% -jar executor.jar %* %MYCOLLAB_OPTS%
89+
%_EXECJAVA% -jar executor.jar %* %MYCOLLAB_OPTS% -Dserver.port=%MYCOLLAB_PORT%
8990
goto end
9091

9192
:end

mycollab-app-community/src/main/scripts/mycollab.sh

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,7 @@
2020
# -----------------------------------------------------------------------------
2121
# OS specific support. $var _must_ be set to either true or false.
2222

23+
export MYCOLLAB_PORT=9090
2324
export MYCOLLAB_OPTS=-noverify -server -Xms394m -Xmx768m -XX:NewSize=128m -XX:+DisableExplicitGC -XX:+CMSClassUnloadingEnabled -XX:+UseConcMarkSweepGC
2425

2526
cygwin=false
@@ -153,7 +154,7 @@ if [ "$1" = "--start" ] ; then
153154
shift
154155
touch "$MYCOLLAB_OUT"
155156
cd ..
156-
eval \"$_RUNJAVA\" -jar $MYCOLLAB_HOME/executor.jar $MYCOLLAB_OPTS &
157+
eval \"$_RUNJAVA\" -jar $MYCOLLAB_HOME/executor.jar $MYCOLLAB_OPTS -Dserver.port=$MYCOLLAB_PORT &
157158

158159
if [ ! -z "$MYCOLLAB_PID" ]; then
159160
echo $! > "$MYCOLLAB_PID"

mycollab-client-api/pom.xml

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

0 commit comments

Comments
 (0)