Skip to content

Commit

Permalink
Updated links and pom version
Browse files Browse the repository at this point in the history
  • Loading branch information
rmanicardi committed Feb 18, 2011
1 parent 21394b2 commit 4c52830
Show file tree
Hide file tree
Showing 2 changed files with 159 additions and 8 deletions.
8 changes: 3 additions & 5 deletions README.creole
Expand Up @@ -4,9 +4,9 @@
|= Author(s) | Roberto Manicardi (Sourcesense) |
|= Price | Free |
|= License | Apache 2.0 |
|= IssueTracking | [[http://opensource.sourcesense.com/jira/browse/JPT]] |
|= Download JAR | [[https://dev.sourcesense.com/svn/atlassian/jira/jira-project-template/release/project-template-0.1.jar]] |
|= Download Source | [[https://dev.sourcesense.com/svn/atlassian/jira/jira-project-template/trunk/]] |
|= IssueTracking | [[https://github.com/sourcesense/Jira-Project-Template-plugin/issues]] |
|= Download JAR | [[http://repo2.maven.org/maven2/com/sourcesense/jira/project-template/1.0.0/project-template-1.0.0.jar]] |
|= Download Source | [[https://github.com/sourcesense/Jira-Project-Template-plugin]] |


== Versions ==
Expand Down Expand Up @@ -161,5 +161,3 @@ To create a new project simply open a project template issue and click on the "C

* Add support for Project roles
* Create new Custom Field to graphically select the scheme code.
Powered by a free Atlassian Confluence Open Source Project License granted to Sourcesense. Evaluate Confluence today.
Powered by Atlassian Confluence 3.0.2, the Enterprise Wiki. Bug/feature request – Atlassian news – Contact administrators
159 changes: 156 additions & 3 deletions pom.xml
Expand Up @@ -13,7 +13,8 @@
<modelVersion>4.0.0</modelVersion>
<groupId>com.sourcesence.jira</groupId>
<artifactId>project-template</artifactId>
<version>0.1</version>
<version>1.0.0-SNAPSHOT</version>
<url>https://github.com/sourcesense/Jira-Project-Template-plugin</url>

<name>Jira Project Template</name>
<description>Create new Jira project using project templates</description>
Expand All @@ -26,14 +27,61 @@
<organizationUrl>http://www.sourcesense.com</organizationUrl>
</developer>
</developers>

<scm>
<developerConnection>https://dev.sourcesense.com/svn/atlassian/jira/jira-project-template/trunk</developerConnection>
<url>https://dev.sourcesense.com/svn/atlassian/jira/jira-project-template/</url>
<url>https://github.com/sourcesense/Jira-Project-Template-plugin</url>
<connection>scm:git:ssh://github.com/sourcesense/Jira-Project-Template-plugin.git</connection>
<developerConnection>scm:git:ssh://git@github.com/sourcesense/Jira-Project-Template-plugin.git</developerConnection>
</scm>

<organization>
<name>Sourcesense</name>
<url>http://www.sourcesese.com</url>
</organization>

<licenses>
<license>
<name>The Apache Software License, Version 2.0</name>
<url>http://www.apache.org/licenses/LICENSE-2.0.txt</url>
<distribution>repo</distribution>
</license>
</licenses>

<issueManagement>
<system>GitHub Issue tracker</system>
<url>https://github.com/sourcesense/Jira-Project-Template-plugin/issues</url>
</issueManagement>


<distributionManagement>
<snapshotRepository>
<id>sonatype-nexus-snapshots</id>
<name>Sonatype Nexus Snapshots</name>
<url>https://oss.sonatype.org/content/repositories/snapshots/</url>
</snapshotRepository>

<repository>
<id>sonatype-nexus-staging</id>
<name>Nexus Release Repository</name>
<url>https://oss.sonatype.org/service/local/staging/deploy/maven2/</url>
</repository>
</distributionManagement>

<repositories>
<repository>
<id>sonatype-nexus-snapshots</id>
<name>Sonatype Nexus Snapshots</name>
<url>https://oss.sonatype.org/content/repositories/snapshots</url>
<releases>
<enabled>false</enabled>
</releases>
<snapshots>
<enabled>true</enabled>
</snapshots>
</repository>
</repositories>



<properties>
<atlassian.plugin.key>com.sourcesence.jira.project-template</atlassian.plugin.key>
Expand All @@ -44,8 +92,113 @@
<atlassian.product.test-lib.version>3.13</atlassian.product.test-lib.version>
<!-- JIRA data version -->
<atlassian.product.data.version>3.13</atlassian.product.data.version>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<project.build.resourceEncoding>UTF-8</project.build.resourceEncoding>
<project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
<maven.build.timestamp.format>yyyy-MM-dd HH:mm:ssZ</maven.build.timestamp.format>
<implementation.build>${maven.build.timestamp}</implementation.build>

</properties>

<build>
<pluginManagement>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-javadoc-plugin</artifactId>
<version>2.7</version>
<configuration>
<archive>
<manifest>
<addDefaultImplementationEntries>true</addDefaultImplementationEntries>
<addDefaultSpecificationEntries>true</addDefaultSpecificationEntries>
</manifest>
<manifestEntries>
<Implementation-Build>${implementation.build}</Implementation-Build>
<X-Compile-Source-JDK>${javac.src.version}</X-Compile-Source-JDK>
<X-Compile-Target-JDK>${javac.target.version}</X-Compile-Target-JDK>
</manifestEntries>
</archive>
</configuration>
</plugin>

<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-release-plugin</artifactId>
<version>2.1</version>
<configuration>
<mavenExecutorId>forked-path</mavenExecutorId>
<useReleaseProfile>false</useReleaseProfile>
<arguments>-Prelease</arguments>
</configuration>
</plugin>
</plugins>
</pluginManagement>
</build>


<profiles>
<profile>
<id>release</id>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-source-plugin</artifactId>
<version>2.1.2</version>
<executions>
<execution>
<id>attach-sources</id>
<goals>
<goal>jar-no-fork</goal>
</goals>
<configuration>
<archive>
<manifest>
<addDefaultImplementationEntries>true</addDefaultImplementationEntries>
<addDefaultSpecificationEntries>true</addDefaultSpecificationEntries>
</manifest>
<manifestEntries>
<Implementation-Build>${implementation.build}</Implementation-Build>
<X-Compile-Source-JDK>${javac.src.version}</X-Compile-Source-JDK>
<X-Compile-Target-JDK>${javac.target.version}</X-Compile-Target-JDK>
</manifestEntries>
</archive>
</configuration>
</execution>
</executions>
</plugin>

<plugin>
<artifactId>maven-javadoc-plugin</artifactId>
<executions>
<execution>
<id>attach-javadocs</id>
<goals>
<goal>jar</goal>
</goals>
</execution>
</executions>
</plugin>

<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-gpg-plugin</artifactId>
<version>1.1</version>
<executions>
<execution>
<id>sign-artifacts</id>
<phase>verify</phase>
<goals>
<goal>sign</goal>
</goals>
</execution>
</executions>
</plugin>
</plugins>
</build>
</profile>
</profiles>


</project>

0 comments on commit 4c52830

Please sign in to comment.