<?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: How to deploy a jar plugin in a production server. in Nuxeo Forum</title>
    <link>https://connect.hyland.com/t5/nuxeo-forum/how-to-deploy-a-jar-plugin-in-a-production-server/m-p/324495#M11496</link>
    <description>&lt;P&gt;Build your project as a JAR file and deploy it to [root]/nxserver/plugins directory&lt;/P&gt;</description>
    <pubDate>Tue, 28 Feb 2012 07:03:04 GMT</pubDate>
    <dc:creator>bruce_Grant</dc:creator>
    <dc:date>2012-02-28T07:03:04Z</dc:date>
    <item>
      <title>How to deploy a jar plugin in a production server.</title>
      <link>https://connect.hyland.com/t5/nuxeo-forum/how-to-deploy-a-jar-plugin-in-a-production-server/m-p/324494#M11495</link>
      <description>&lt;P&gt;I have installed Nuxeo using the APT repository in an ubuntu server (10.04).
Also, in my computer I have got Nuxeo IDE working and I have made a custom project which changes the login page. It works when I launch the Nuxeo SDK.
I have exported my project as a war using the contextual menu, but now I don't now where to deploy it.
I have try some locations but it does not seem to work.&lt;/P&gt;
&lt;P&gt;Can anyone tell me where is the correct place?&lt;/P&gt;
&lt;P&gt;Thanks.&lt;/P&gt;</description>
      <pubDate>Mon, 27 Feb 2012 19:55:07 GMT</pubDate>
      <guid>https://connect.hyland.com/t5/nuxeo-forum/how-to-deploy-a-jar-plugin-in-a-production-server/m-p/324494#M11495</guid>
      <dc:creator>josuealcalde_</dc:creator>
      <dc:date>2012-02-27T19:55:07Z</dc:date>
    </item>
    <item>
      <title>Re: How to deploy a jar plugin in a production server.</title>
      <link>https://connect.hyland.com/t5/nuxeo-forum/how-to-deploy-a-jar-plugin-in-a-production-server/m-p/324495#M11496</link>
      <description>&lt;P&gt;Build your project as a JAR file and deploy it to [root]/nxserver/plugins directory&lt;/P&gt;</description>
      <pubDate>Tue, 28 Feb 2012 07:03:04 GMT</pubDate>
      <guid>https://connect.hyland.com/t5/nuxeo-forum/how-to-deploy-a-jar-plugin-in-a-production-server/m-p/324495#M11496</guid>
      <dc:creator>bruce_Grant</dc:creator>
      <dc:date>2012-02-28T07:03:04Z</dc:date>
    </item>
    <item>
      <title>Re: How to deploy a jar plugin in a production server.</title>
      <link>https://connect.hyland.com/t5/nuxeo-forum/how-to-deploy-a-jar-plugin-in-a-production-server/m-p/324496#M11497</link>
      <description>&lt;P&gt;Sorry bruce :),&lt;/P&gt;
&lt;P&gt;Take the jar in your dev instance (into $NuxeoServer/nxserver/bundles) or build your project with maven:&lt;/P&gt;
&lt;UL&gt;
&lt;LI&gt;you must have &lt;A href="http://doc.nuxeo.com/x/JQk7"&gt;installed maven&lt;/A&gt;&lt;/LI&gt;
&lt;LI&gt;do "mvn install" at the root of your project&lt;/LI&gt;
&lt;LI&gt;the jar will be available into the $project/target/name-of-your-project-1.0-SNAPSHOT.jar&lt;/LI&gt;
&lt;/UL&gt;
&lt;P&gt;And the copy this jar into:&lt;/P&gt;
&lt;UL&gt;
&lt;LI&gt;$NuxeoServer/nxserver/bundles/ if you have a Tomcat distribution&lt;/LI&gt;
&lt;LI&gt;$NuxeoServer/default/deploy/nuxeo.ear/bundles/ if you have a JBoss distribution&lt;/LI&gt;
&lt;/UL&gt;
&lt;P&gt;where $NuxeoServer is the location of the Nuxeo Server &lt;span class="lia-unicode-emoji" title=":slightly_smiling_face:"&gt;🙂&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;If, I'm right for the deb package, this must be /var/lib/nuxeo&lt;/P&gt;</description>
      <pubDate>Tue, 28 Feb 2012 09:55:06 GMT</pubDate>
      <guid>https://connect.hyland.com/t5/nuxeo-forum/how-to-deploy-a-jar-plugin-in-a-production-server/m-p/324496#M11497</guid>
      <dc:creator>Benjamin_Jalon1</dc:creator>
      <dc:date>2012-02-28T09:55:06Z</dc:date>
    </item>
    <item>
      <title>Re: How to deploy a jar plugin in a production server.</title>
      <link>https://connect.hyland.com/t5/nuxeo-forum/how-to-deploy-a-jar-plugin-in-a-production-server/m-p/324497#M11498</link>
      <description>&lt;P&gt;Thanks for your help.&lt;/P&gt;</description>
      <pubDate>Tue, 28 Feb 2012 10:54:07 GMT</pubDate>
      <guid>https://connect.hyland.com/t5/nuxeo-forum/how-to-deploy-a-jar-plugin-in-a-production-server/m-p/324497#M11498</guid>
      <dc:creator>josuealcalde_</dc:creator>
      <dc:date>2012-02-28T10:54:07Z</dc:date>
    </item>
    <item>
      <title>Re: How to deploy a jar plugin in a production server.</title>
      <link>https://connect.hyland.com/t5/nuxeo-forum/how-to-deploy-a-jar-plugin-in-a-production-server/m-p/324498#M11499</link>
      <description>&lt;P&gt;no need to be sorry - yours is a much more detailed answer&lt;/P&gt;</description>
      <pubDate>Tue, 28 Feb 2012 14:28:46 GMT</pubDate>
      <guid>https://connect.hyland.com/t5/nuxeo-forum/how-to-deploy-a-jar-plugin-in-a-production-server/m-p/324498#M11499</guid>
      <dc:creator>bruce_Grant</dc:creator>
      <dc:date>2012-02-28T14:28:46Z</dc:date>
    </item>
  </channel>
</rss>

