Note that there are some explanatory texts on larger screens.

plurals
  1. PO
    primarykey
    data
    text
    <p>This is a bit verbose but may help:</p> <pre><code>&lt;profiles&gt; &lt;profile&gt; &lt;id&gt;deploy-j-interop&lt;/id&gt; &lt;build&gt; &lt;defaultGoal&gt;deploy:deploy-file&lt;/defaultGoal&gt; &lt;plugins&gt; &lt;plugin&gt; &lt;groupId&gt;org.apache.maven.plugins&lt;/groupId&gt; &lt;artifactId&gt;maven-deploy-plugin&lt;/artifactId&gt; &lt;version&gt;2.4&lt;/version&gt; &lt;configuration&gt; &lt;repositoryId&gt;openscada-external&lt;/repositoryId&gt; &lt;url&gt;${openscada.distrib.repository}&lt;/url&gt; &lt;/configuration&gt; &lt;executions&gt; &lt;execution&gt; &lt;id&gt;j-interop&lt;/id&gt; &lt;goals&gt; &lt;goal&gt;deploy-file&lt;/goal&gt; &lt;/goals&gt; &lt;configuration&gt; &lt;file&gt;../openscada_opc_dcom/lib/j-interop.jar&lt;/file&gt; &lt;pomFile&gt;../openscada_opc_dcom/lib/j-interop.pom&lt;/pomFile&gt; &lt;/configuration&gt; &lt;/execution&gt; &lt;/executions&gt; &lt;/plugin&gt; &lt;/plugins&gt; &lt;/build&gt; &lt;/profile&gt; &lt;profile&gt; &lt;id&gt;deploy-j-interopdeps&lt;/id&gt; &lt;build&gt; &lt;defaultGoal&gt;deploy:deploy-file&lt;/defaultGoal&gt; &lt;plugins&gt; &lt;plugin&gt; &lt;groupId&gt;org.apache.maven.plugins&lt;/groupId&gt; &lt;artifactId&gt;maven-deploy-plugin&lt;/artifactId&gt; &lt;version&gt;2.4&lt;/version&gt; &lt;configuration&gt; &lt;repositoryId&gt;openscada-external&lt;/repositoryId&gt; &lt;url&gt;${openscada.distrib.repository}&lt;/url&gt; &lt;/configuration&gt; &lt;executions&gt; &lt;execution&gt; &lt;id&gt;j-interopdeps&lt;/id&gt; &lt;goals&gt; &lt;goal&gt;deploy-file&lt;/goal&gt; &lt;/goals&gt; &lt;configuration&gt; &lt;file&gt;../openscada_opc_dcom/lib/j-interopdeps.jar&lt;/file&gt; &lt;pomFile&gt;../openscada_opc_dcom/lib/j-interopdeps.pom&lt;/pomFile&gt; &lt;/configuration&gt; &lt;/execution&gt; &lt;/executions&gt; &lt;/plugin&gt; &lt;/plugins&gt; &lt;/build&gt; &lt;/profile&gt; &lt;profile&gt; &lt;id&gt;deploy-jcifs&lt;/id&gt; &lt;build&gt; &lt;defaultGoal&gt;deploy:deploy-file&lt;/defaultGoal&gt; &lt;plugins&gt; &lt;plugin&gt; &lt;groupId&gt;org.apache.maven.plugins&lt;/groupId&gt; &lt;artifactId&gt;maven-deploy-plugin&lt;/artifactId&gt; &lt;version&gt;2.4&lt;/version&gt; &lt;configuration&gt; &lt;repositoryId&gt;openscada-external&lt;/repositoryId&gt; &lt;url&gt;${openscada.distrib.repository}&lt;/url&gt; &lt;/configuration&gt; &lt;executions&gt; &lt;execution&gt; &lt;id&gt;jcifs&lt;/id&gt; &lt;goals&gt; &lt;goal&gt;deploy-file&lt;/goal&gt; &lt;/goals&gt; &lt;configuration&gt; &lt;file&gt;../openscada_opc_dcom/lib/jcifs-1.2.9.jar&lt;/file&gt; &lt;pomFile&gt;../openscada_opc_dcom/lib/jcifs-1.2.9.pom&lt;/pomFile&gt; &lt;/configuration&gt; &lt;/execution&gt; &lt;/executions&gt; &lt;/plugin&gt; &lt;/plugins&gt; &lt;/build&gt; &lt;/profile&gt; &lt;/profiles&gt; </code></pre> <p>You would run it using the command:</p> <pre><code>mvn -P deploy-j-interop deploy-j-interopdeps deploy-jcifs </code></pre>
    singulars
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    plurals
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    1. This table or related slice is empty.
 

Querying!

 
Guidance

SQuiL has stopped working due to an internal error.

If you are curious you may find further information in the browser console, which is accessible through the devtools (F12).

Reload