Skip to content

Commit

Permalink
Test with 6.0.2 sources
Browse files Browse the repository at this point in the history
  • Loading branch information
pango853 committed Oct 27, 2018
1 parent 15c35f7 commit 2f3b13f
Show file tree
Hide file tree
Showing 6 changed files with 37 additions and 15 deletions.
20 changes: 19 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,21 @@
## Another Hinemos Fork (ver.6.0)
# Another Hinemos Fork (ver.6.0)

Forked from [here](https://github.com/hinemos/hinemos).


# HOWTO

## Build
> cd common
> gradle build
> gradle export
> cd ..\manager
> gradle build
> gradle exportWS
> gradle export
> cd ..\agent
> gradle build
> gradle export
4 changes: 2 additions & 2 deletions agent/gradle.properties
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
theGroup=hinemos
theName=hinemos-agent
theJarName=HinemosAgent
theVersion=6.0.0
theSourceCompatibility=1.8
theVersion=6.0.2
theSourceCompatibility=1.7
2 changes: 1 addition & 1 deletion client/gradle.properties
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
theGroup=hinemos
theName=hinemos-client
theJarName=HinemosClient
theVersion=6.0.0
theVersion=6.0.2
theSourceCompatibility=1.8

theEclipseVer=rcp-mars-2
4 changes: 2 additions & 2 deletions common/gradle.properties
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
theGroup=hinemos
theName=hinemos-common
theJarName=HinemosCommon
theVersion=6.0.0
theSourceCompatibility=1.8
theVersion=6.0.2
theSourceCompatibility=1.7
20 changes: 12 additions & 8 deletions manager/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,7 @@ targetCompatibility = theSourceCompatibility

repositories{
mavenCentral()
maven { url 'http://pango853.github.io/mvnrepo' }
}
dependencies{
compile group: 'commons-logging', name: 'commons-logging', version: '1.2'
Expand All @@ -19,16 +20,19 @@ dependencies{
compile group: 'org.eclipse.persistence', name: 'javax.persistence', version: '2.1.1'
compile group: 'commons-codec', name: 'commons-codec', version: '1.10'
compile group: 'commons-net', name: 'commons-net', version: '3.5'
// Download from https://sourceforge.net/projects/jpasecurity/files/jpasecurity/jpasecurity-0.4.0/jpasecurity-core-0.4.0.jar
compile files('lib/jpasecurity-core-0.4.0.jar')

compile group: 'net.sf.jpasecurity', name: 'jpasecurity-core', version: '0.4.0'
// Originated from https://sourceforge.net/projects/jpasecurity/files/jpasecurity/jpasecurity-0.4.0/jpasecurity-core-0.4.0.jar

compile group: 'org.snmp4j', name: 'snmp4j', version: '2.5.4'
compile group: 'com.jcraft', name: 'jsch', version: '0.1.54'
// Download and build from
// https://software.intel.com/en-us/articles/download-the-latest-intel-ws-management-java-client-library
// Or you can extract the enhanced version from Hinemos's original package(intel-wsman-1.0.1-mod.jar)
compile files('lib/intel-wsman-1.0.1-mod.jar')
// Download from https://sourceforge.net/projects/sblim/files/sblim-cim-client/1.3.9.3/sblim-cim-client-1.3.9.3-bin.zip
compile files('lib/sblimCIMClient.jar')

compile group: 'intel.management.wsman', name: 'intel-wsman', version: '1.0.1-mod'
// Originated from https://software.intel.com/en-us/articles/download-the-latest-intel-ws-management-java-client-library

compile group: 'org.sblim.wbem', name: 'sblimCIMClient', version: '1.3.9.3'
// Originated from https://sourceforge.net/projects/sblim/files/sblim-cim-client/1.3.9.3/sblim-cim-client-1.3.9.3-bin.zip

compile group: 'javax.mail', name: 'javax.mail-api', version: '1.5.6'
compile group: 'org.apache.httpcomponents', name: 'httpclient', version: '4.5.2'
compile group: 'org.apache.httpcomponents', name: 'httpclient-cache', version: '4.5.2'
Expand Down
2 changes: 1 addition & 1 deletion manager/gradle.properties
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
theGroup=hinemos
theName=hinemos-manager
theJarName=HinemosManager
theVersion=6.0.0
theVersion=6.0.2
theSourceCompatibility=1.8

0 comments on commit 2f3b13f

Please sign in to comment.