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