<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic Re: Eclipse setup for Activiti Explorer in Alfresco Archive</title>
    <link>https://connect.hyland.com/t5/alfresco-archive/eclipse-setup-for-activiti-explorer/m-p/194590#M147720</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;That is indeed another way of doing it. Thanks for sharing!&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Fri, 24 Oct 2014 06:56:38 GMT</pubDate>
    <dc:creator>jbarrez</dc:creator>
    <dc:date>2014-10-24T06:56:38Z</dc:date>
    <item>
      <title>Eclipse setup for Activiti Explorer</title>
      <link>https://connect.hyland.com/t5/alfresco-archive/eclipse-setup-for-activiti-explorer/m-p/194586#M147716</link>
      <description>Can someone pass on the correct way of creating&amp;nbsp; Activiti Explorer Project in Eclipse and Make a change to it and then create a WAR file, which will be deployed in to a container like Tomcat. If some one can pass on this knowledge will be useful to a quick bootstrap for a newbie like me. RegardsRaja</description>
      <pubDate>Sun, 19 Oct 2014 17:21:02 GMT</pubDate>
      <guid>https://connect.hyland.com/t5/alfresco-archive/eclipse-setup-for-activiti-explorer/m-p/194586#M147716</guid>
      <dc:creator>rajan</dc:creator>
      <dc:date>2014-10-19T17:21:02Z</dc:date>
    </item>
    <item>
      <title>Re: Eclipse setup for Activiti Explorer</title>
      <link>https://connect.hyland.com/t5/alfresco-archive/eclipse-setup-for-activiti-explorer/m-p/194587#M147717</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Update to this Post. I was able to bring up activity explorer in Eclipse using Activiti-explorer war. &lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Thanks&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 20 Oct 2014 00:16:56 GMT</pubDate>
      <guid>https://connect.hyland.com/t5/alfresco-archive/eclipse-setup-for-activiti-explorer/m-p/194587#M147717</guid>
      <dc:creator>rajan</dc:creator>
      <dc:date>2014-10-20T00:16:56Z</dc:date>
    </item>
    <item>
      <title>Re: Eclipse setup for Activiti Explorer</title>
      <link>https://connect.hyland.com/t5/alfresco-archive/eclipse-setup-for-activiti-explorer/m-p/194588#M147718</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Clone the code at &lt;/SPAN&gt;&lt;A href="https://github.com/Activiti/Activiti" rel="nofollow noopener noreferrer"&gt;https://github.com/Activiti/Activiti&lt;/A&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Import all with maven. The code for explorer is in the activiti-explorer module. This builds the jar, which is included in activiti-webapp-explorer2.&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 20 Oct 2014 09:26:12 GMT</pubDate>
      <guid>https://connect.hyland.com/t5/alfresco-archive/eclipse-setup-for-activiti-explorer/m-p/194588#M147718</guid>
      <dc:creator>jbarrez</dc:creator>
      <dc:date>2014-10-20T09:26:12Z</dc:date>
    </item>
    <item>
      <title>Re: Eclipse setup for Activiti Explorer</title>
      <link>https://connect.hyland.com/t5/alfresco-archive/eclipse-setup-for-activiti-explorer/m-p/194589#M147719</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;I took a different approach, as my goal was to simply modify the application context and properties files before deploying.&amp;nbsp; This approach uses Maven WAR packaging overlays (&lt;/SPAN&gt;&lt;A href="http://maven.apache.org/plugins/maven-war-plugin/overlays.html" rel="nofollow noopener noreferrer"&gt;http://maven.apache.org/plugins/maven-war-plugin/overlays.html&lt;/A&gt;&lt;SPAN&gt;).&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;First, you upload a pre-built ActivitiExplorer WAR file to a Nexus repo or install it to your local Maven repo.&amp;nbsp; Since it includes the Explorer POM within it, all the artifact and group ID details are automagically inferred by Maven.&amp;nbsp; Then, create your own Maven WAR project (packaging=war) which will hold your custom Explorer web-app.&amp;nbsp; I gave mine a similar name, but used a different groupID, artifactID, and version in my pom.xml file.&amp;nbsp; Add the repository reference in your pom.xml to your 3rd party Nexus, if you went that path.&amp;nbsp; Add this dependency to your pom.xml, substituting the proper Activiti version:&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;lt;code&amp;gt;&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;lt;dependency&amp;gt;&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;nbsp;&amp;nbsp; &amp;lt;groupId&amp;gt;org.activiti&amp;lt;/groupId&amp;gt;&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;nbsp;&amp;nbsp; &amp;lt;artifactId&amp;gt;activiti-webapp-rest2&amp;lt;/artifactId&amp;gt;&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;nbsp;&amp;nbsp; &amp;lt;version&amp;gt;5.16.1&amp;lt;/version&amp;gt;&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;nbsp;&amp;nbsp; &amp;lt;type&amp;gt;war&amp;lt;/type&amp;gt;&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;nbsp;&amp;nbsp; &amp;lt;scope&amp;gt;runtime&amp;lt;/scope&amp;gt;&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;lt;/dependency&amp;gt;&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;lt;/code&amp;gt;&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Finally, create new versions of the files you want to replace in the original Explorer WAR, and place them in the usual Maven project directories, and these will overwrite the ones in the original WAR file.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;If all you want to do is provide your own property values, you can probably do that by tweaking Tomcat config files to have them inserted onto the classpath in such a way to override what is in the off-the-shelf WAR file (no custom Explorer build required).&amp;nbsp; If you want to provide custom implementations of various extensible components, whereby you are adding classes to the WAR… then creating a WAR overlay might be the way to go.&lt;/SPAN&gt;&lt;BR /&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 23 Oct 2014 21:04:53 GMT</pubDate>
      <guid>https://connect.hyland.com/t5/alfresco-archive/eclipse-setup-for-activiti-explorer/m-p/194589#M147719</guid>
      <dc:creator>gregdavisfromnj</dc:creator>
      <dc:date>2014-10-23T21:04:53Z</dc:date>
    </item>
    <item>
      <title>Re: Eclipse setup for Activiti Explorer</title>
      <link>https://connect.hyland.com/t5/alfresco-archive/eclipse-setup-for-activiti-explorer/m-p/194590#M147720</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;That is indeed another way of doing it. Thanks for sharing!&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 24 Oct 2014 06:56:38 GMT</pubDate>
      <guid>https://connect.hyland.com/t5/alfresco-archive/eclipse-setup-for-activiti-explorer/m-p/194590#M147720</guid>
      <dc:creator>jbarrez</dc:creator>
      <dc:date>2014-10-24T06:56:38Z</dc:date>
    </item>
    <item>
      <title>Re: Eclipse setup for Activiti Explorer</title>
      <link>https://connect.hyland.com/t5/alfresco-archive/eclipse-setup-for-activiti-explorer/m-p/194591#M147721</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Hi Gregdavisfromnj, we are try to do exactly the same: rebuild with config changes such as using JNDI and Oracle. When I am reading Maven WAR packaging overlays, it said that the web.xml file above comes from documentedproject not from documentedprojectdependency. How you solve it? Can you share your pom? Thanks!&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 22 Jul 2015 19:16:16 GMT</pubDate>
      <guid>https://connect.hyland.com/t5/alfresco-archive/eclipse-setup-for-activiti-explorer/m-p/194591#M147721</guid>
      <dc:creator>aimingxu</dc:creator>
      <dc:date>2015-07-22T19:16:16Z</dc:date>
    </item>
  </channel>
</rss>

