Daan Hoogland
412016567f
Updating pom.xml version numbers for release 4.4.5-SNAPSHOT
...
Signed-off-by: Daan Hoogland <daan@onecht.net>
2015-06-24 21:44:59 +02:00
Daan Hoogland
6f41061e14
Updating pom.xml version numbers for release 4.4.4
...
Signed-off-by: Daan Hoogland <daan.hoogland@gmail.com>
2015-06-18 11:17:09 +02:00
Daan Hoogland
28bcd6aeb7
Updating pom.xml version numbers for release 4.4.4-SNAPSHOT
...
Signed-off-by: Daan Hoogland <daan@onecht.net>
2015-04-19 15:52:25 +02:00
Daan Hoogland
e9441d4786
Updating pom.xml version numbers for release 4.4.3
...
Signed-off-by: Daan Hoogland <dhoogland@schubergphilis.com>
2015-04-15 17:00:24 -05:00
Daan Hoogland
5f448c1eb5
Revert "marvin in top level pom to suit jenkins build for it"
...
This reverts commit 9dc45d4d04 .
2015-04-13 09:24:02 -05:00
Daan Hoogland
9dc45d4d04
marvin in top level pom to suit jenkins build for it
2015-04-13 08:36:01 -05:00
Sebastien Goasguen
a79fd8816e
Add CONTRIBUTING instructions
2015-04-03 10:20:59 +02:00
Sebastien Goasguen
2504ea499d
exclude Dockerfile and supervisord.conf from RAT
2015-03-04 12:37:52 +01:00
Rohit Yadav
0269456152
CLOUDSTACK-8160: use preferable protocols
...
(cherry picked from commit debfcdef78 )
Signed-off-by: Rohit Yadav <rohit.yadav@shapeblue.com>
Conflicts:
client/tomcatconf/server7-nonssl.xml.in
client/tomcatconf/server7-ssl.xml.in
plugins/storage/volume/nexenta/src/org/apache/cloudstack/storage/datastore/util/NexentaNmsClient.java
pom.xml
services/console-proxy/server/src/com/cloud/consoleproxy/ConsoleProxySecureServerFactoryImpl.java
utils/src/org/apache/commons/httpclient/contrib/ssl/EasySSLProtocolSocketFactory.java
2015-01-21 18:11:38 +05:30
Daan Hoogland
7e409ea300
Updating pom.xml version numbers for release 4.4.3-SNAPSHOT
...
Signed-off-by: Daan Hoogland <daan@onecht.net>
2014-11-25 15:36:02 +01:00
Daan Hoogland
e0420a6fec
Updating pom.xml version numbers for release 4.4.2
...
Signed-off-by: Daan Hoogland <daan@onecht.net>
2014-11-21 03:41:26 +01:00
Daan Hoogland
b9620c2cbe
Updating pom.xml version numbers for release 4.4.2-SNAPSHOT
...
Signed-off-by: Daan Hoogland <daan@onecht.net>
2014-10-19 20:46:15 +02:00
Sebastien Goasguen
528ac4c6e9
Cleaning the README, INSTALL and CHANGES file
2014-09-16 06:08:50 -04:00
Rohit Yadav
7e9269eb2d
README: Give CloudStack its much deserved readme file
...
Signed-off-by: Rohit Yadav <rohit.yadav@shapeblue.com>
(cherry picked from commit d753e765f7 )
Conflicts:
README.md
2014-08-05 17:31:08 +02:00
Daan Hoogland
c9383c441e
Updating pom.xml version numbers for release 4.4.1-SNAPSHOT
...
Signed-off-by: Daan Hoogland <daan@onecht.net>
2014-07-23 16:55:31 +02:00
Anshul Gangwar
7d6712c05e
CLOUDSTACK-6411: removing license header from nuget.config and agent settings file, with
...
the header they are not getting loaded properly. Added an exception to not to do rat
checks on these files.
2014-04-18 15:42:55 +05:30
Wido den Hollander
4e9810dd51
CLOUDSTACK-4665: Depend on rados-java 0.1.4
...
This fixes the ArrayIndexOutOfBounds exception during the
removal of a RBD based volume
2014-04-10 15:58:45 +02:00
Alex Huang
ec102ec960
Revert "Applied Tina's patches for removing the xapi jar"
...
This reverts commit 1439c69b7e .
2014-04-08 00:03:18 -07:00
Alex Huang
1439c69b7e
Applied Tina's patches for removing the xapi jar
2014-04-02 13:59:43 -07:00
edison
18f59f9ce8
CLOUDSTACK-5573: bump gson version to 1.7.2, fix https://code.google.com/p/google-gson/issues/detail?id=354
2014-03-27 17:38:38 -07:00
miguelaferreira
ef547108dd
NetUtils testing
...
- Refactor tests:
- Upgrade tests to use jUnit4
- Add hamcrest dependency (contribution of by Laszio Hornyak)
- Break big tests in small unit tests
- Replace assertTrue/False with complex conditions by assertThat with
specific matchers
- Remove dead code:
- Private static method never called locally
- Add test for method that validates cidrs
Signed-off-by: Laszlo Hornyak <laszlo.hornyak@gmail.com>
2014-02-25 19:23:13 +01:00
Hugo Trippaers
bb23e3ac1f
Update the XenServer library to version 6.2.0-1 in the poms.
2014-02-25 12:30:46 +01:00
Hugo Trippaers
594b51c629
Fixup the license headers in the utils project. All files now use the same license header and this is enforced by the maven-license-check plugin.
2014-02-18 12:08:36 +01:00
Antonio Fornie
510972abde
Nvp and rest refactoring and more tests
...
Signed-off-by: Hugo Trippaers <htrippaers@schubergphilis.com>
2014-02-18 09:51:54 +01:00
miguelaferreira
1237bf3222
Fix findbugs findings in cloudstack-service-console-proxy-rdpclient
...
Findings:
- 32 int shifted by an amount not in range -31..31:
The shifts by 32 bits don't actually have any effect on the value
(as shown by the tests)
- possible null pointer dereference
- repeated conditional test
- field only ever set to null
All other uses of the field were to check if it was null,
which it was, so it was removed
Other actions:
- Upgrade jUnit to version 4
- Add PowerMock dependency
Signed-off-by: Hugo Trippaers <htrippaers@schubergphilis.com>
2014-02-14 18:37:46 +01:00
Hugo Trippaers
884c03f90d
Add versions to the reporting plugins, prevents maven from complaining about it
2014-02-05 14:18:07 +01:00
Hugo Trippaers
12777e9e3a
Allow even more memory for findbugs, awsapi is hungry
2014-01-29 13:44:20 +01:00
Hugo Trippaers
1c57dd7bcd
Give findbugs some more memory or it will fail with an OOM on awsapi
2014-01-29 09:17:01 +01:00
Wido den Hollander
49a29ce0cf
Switch to Java 7
...
We now require at least Java 7 to build and run CloudStack.
Both the DEB and RPM packaging now also require Java 7 during installation
of the packages.
2014-01-27 11:54:43 +01:00
Hugo Trippaers
e668c3f4e5
Add configuration to the reporting section of the pom so we have findbugs and cobertura output in the site output.
2014-01-23 14:44:34 +00:00
Hugo Trippaers
9d735dd288
Add a profile that enables findbugs checks at build time. Use -Penablefindbugs to enable findbugs.
...
Add a bit of reporting configuration so the mvn site target includes javadoc and a findbugs report
2014-01-23 09:06:33 +01:00
Hugo Trippaers
b68639c6da
Add the license plugin with the check goal to the list of disabled eclipse plugins
2014-01-22 14:29:13 +01:00
Hugo Trippaers
d3cd73d861
Add license check plugin to root pom. Disabled for the entire project, except for poms that override it (opendaylight, nvp)
2014-01-22 11:22:42 +01:00
Hugo Trippaers
33eaa4f633
Add a profile that disables checkstyle completely for the project.
...
Activate this profile in your IDE if you're having problems with checkstyle when switching branches. Please ensure that you at least compile once with checkstyle enabled before committing.
2014-01-22 10:29:07 +01:00
Hugo Trippaers
dc227e3384
Don't build stuff that is never used, move the cloud-test project to the developer build.
2014-01-22 10:23:50 +01:00
Hugo Trippaers
25ae91da10
Shave another few seconds of the build time by disabling the checkstyle run in the main pom.
2014-01-15 09:49:57 +01:00
Hugo Trippaers
b61f0a74ca
Centralize all eclipse m2e excludes in the main pom.xml
2014-01-14 09:39:42 +01:00
Hugo Trippaers
7c8facf3c9
Change checkstyle to run on every sub project, so it will also run when you build an individual module
2014-01-09 17:00:11 +01:00
Alex Huang
c2baed665b
Moved the check-style.xml into the tools directory given that we're not using the project to reference the style any longer. Fixed problems with eclipse complaining about copy-dependencies
2013-12-20 17:21:34 -08:00
Alex Huang
affe7efc82
Have the check happen earlier
2013-12-12 17:05:24 -08:00
Alex Huang
f1eadc09e6
Fixed problem with checkstyle
2013-12-12 16:57:38 -08:00
Alex Huang
0c2a4b251a
Everything now builds
2013-12-12 12:26:08 -08:00
Alex Huang
be5e5cc641
All Checkstyle problems corrected
2013-12-12 12:26:07 -08:00
Alex Huang
f33b247fc3
Moved the checkstyle project from parents to build to store all build tools in one location. Modified the config file to use 1024 for now.
2013-12-12 12:23:49 -08:00
Alex Huang
433a631916
Reformat of source code to set a stable base for the future. I couldn't get checkstyle enabled. There's still about a thousand errors from checkstyle. Most of it from length errors from comments and strings. Will attempt to remove those tonight. This change is so large I just want to get it in before any merge nightmares. The changes are fairly minor though and I did a full compile and start a server with the reformat code.
2013-11-21 07:56:47 -08:00
Alex Huang
170f32f171
Broke up some long strings
2013-11-21 07:25:01 -08:00
Hugo Trippaers
cf715ff491
Bump 4.3.0 to 4.4.0 in master
2013-11-21 16:01:15 +01:00
Alex Huang
d620df2bdd
Reformatted all of the code.
2013-11-21 06:15:26 -08:00
Alex Huang
eaa250fd3c
Formatted again after all the tab expansions and eol removals
2013-11-21 04:47:01 -08:00
Alex Huang
e4b22d0fca
Replace all tabs, particularly the ones in the comments
2013-11-21 03:39:58 -08:00