Skip to content

Commit

Permalink
Minor changes to get 1.0 release ready
Browse files Browse the repository at this point in the history
  • Loading branch information
Jon Passki committed Oct 18, 2012
1 parent 528558c commit d7e2534
Show file tree
Hide file tree
Showing 2 changed files with 25 additions and 11 deletions.
6 changes: 3 additions & 3 deletions coverity-escapers/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -6,15 +6,15 @@
<groupId>com.coverity.security</groupId>
<artifactId>coverity-escapers</artifactId>
<packaging>jar</packaging>
<version>1.0-SNAPSHOT</version>
<version>1.1-SNAPSHOT</version>
<name>coverity-escapers</name>
<description>Open source library of HTML, JavaScript, and CSS escapers for use by Java applications</description>
<url>http://coverity.com/security</url>

<parent>
<groupId>com.coverity.security</groupId>
<artifactId>coverity-security-library</artifactId>
<version>1.0-SNAPSHOT</version>
<version>1.1-SNAPSHOT</version>
</parent>

<licenses>
Expand Down Expand Up @@ -70,4 +70,4 @@
</resource>
</resources>
</build>
</project>
</project>
30 changes: 22 additions & 8 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
<groupId>com.coverity.security</groupId>
<artifactId>coverity-security-library</artifactId>
<packaging>pom</packaging>
<version>1.0-SNAPSHOT</version>
<version>1.1-SNAPSHOT</version>
<name>coverity-security-library</name>
<description>Open source security library from Coverity</description>
<url>http://coverity.com/security</url>
Expand All @@ -18,8 +18,9 @@
</licenses>

<scm>
<url>https://github.com/coverity/coverity-security-library</url>
<connection>scm:git:git://github.com/coverity/coverity-security-library.git</connection>
<connection>scm:git:git@github.com:coverity/coverity-security-library.git</connection>
<developerConnection>scm:git:git@github.com:coverity/coverity-security-library.git</developerConnection>
<url>git@github.com:coverity/coverity-security-library.git</url>
</scm>

<developers>
Expand Down Expand Up @@ -50,19 +51,32 @@

<build>
<plugins>
<plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-javadoc-plugin</artifactId>
<executions>
<execution>
<id>attach-javadocs</id>
<goals>
<goal>jar</goal>
</goals>
<goals>
<goal>jar</goal>
</goals>
</execution>
</executions>
</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>
</plugins>
</build>

</project>
</project>

0 comments on commit d7e2534

Please sign in to comment.