Skip to main content

How to Build Ephesoft in Ubuntu

Download Source file from Ephesoft Site using the following URL

http://www.ephesoft.com/images/Ephesoft/source-code-release-cummunity.zip

Extract to any folder for e.g <home_dir>/source-code-release-community

Download Repository bundle from EpheSoft site using the following URL

http://www.ephesoft.com/images/Ephesoft/community-repository-maven-dependencies.zip

Extract to any folder for example <home_dir>/source-code-release-community/community-repository


Now go to maven Installation directory

modify settings.xml under MAVEN_HOME/conf by adding these following line

<localRepository><home_dir>/source-code-release-community/community-repository</localRepository>.

modify pom.xml file under <home_dir>/source-code-release-community/dcma-root/parent

comment these Following lines

<!--
<repositories>
<repository>
<snapshots>
<updatePolicy>never</updatePolicy>
<checksumPolicy>ignore</checksumPolicy>
</snapshots>
<id>ephesoft-repo</id>
<url>http://172.16.1.106/repo/</url>
</repository>
</repositories>

<pluginRepositories>
<pluginRepository>
<id>mirrorRepo</id>
<url>http://172.16.1.106/repo</url>
</pluginRepository>
</pluginRepositories>
-->


Now run the Maven command mvn -Dmaven.test.skip=true install
under <home_dir>/source-code-release-community/dcma-root

Comments

  1. Hi James,
    Thanks for your post. Can I ask do you know how to fix this install error?

    Tests in error:
    findBatchClassTest(com.ephesoft.dcma.da.dao.BatchClassDaoTest

    ReplyDelete
  2. Sorry, had an incomplete OpenJDK6 installed - it couldn't find tools.jar. I just re-installed OpenJDK6 on my Ubuntu server. All built fine. Do you have a "run.sh" shell script around anywhere? How do you launch this puppy?

    ReplyDelete

Post a Comment

Popular posts from this blog

Import and Export using OPLOG.RS in MongoDB

Edit mongod.conf  to add replicate set sudo vi /etc/mongod.conf Add this following lines in mongod.conf replication:   replSetName: rs0   oplogSizeMB: 1024 Then restart mongod by "sudo service mongod restart" Check for mongo status if everything is fine sudo service mongod status if everything is OK you get this result otherwise please check/var/log/mongodb/mongod.log for any errors. mongod start/running, process 5806 Now go to Shell prompt and type  >mongo Then type > use  //To change your working DB > rs.initiate() { "info2" : "no configuration explicitly specified -- making one", "me" : "jamesnirmal:27017", "ok" : 1 } Now command prompt will changed to  rs0:PRIMARY> Now type rs0:PRIMARY> use local rs0:PRIMARY> show collections me oplog.rs startup_log system.indexes system.replset MongoRestore: Now go to Normal shell and crea...