timestamp-to-date-crowd-plugin
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>de.aservo</groupId> <artifactId>timestamp-to-date-crowd-plugin</artifactId> <version>0.0.6</version> </dependency>
<?xml version="1.0" encoding="UTF-8"?> <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/maven-v4_0_0.xsd"> <modelVersion>4.0.0</modelVersion> <parent> <groupId>de.aservo</groupId> <artifactId>parent-pom</artifactId> <version>0.0.9</version> </parent> <artifactId>timestamp-to-date-crowd-plugin</artifactId> <version>0.0.6</version> <packaging>atlassian-plugin</packaging> <name>Timestamp-to-Date for Crowd</name> <description>Human-readable date tooltips for timestamp values in input fields (e.g. user attributes) for Atlassian Crowd</description> <url>https://github.com/aservo/timestamp-to-date-crowd-plugin</url> <organization> <name>ASERVO Software GmbH</name> <url>https://www.aservo.com</url> </organization> <licenses> <license> <name>Apache License, Version 2.0</name> <url>http://www.apache.org/licenses/LICENSE-2.0</url> <distribution>repo</distribution> </license> </licenses> <issueManagement> <system>Github</system> <url>https://github.com/aservo/timestamp-to-date-crowd-plugin/issues</url> </issueManagement> <scm> <connection>scm:git:git@github.com:aservo/timestamp-to-date-crowd-plugin.git</connection> <developerConnection>scm:git:git@github.com:aservo/timestamp-to-date-crowd-plugin.git</developerConnection> <url>https://github.com/aservo/timestamp-to-date-crowd-plugin</url> <tag>v0.0.6</tag> </scm> <developers> <developer> <name>Patrick Hobusch</name> <email>phobusch@aservo.com</email> <organization>ASERVO Software GmbH</organization> <organizationUrl>https://www.aservo.com</organizationUrl> </developer> </developers> <properties> <crowd.version>4.3.5</crowd.version> <amps.version>8.0.2</amps.version> <atlassian.plugin.key>${project.groupId}.${project.artifactId}</atlassian.plugin.key> </properties> <dependencyManagement> <dependencies> <dependency> <groupId>com.atlassian.crowd</groupId> <artifactId>atlassian-crowd</artifactId> <version>${crowd.version}</version> <type>pom</type> <scope>import</scope> </dependency> </dependencies> </dependencyManagement> <dependencies> <dependency> <groupId>org.slf4j</groupId> <artifactId>slf4j-simple</artifactId> <version>1.5.8</version> </dependency> </dependencies> <build> <plugins> <plugin> <groupId>com.atlassian.maven.plugins</groupId> <artifactId>crowd-maven-plugin</artifactId> <version>${amps.version}</version> <extensions>true</extensions> <configuration> <productVersion>${crowd.version}</productVersion> <productDataVersion>${crowd.version}</productDataVersion> <allowGoogleTracking>false</allowGoogleTracking> <enableQuickReload>true</enableQuickReload> <!-- See here for an explanation of default instructions: --> <!-- https://developer.atlassian.com/docs/advanced-topics/configuration-of-instructions-in-atlassian-plugins --> <instructions> <Atlassian-Plugin-Key>${atlassian.plugin.key}</Atlassian-Plugin-Key> <!-- Ensure plugin is spring powered --> <Spring-Context>*</Spring-Context> </instructions> </configuration> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-release-plugin</artifactId> <version>3.0.0-M4</version> <configuration> <tagNameFormat>v@{project.version}</tagNameFormat> </configuration> </plugin> </plugins> </build> </project>