2016-04-15 126 views
0

我試圖從pom.xml文件初始化Gradle版本。後續結構已創建,但我注意到缺少buid.gradleGradle init不生成pom

my-project 
-- gradle 
---- wrapper 
------ gradle-wrapper.jar 
------ gradle-wrapper.properties 
-- src 
-- pom.xml 

這是我的POM文件

<?xml version="1.0"?> 
<project 
    xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd" 
    xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"> 
    <modelVersion>4.0.0</modelVersion> 
    <groupId>group.id</groupId> 
    <version>1.1.0</version> 

    <artifactId>my-project</artifactId> 

    <build> 
     <plugins> 
      <plugin> 
       <inherited>true</inherited> 
       <groupId>org.apache.maven.plugins</groupId> 
       <artifactId>maven-compiler-plugin</artifactId> 
       <version>3.1</version> 

       <configuration> 
        <encoding>UTF-8</encoding> 
        <source>1.7</source> 
        <target>1.7</target> 
       </configuration> 
      </plugin> 

      <plugin> 
       <inherited>true</inherited> 
       <groupId>org.apache.maven.plugins</groupId> 
       <artifactId>maven-resources-plugin</artifactId> 
       <version>2.6</version> 

       <configuration> 
        <encoding>UTF-8</encoding> 
       </configuration> 
      </plugin> 

      <plugin> 
       <groupId>org.apache.maven.plugins</groupId> 
       <artifactId>maven-source-plugin</artifactId> 
       <version>2.2.1</version> 

       <configuration> 
        <encoding>UTF-8</encoding> 
       </configuration> 

       <executions> 
        <execution> 
         <id>attach-sources</id> 
         <goals> 
          <goal>jar</goal> 
         </goals> 
        </execution> 
       </executions> 
      </plugin> 

      <plugin> 
       <groupId>org.jvnet.jax-ws-commons</groupId> 
       <artifactId>jaxws-maven-plugin</artifactId> 
       <version>2.3</version> 
       <executions> 
        <execution> 
         <id>cdm</id> 
         <goals> 
          <goal>wsimport</goal> 
         </goals> 
         <phase>${wsimport-phase}</phase> 
         <configuration> 
          <sourceDestDir>src/main/java</sourceDestDir> 
          <verbose>true</verbose> 
          <xnoAddressingDataBinding>true</xnoAddressingDataBinding> 
          <xnocompile>true</xnocompile> 
          <target>2.1</target> 
          <wsdlUrls> 
           <wsdlUrl>${osb.url.prefix}MyService${osb.url.suffix}</wsdlUrl> 
          </wsdlUrls> 
         </configuration> 
        </execution> 
       </executions> 
      </plugin> 
     </plugins> 
    </build> 

    <profiles> 
     <profile> 
      <id>via-osb</id> 
      <properties> 
       <wsimport-phase>generate-sources</wsimport-phase> 
       <skip-clean>false</skip-clean> 
       <osb.protocol>http</osb.protocol> 
       <osb.host>my.host</osb.host> 
       <osb.port>80</osb.port> 
       <osb.url.prefix>${osb.protocol}://${osb.host}:${osb.port}/path/to/osb/</osb.url.prefix> 
       <osb.url.suffix>v102?wsdl</osb.url.suffix> 
      </properties> 
     </profile>   
    </profiles> 

</project> 

我這麼想嗎?commad結束沒有錯誤...

+0

嘗試添加'--info'或'--debug'到gradle這個命令? – RaGe

+0

@RaGe都返回'未知的命令行選項' –

+0

@RaGe嗯,安裝Gradle outsite STS,它的工作。將看到輸出... –

回答

0

似乎與STS插件有一些差異或錯誤,我剛剛安裝了Gradle,它工作。另外,Run As > Gradle Build在init命令中未識別出選項--info

這裏的信息輸出

gradle init --info --type pom 
Starting Build 
Settings evaluated using settings file 'C:\master\settings.gradle'. 
Projects loaded. Root project using build file 'C:\my-project\build.gradle'. 
Included projects: [root project 'my-project'] 
Evaluating root project 'my-project' using build file 'C:\my-project\build.gradle' 
. 
All projects evaluated. 
Selected primary task 'init' from project : 
Tasks to be executed: [task ':wrapper', task ':init'] 
:wrapper (Thread[main,5,main]) started. 
:wrapper 
Executing task ':wrapper' (up-to-date check took 0.168 secs) due to: 
    No history is available. 
:wrapper (Thread[main,5,main]) completed. Took 0.656 secs. 
:init (Thread[main,5,main]) started. 
:init 
Executing task ':init' (up-to-date check took 0.001 secs) due to: 
    Task has not declared any outputs. 
Maven to Gradle conversion is an incubating feature. 
:init (Thread[main,5,main]) completed. Took 1.386 secs. 

BUILD SUCCESSFUL 

,和STS輸出

[sts] ----------------------------------------------------- 
[sts] Starting Gradle build for the following tasks: 
[sts]  init 
[sts]  --info 
[sts]  --type 
[sts]  pom 
[sts] ----------------------------------------------------- 

FAILURE: Build failed with an exception. 

* What went wrong: 
Problem configuring task :init from command line. 
> Unknown command-line option '--info'. 
+1

調用'./gradlew init',我強烈建議轉移到build http://projects.eclipse.org/projects/tools.buildship – RaGe

+0

@RaGe再次感謝! –