Hi,
I've specified several pom attributes in my build.gradle such as license,
scm, and developer info, but none are appearing in
build/poms/pom-default.xml when I run "gradle install".

Here's my build.gradle:
https://github.com/benmccann/Closure-Compiler-Utils/blob/master/build.gradle

Here's the output from gradle install:
<?xml version="1.0" encoding="UTF-8"?>
<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>com.benmccann</groupId>
  <artifactId>closure-compiler-utils</artifactId>
  <version>0.1</version>
  <dependencies>
    <dependency>
      <groupId>javax.servlet</groupId>
      <artifactId>javax.servlet-api</artifactId>
      <version>3.0.1</version>
      <scope>compile</scope>
    </dependency>
    <dependency>
      <groupId>com.google.javascript</groupId>
      <artifactId>closure-compiler</artifactId>
      <version>r1592</version>
      <scope>compile</scope>
    </dependency>
  </dependencies>
</project>

Any ideas how to get the missing info?

Thanks,
Ben

--
View this message in context: 
http://gradle.1045684.n5.nabble.com/Trouble-generating-pom-tp5047147p5047147.html
Sent from the gradle-user mailing list archive at Nabble.com.

---------------------------------------------------------------------
To unsubscribe from this list, please visit:

    http://xircles.codehaus.org/manage_email


Reply via email to