2017-01-22 2 views
0

でのpom.xmlにプラグインを追加しようと:こののpom.xmlで私はのpom.xmlにこのプラグインを追加しようとしているのmaven

<plugin> 
       <groupId>org.apache.maven.plugins</groupId> 
       <artifactId>maven-shade-plugin</artifactId> 
       <version>2.2</version> 
       <executions> 
        <execution> 
         <phase>package</phase> 
         <goals> 
          <goal>shade</goal> 
         </goals> 
         <configuration> 
          <finalName>${project.artifactId}-${project.version}-withDependency-ShadedForAndroid</finalName> 
          <artifactSet> 
           <includes> 
            <include>com.mashape.unirest:unirest-java</include> 
            <include>org.apache.httpcomponents:httpclient</include> 
            <include>org.apache.httpcomponents:httpcore</include> 
            <include>org.apache.httpcomponents:httpcore-nio</include> 
            <include>org.apache.httpcomponents:httpasyncclient</include> 
            <include>org.apache.httpcomponents:httpmime</include> 
            <include>org.json:json</include> 
            <include>commons-logging:commons-logging</include> 
            <include>commons-codec:commons-codec</include> 
           </includes> 
          </artifactSet> 
          <relocations> 
           <relocation> 
            <pattern>org.apache.http</pattern> 
            <shadedPattern>com.mashape.relocation</shadedPattern> 
           </relocation> 
          </relocations> 
         </configuration> 
        </execution> 
       </executions> 
      </plugin> 

<?xml version="1.0"?> 
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> 
    <modelVersion>4.0.0</modelVersion> 
    <groupId>com.mashape.unirest</groupId> 
    <artifactId>unirest-java</artifactId> 
    <packaging>jar</packaging> 
    <version>1.4.10-SNAPSHOT</version> 
    <name>unirest-java</name> 
    <description>Simplified, lightweight HTTP client library</description> 
    <url>http://unirest.io/</url> 

    <parent> 
     <groupId>org.sonatype.oss</groupId> 
     <artifactId>oss-parent</artifactId> 
     <version>7</version> 
    </parent> 

    <licenses> 
     <license> 
      <name>MIT</name> 
      <url>http://opensource.org/licenses/MIT</url> 
      <distribution>repo</distribution> 
     </license> 
    </licenses> 

    <scm> 
     <url>https://github.com/Mashape/unirest-java</url> 
     <connection>scm:git:[email protected]:Mashape/unirest-java.git</connection> 
     <developerConnection>scm:git:[email protected]:Mashape/unirest-java.git</developerConnection> 
    </scm> 

    <developers> 
     <developer> 
      <id>mashape</id> 
      <name>Mashape</name> 
      <email>[email protected]</email> 
      <url>https://github.com/Mashape</url> 
      <organization>Mashape</organization> 
      <organizationUrl>https://www.mashape.com</organizationUrl> 
     </developer> 
    </developers> 

    <properties> 
     <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> 
     <project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding> 
     <jackson.version>2.6.0</jackson.version> 
    </properties> 

    <build> 
     <plugins> 
      <plugin> 
       <groupId>org.apache.maven.plugins</groupId> 
       <artifactId>maven-compiler-plugin</artifactId> 
       <version>3.1</version> 
       <configuration> 
        <fork>true</fork> 
        <meminitial>128m</meminitial> 
        <maxmem>512m</maxmem> 
        <source>1.5</source> 
        <target>1.5</target> 
        <encoding>UTF-8</encoding> 
       </configuration> 
      </plugin> 
      <plugin> 
       <groupId>org.apache.maven.plugins</groupId> 
       <artifactId>maven-assembly-plugin</artifactId> 
       <version>2.4</version> 
       <configuration> 
        <descriptorRefs> 
         <descriptorRef>jar-with-dependencies</descriptorRef> 
        </descriptorRefs> 
       </configuration> 
      </plugin> 
      <plugin> 
       <groupId>org.apache.maven.plugins</groupId> 
       <artifactId>maven-source-plugin</artifactId> 
       <version>2.2.1</version> 
       <executions> 
        <execution> 
         <id>attach-sources</id> 
         <goals> 
          <goal>jar</goal> 
         </goals> 
        </execution> 
       </executions> 
      </plugin> 
      <plugin> 
       <groupId>org.apache.maven.plugins</groupId> 
       <artifactId>maven-javadoc-plugin</artifactId> 
       <version>2.9.1</version> 
       <executions> 
        <execution> 
         <id>attach-javadocs</id> 
         <goals> 
          <goal>jar</goal> 
         </goals> 
        </execution> 
       </executions> 
      </plugin> 
     </plugins> 
    </build> 

    <dependencies> 
     <dependency> 
      <groupId>org.apache.httpcomponents</groupId> 
      <artifactId>httpclient</artifactId> 
      <version>4.5.2</version> 
     </dependency> 
     <dependency> 
      <groupId>org.apache.httpcomponents</groupId> 
      <artifactId>httpasyncclient</artifactId> 
      <version>4.1.1</version> 
     </dependency> 
     <dependency> 
      <groupId>org.apache.httpcomponents</groupId> 
      <artifactId>httpmime</artifactId> 
      <version>4.5.2</version> 
     </dependency> 
     <dependency> 
      <groupId>org.json</groupId> 
      <artifactId>json</artifactId> 
      <version>20160212</version> 
     </dependency> 
     <dependency> 
      <groupId>junit</groupId> 
      <artifactId>junit</artifactId> 
      <version>4.12</version> 
      <scope>test</scope> 
     </dependency> 
     <dependency> 
      <groupId>commons-io</groupId> 
      <artifactId>commons-io</artifactId> 
      <version>2.4</version> 
      <scope>test</scope> 
     </dependency> 
     <dependency> 
      <groupId>com.fasterxml.jackson.core</groupId> 
      <artifactId>jackson-databind</artifactId> 
      <version>${jackson.version}</version> 
      <scope>test</scope> 
     </dependency> 
    </dependencies> 
</project> 

しかし、私ドン誰かが私を説明できるかどうか、それをどうやって行うのか分からない。私は間違った場所に置くことについていくつかの問題があります。認識できないタグ「プラグイン」.. ありがとうございます。

答えて

1

でなければなりません。その中に別のプラグインを追加することができます。例を見てください。私はPOM

ここ
<?xml version="1.0"?> 
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" 
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> 
<modelVersion>4.0.0</modelVersion> 
<groupId>com.mashape.unirest</groupId> 
<artifactId>unirest-java</artifactId> 
<packaging>jar</packaging> 
<version>1.4.10-SNAPSHOT</version> 
<name>unirest-java</name> 
<description>Simplified, lightweight HTTP client library</description> 
<url>http://unirest.io/</url> 

<parent> 
    <groupId>org.sonatype.oss</groupId> 
    <artifactId>oss-parent</artifactId> 
    <version>7</version> 
</parent> 

<licenses> 
    <license> 
     <name>MIT</name> 
     <url>http://opensource.org/licenses/MIT</url> 
     <distribution>repo</distribution> 
    </license> 
</licenses> 

<scm> 
    <url>https://github.com/Mashape/unirest-java</url> 
    <connection>scm:git:[email protected]:Mashape/unirest-java.git</connection> 
    <developerConnection>scm:git:[email protected]:Mashape/unirest-java.git</developerConnection> 
</scm> 

<developers> 
    <developer> 
     <id>mashape</id> 
     <name>Mashape</name> 
     <email>[email protected]</email> 
     <url>https://github.com/Mashape</url> 
     <organization>Mashape</organization> 
     <organizationUrl>https://www.mashape.com</organizationUrl> 
    </developer> 
</developers> 

<properties> 
    <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> 
    <project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding> 
    <jackson.version>2.6.0</jackson.version> 
</properties> 

<build> 
    <plugins> 
     <plugin> 
      <groupId>org.apache.maven.plugins</groupId> 
      <artifactId>maven-compiler-plugin</artifactId> 
      <version>3.1</version> 
      <configuration> 
       <fork>true</fork> 
       <meminitial>128m</meminitial> 
       <maxmem>512m</maxmem> 
       <source>1.5</source> 
       <target>1.5</target> 
       <encoding>UTF-8</encoding> 
      </configuration> 
     </plugin> 
     <plugin> 
      <groupId>org.apache.maven.plugins</groupId> 
      <artifactId>maven-assembly-plugin</artifactId> 
      <version>2.4</version> 
      <configuration> 
       <descriptorRefs> 
        <descriptorRef>jar-with-dependencies</descriptorRef> 
       </descriptorRefs> 
      </configuration> 
     </plugin> 
     <plugin> 
      <groupId>org.apache.maven.plugins</groupId> 
      <artifactId>maven-source-plugin</artifactId> 
      <version>2.2.1</version> 
      <executions> 
       <execution> 
        <id>attach-sources</id> 
        <goals> 
         <goal>jar</goal> 
        </goals> 
       </execution> 
      </executions> 
     </plugin> 
     <plugin> 
      <groupId>org.apache.maven.plugins</groupId> 
      <artifactId>maven-javadoc-plugin</artifactId> 
      <version>2.9.1</version> 
      <executions> 
       <execution> 
        <id>attach-javadocs</id> 
        <goals> 
         <goal>jar</goal> 
        </goals> 
       </execution> 
      </executions> 
     </plugin> 
     <plugin> 
      <groupId>org.apache.maven.plugins</groupId> 
      <artifactId>maven-shade-plugin</artifactId> 
      <version>2.2</version> 
      <executions> 
       <execution> 
        <phase>package</phase> 
        <goals> 
         <goal>shade</goal> 
        </goals> 
        <configuration> 
         <finalName>${project.artifactId}-${project.version}-withDependency-ShadedForAndroid</finalName> 
         <artifactSet> 
          <includes> 
           <include>com.mashape.unirest:unirest-java</include> 
           <include>org.apache.httpcomponents:httpclient</include> 
           <include>org.apache.httpcomponents:httpcore</include> 
           <include>org.apache.httpcomponents:httpcore-nio</include> 
           <include>org.apache.httpcomponents:httpasyncclient</include> 
           <include>org.apache.httpcomponents:httpmime</include> 
           <include>org.json:json</include> 
           <include>commons-logging:commons-logging</include> 
           <include>commons-codec:commons-codec</include> 
          </includes> 
         </artifactSet> 
         <relocations> 
          <relocation> 
           <pattern>org.apache.http</pattern> 
           <shadedPattern>com.mashape.relocation</shadedPattern> 
          </relocation> 
         </relocations> 
        </configuration> 
       </execution> 
      </executions> 
     </plugin> 
    </plugins> 
</build> 

<dependencies> 
    <dependency> 
     <groupId>org.apache.httpcomponents</groupId> 
     <artifactId>httpclient</artifactId> 
     <version>4.5.2</version> 
    </dependency> 
    <dependency> 
     <groupId>org.apache.httpcomponents</groupId> 
     <artifactId>httpasyncclient</artifactId> 
     <version>4.1.1</version> 
    </dependency> 
    <dependency> 
     <groupId>org.apache.httpcomponents</groupId> 
     <artifactId>httpmime</artifactId> 
     <version>4.5.2</version> 
    </dependency> 
    <dependency> 
     <groupId>org.json</groupId> 
     <artifactId>json</artifactId> 
     <version>20160212</version> 
    </dependency> 
    <dependency> 
     <groupId>junit</groupId> 
     <artifactId>junit</artifactId> 
     <version>4.12</version> 
     <scope>test</scope> 
    </dependency> 
    <dependency> 
     <groupId>commons-io</groupId> 
     <artifactId>commons-io</artifactId> 
     <version>2.4</version> 
     <scope>test</scope> 
    </dependency> 
    <dependency> 
     <groupId>com.fasterxml.jackson.core</groupId> 
     <artifactId>jackson-databind</artifactId> 
     <version>${jackson.version}</version> 
     <scope>test</scope> 
    </dependency> 
</dependencies> 
</project> 
+0

、ありがとう、それは動作しますが、私はMVNクリーンなアセンブリを起動する別の問題を、持っている:アセンブリ、それは私に言う: はgoal.org.apache.maven.pluginsの実行に失敗しました: maven-compiler-plugin:3.1:コンパイル どうすればいいですか? –

+0

完全なエラーメッセージを投稿してください。その手掛かりはメッセージにあります! – fabfas

+0

これは私が持っているもので、これを削除すると、別のものについて同じことがあります。私はそれを得ません。私はこのことをやろうとしている: http://blog.mashape.com/using-unirest-java-for-your-android-projects/ 私は初めから始まったが、mvn cleanアセンブリ:assembly doesn仕事をしたくない –

0

それはあなたがあなたのPOMですでに定義されたプラグインのタグを持っている内部のプラグイン

<build> 
     <plugins> 

       <YOUR PLUGIN> 

     </plugins> 
    </build> 
0

の内部に設けられたプラグインを含めた後、あなたのPOMを完了した

<build> 
<plugins> 
    <plugin> 
    <!-- first plugin here --> 
    </plugin> 
    <plugin> 
    <!-- second plugin here --> 
    </plugin> 
</plugins> 
</build> 

は一例であり、これはプラグインとの依存関係を配置する場所を示しています。

<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" 
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> 
<modelVersion>4.0.0</modelVersion> 
<groupId>MavenTest</groupId> 
<artifactId>MavenTest</artifactId> 
<version>0.0.1-SNAPSHOT</version> 

<dependencies> 
    <dependency> 
     <groupId>org.seleniumhq.selenium</groupId> 
     <artifactId>selenium-java</artifactId> 
     <version>2.45.0</version> 
    </dependency> 
    <dependency> 
     <groupId>org.testng</groupId> 
     <artifactId>testng</artifactId> 
     <version>6.8</version> 
     <scope>test</scope> 
    </dependency> 
    <dependency> 
     <groupId>junit</groupId> 
     <artifactId>junit</artifactId> 
     <version>3.8.1</version> 
     <scope>test</scope> 
    </dependency> 
</dependencies> 

<build> 
    <plugins> 
     <plugin> 
      <groupId>org.apache.maven.plugins</groupId> 
      <artifactId>maven-compiler-plugin</artifactId> 
      <version>2.3.2</version> 
      <configuration> 
       <source>1.7</source> 
       <target>1.7</target> 
      </configuration> 
     </plugin> 
     <plugin> 
      <groupId>org.apache.maven.plugins</groupId> 
      <artifactId>maven-surefire-plugins</artifactId> 
      <version>2.12</version> 
      <inherited>true</inherited> 
      <configuration> 
       <suiteXmlFiles> 
        <suuiteXmlFile>testng.xml</suuiteXmlFile> 
       </suiteXmlFiles> 
      </configuration> 
     </plugin> 
    </plugins> 
</build> 

関連する問題